ERC-721
Overview
Max Total Supply
386 CF
Holders
130
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 CFLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Cyberfist
Compiler Version
v0.8.15+commit.e14f2714
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract Cyberfist is ERC721A, Ownable, ReentrancyGuard{ using Strings for uint256; uint256 public constant MAX_SUPPLY = 10000; uint256 public constant MAX_PUBLIC_MINT = 100; uint256 public constant MAX_ALLOWLIST_MINT = 5; uint256 public constant PUBLIC_SALE_PRICE = .08 ether; uint256 public constant ALLOWLIST_SALE_PRICE = .08 ether; string private baseTokenUri; string public placeholderTokenUri; //deploy smart contract, toggle AL, toggle WL when done, toggle publicSale //2 days later toggle reveal bool public isRevealed; bool public publicSale; bool public allowListSale; bool public pause; bool public teamMinted; mapping(address => uint256) public totalPublicMint; mapping(address => uint256) public totalAllowlistMint; address[] public allowlist; constructor() ERC721A("Cyberfist", "CF"){ } modifier callerIsUser() { require(tx.origin == msg.sender, "Cyberfist :: Cannot be called by a contract"); _; } function mint(uint256 _quantity) external payable callerIsUser{ require(publicSale, "Cyberfist :: Not Yet Active."); require((totalSupply() + _quantity) <= MAX_SUPPLY, "Cyberfist :: Beyond Max Supply"); require((totalPublicMint[msg.sender] +_quantity) <= MAX_PUBLIC_MINT, "Cyberfist :: Already minted 100 tokens!"); require(msg.value >= (PUBLIC_SALE_PRICE * _quantity), "Cyberfist :: Below "); totalPublicMint[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } function allowlistMint(uint256 _quantity) external payable callerIsUser{ require(allowListSale, "Cyberfist :: Minting is Paused"); require((totalSupply() + _quantity) <= MAX_SUPPLY, "Cyberfist :: Cannot mint beyond max supply"); require((totalAllowlistMint[msg.sender] + _quantity) <= MAX_ALLOWLIST_MINT, "Cyberfist :: Cannot mint beyond allowlist max mint!"); require(msg.value >= (ALLOWLIST_SALE_PRICE * _quantity), "Cyberfist :: Payment is below the price"); require(isAllowlisted(msg.sender), "Not on allowlist"); totalAllowlistMint[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } function teamMint() external onlyOwner{ require(!teamMinted, "Cyberfist :: Team already minted"); teamMinted = true; _safeMint(msg.sender, 69); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenUri; } //return uri for certain token function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); uint256 trueId = tokenId + 1; if(!isRevealed){ return placeholderTokenUri; } //string memory baseURI = _baseURI(); return bytes(baseTokenUri).length > 0 ? string(abi.encodePacked(baseTokenUri, trueId.toString(), ".json")) : ""; } /// @dev walletOf() function shouldn't be called on-chain due to gas consumption function walletOf() external view returns(uint256[] memory){ address _owner = msg.sender; uint256 numberOfOwnedNFT = balanceOf(_owner); uint256[] memory ownerIds = new uint256[](numberOfOwnedNFT); for(uint256 index = 0; index < numberOfOwnedNFT; index++){ ownerIds[index] = tokenOfOwnerByIndex(_owner, index); } return ownerIds; } function setTokenUri(string memory _baseTokenUri) external onlyOwner{ baseTokenUri = _baseTokenUri; } function setPlaceHolderUri(string memory _placeholderTokenUri) external onlyOwner{ placeholderTokenUri = _placeholderTokenUri; } function togglePause() external onlyOwner{ pause = !pause; } function toggleAllowListSale() external onlyOwner{ allowListSale = !allowListSale; } function togglePublicSale() external onlyOwner{ publicSale = !publicSale; } function toggleReveal() external onlyOwner{ isRevealed = !isRevealed; } function withdraw() external nonReentrant onlyOwner{ (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function addAllowlist(address[] calldata _users) public onlyOwner { delete allowlist; allowlist = _users; } function isAllowlisted(address _user) public view returns (bool) { for (uint i = 0; i < allowlist.length; i++) { if (allowlist[i] == _user) { return true; } } return false; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error UnableDetermineTokenOwner(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal _currentIndex; // 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_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { if (index >= totalSupply()) revert TokenIndexOutOfBounds(); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds(); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } // Execution should never reach this point. assert(false); } /** * @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 || interfaceId == type(IERC721Enumerable).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); } function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * 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) { if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken(); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert UnableDetermineTokenOwner(); } /** * @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 override { _transfer(from, to, tokenId); if (!_checkOnERC721Received(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 tokenId < _currentIndex; } 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 > 3.4e38 (2**128) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _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 || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _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)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) revert TransferToNonERC721ReceiverImplementer(); else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * 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`. */ 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. * * 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` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; } }
// SPDX-License-Identifier: 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"UnableDetermineTokenOwner","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ALLOWLIST_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ALLOWLIST_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"addAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowListSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"allowlist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","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":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isAllowlisted","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":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"placeholderTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_placeholderTokenUri","type":"string"}],"name":"setPlaceHolderUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","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":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleAllowListSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalAllowlistMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalPublicMint","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":"walletOf","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600981526020017f43796265726669737400000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f434600000000000000000000000000000000000000000000000000000000000081525081600190816200008f91906200041a565b508060029081620000a191906200041a565b505050620000c4620000b8620000d260201b60201c565b620000da60201b60201c565b600160088190555062000501565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200022257607f821691505b602082108103620002385762000237620001da565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002a27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000263565b620002ae868362000263565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620002fb620002f5620002ef84620002c6565b620002d0565b620002c6565b9050919050565b6000819050919050565b6200031783620002da565b6200032f620003268262000302565b84845462000270565b825550505050565b600090565b6200034662000337565b620003538184846200030c565b505050565b5b818110156200037b576200036f6000826200033c565b60018101905062000359565b5050565b601f821115620003ca5762000394816200023e565b6200039f8462000253565b81016020851015620003af578190505b620003c7620003be8562000253565b83018262000358565b50505b505050565b600082821c905092915050565b6000620003ef60001984600802620003cf565b1980831691505092915050565b60006200040a8383620003dc565b9150826002028217905092915050565b6200042582620001a0565b67ffffffffffffffff811115620004415762000440620001ab565b5b6200044d825462000209565b6200045a8282856200037f565b600060209050601f8311600181146200049257600084156200047d578287015190505b620004898582620003fc565b865550620004f9565b601f198416620004a2866200023e565b60005b82811015620004cc57848901518255600182019150602085019450602081019050620004a5565b86831015620004ec5784890151620004e8601f891682620003dc565b8355505b6001600288020188555050505b505050505050565b61494380620005116000396000f3fe60806040526004361061027d5760003560e01c806365f130971161014f578063b0962c53116100c1578063c4ae31681161007a578063c4ae31681461095c578063c87b56dd14610973578063e222c7f9146109b0578063e8b5498d146109c7578063e985e9c5146109f2578063f2fde38b14610a2f5761027d565b8063b0962c531461086f578063b0f3062d14610898578063b88d4fde146108d5578063b912ba5a146108fe578063ba7a86b814610929578063c180526a146109405761027d565b806383a974a21161011357806383a974a21461077e5780638456cb59146107a95780638da5cb5b146107d457806395d89b41146107ff578063a0712d681461082a578063a22cb465146108465761027d565b806365f130971461069757806369c45824146106c257806370a08231146106ff578063715018a61461073c57806372f85d51146107535761027d565b80632617dd4d116101f357806342842e0e116101ac57806342842e0e146105875780634cf5f7a4146105b05780634f6ccce7146105db57806354214f69146106185780635b8ad429146106435780636352211e1461065a5761027d565b80632617dd4d14610489578063281905c8146104b25780632f745c59146104dd57806332cb6b0c1461051a57806333bc1c5c146105455780633ccfd60b146105705761027d565b8063081812fc11610245578063081812fc1461037b578063095ea7b3146103b857806318160ddd146103e15780631c16521c1461040c5780631ecb515f1461044957806323b872dd146104605761027d565b806301ffc9a71461028257806305a3b809146102bf5780630675b7c6146102fc57806306fdde031461032557806307e89ec014610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a491906131ea565b610a58565b6040516102b69190613232565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e191906132ab565b610ba2565b6040516102f39190613232565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e919061341e565b610c50565b005b34801561033157600080fd5b5061033a610c6b565b60405161034791906134ef565b60405180910390f35b34801561035c57600080fd5b50610365610cfd565b604051610372919061352a565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190613571565b610d09565b6040516103af91906135ad565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da91906135c8565b610d85565b005b3480156103ed57600080fd5b506103f6610e8f565b604051610403919061352a565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e91906132ab565b610e98565b604051610440919061352a565b60405180910390f35b34801561045557600080fd5b5061045e610eb0565b005b34801561046c57600080fd5b5061048760048036038101906104829190613608565b610ee4565b005b34801561049557600080fd5b506104b060048036038101906104ab91906136bb565b610ef4565b005b3480156104be57600080fd5b506104c7610f20565b6040516104d49190613232565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff91906135c8565b610f33565b604051610511919061352a565b60405180910390f35b34801561052657600080fd5b5061052f6110f2565b60405161053c919061352a565b60405180910390f35b34801561055157600080fd5b5061055a6110f8565b6040516105679190613232565b60405180910390f35b34801561057c57600080fd5b5061058561110b565b005b34801561059357600080fd5b506105ae60048036038101906105a99190613608565b611217565b005b3480156105bc57600080fd5b506105c5611237565b6040516105d291906134ef565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd9190613571565b6112c5565b60405161060f919061352a565b60405180910390f35b34801561062457600080fd5b5061062d61130f565b60405161063a9190613232565b60405180910390f35b34801561064f57600080fd5b50610658611322565b005b34801561066657600080fd5b50610681600480360381019061067c9190613571565b611356565b60405161068e91906135ad565b60405180910390f35b3480156106a357600080fd5b506106ac61136c565b6040516106b9919061352a565b60405180910390f35b3480156106ce57600080fd5b506106e960048036038101906106e49190613571565b611371565b6040516106f691906135ad565b60405180910390f35b34801561070b57600080fd5b50610726600480360381019061072191906132ab565b6113b0565b604051610733919061352a565b60405180910390f35b34801561074857600080fd5b5061075161148f565b005b34801561075f57600080fd5b506107686114a3565b604051610775919061352a565b60405180910390f35b34801561078a57600080fd5b506107936114a8565b6040516107a091906137c6565b60405180910390f35b3480156107b557600080fd5b506107be61155a565b6040516107cb9190613232565b60405180910390f35b3480156107e057600080fd5b506107e961156d565b6040516107f691906135ad565b60405180910390f35b34801561080b57600080fd5b50610814611597565b60405161082191906134ef565b60405180910390f35b610844600480360381019061083f9190613571565b611629565b005b34801561085257600080fd5b5061086d60048036038101906108689190613814565b611884565b005b34801561087b57600080fd5b506108966004803603810190610891919061341e565b6119fb565b005b3480156108a457600080fd5b506108bf60048036038101906108ba91906132ab565b611a16565b6040516108cc919061352a565b60405180910390f35b3480156108e157600080fd5b506108fc60048036038101906108f791906138f5565b611a2e565b005b34801561090a57600080fd5b50610913611a81565b604051610920919061352a565b60405180910390f35b34801561093557600080fd5b5061093e611a8d565b005b61095a60048036038101906109559190613571565b611b0d565b005b34801561096857600080fd5b50610971611db0565b005b34801561097f57600080fd5b5061099a60048036038101906109959190613571565b611de4565b6040516109a791906134ef565b60405180910390f35b3480156109bc57600080fd5b506109c5611f46565b005b3480156109d357600080fd5b506109dc611f7a565b6040516109e99190613232565b60405180910390f35b3480156109fe57600080fd5b50610a196004803603810190610a149190613978565b611f8d565b604051610a269190613232565b60405180910390f35b348015610a3b57600080fd5b50610a566004803603810190610a5191906132ab565b612021565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b2357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b8b57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b9b5750610b9a826120a4565b5b9050919050565b600080600090505b600e80549050811015610c45578273ffffffffffffffffffffffffffffffffffffffff16600e8281548110610be257610be16139b8565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610c32576001915050610c4b565b8080610c3d90613a16565b915050610baa565b50600090505b919050565b610c5861210e565b8060099081610c679190613c6a565b5050565b606060018054610c7a90613a8d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca690613a8d565b8015610cf35780601f10610cc857610100808354040283529160200191610cf3565b820191906000526020600020905b815481529060010190602001808311610cd657829003601f168201915b5050505050905090565b67011c37937e08000081565b6000610d148261218c565b610d4a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d9082611356565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610df7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e16612199565b73ffffffffffffffffffffffffffffffffffffffff1614158015610e485750610e4681610e41612199565b611f8d565b155b15610e7f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e8a8383836121a1565b505050565b60008054905090565b600c6020528060005260406000206000915090505481565b610eb861210e565b600b60029054906101000a900460ff1615600b60026101000a81548160ff021916908315150217905550565b610eef838383612253565b505050565b610efc61210e565b600e6000610f0a9190613066565b8181600e9190610f1b929190613087565b505050565b600b60029054906101000a900460ff1681565b6000610f3e836113b0565b8210610f76576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610f80610e8f565b905060008060005b838110156110d8576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461107a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110ca578684036110c15781955050505050506110ec565b83806001019450505b508080600101915050610f88565b5060006110e8576110e7613d3c565b5b5050505b92915050565b61271081565b600b60019054906101000a900460ff1681565b600260085403611150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114790613db7565b60405180910390fd5b600260088190555061116061210e565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161118690613e08565b60006040518083038185875af1925050503d80600081146111c3576040519150601f19603f3d011682016040523d82523d6000602084013e6111c8565b606091505b505090508061120c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120390613e69565b60405180910390fd5b506001600881905550565b61123283838360405180602001604052806000815250611a2e565b505050565b600a805461124490613a8d565b80601f016020809104026020016040519081016040528092919081815260200182805461127090613a8d565b80156112bd5780601f10611292576101008083540402835291602001916112bd565b820191906000526020600020905b8154815290600101906020018083116112a057829003601f168201915b505050505081565b60006112cf610e8f565b8210611307576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b600b60009054906101000a900460ff1681565b61132a61210e565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b600061136182612776565b600001519050919050565b606481565b600e818154811061138157600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611417576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61149761210e565b6114a160006128fe565b565b600581565b6060600033905060006114ba826113b0565b905060008167ffffffffffffffff8111156114d8576114d76132f3565b5b6040519080825280602002602001820160405280156115065781602001602082028036833780820191505090505b50905060005b828110156115505761151e8482610f33565b828281518110611531576115306139b8565b5b602002602001018181525050808061154890613a16565b91505061150c565b5080935050505090565b600b60039054906101000a900460ff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546115a690613a8d565b80601f01602080910402602001604051908101604052809291908181526020018280546115d290613a8d565b801561161f5780601f106115f45761010080835404028352916020019161161f565b820191906000526020600020905b81548152906001019060200180831161160257829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e90613efb565b60405180910390fd5b600b60019054906101000a900460ff166116e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dd90613f67565b60405180910390fd5b612710816116f2610e8f565b6116fc9190613f87565b111561173d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173490614029565b60405180910390fd5b606481600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461178a9190613f87565b11156117cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c2906140bb565b60405180910390fd5b8067011c37937e0800006117df91906140db565b341015611821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181890614181565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118709190613f87565b9250508190555061188133826129c4565b50565b61188c612199565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118f0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600660006118fd612199565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119aa612199565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119ef9190613232565b60405180910390a35050565b611a0361210e565b80600a9081611a129190613c6a565b5050565b600d6020528060005260406000206000915090505481565b611a39848484612253565b611a45848484846129e2565b611a7b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b67011c37937e08000081565b611a9561210e565b600b60049054906101000a900460ff1615611ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adc906141ed565b60405180910390fd5b6001600b60046101000a81548160ff021916908315150217905550611b0b3360456129c4565b565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7290613efb565b60405180910390fd5b600b60029054906101000a900460ff16611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc190614259565b60405180910390fd5b61271081611bd6610e8f565b611be09190613f87565b1115611c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c18906142eb565b60405180910390fd5b600581600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c6e9190613f87565b1115611caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca69061437d565b60405180910390fd5b8067011c37937e080000611cc391906140db565b341015611d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfc9061440f565b60405180910390fd5b611d0e33610ba2565b611d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d449061447b565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d9c9190613f87565b92505081905550611dad33826129c4565b50565b611db861210e565b600b60039054906101000a900460ff1615600b60036101000a81548160ff021916908315150217905550565b6060611def8261218c565b611e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e259061450d565b60405180910390fd5b6000600183611e3d9190613f87565b9050600b60009054906101000a900460ff16611ee657600a8054611e6090613a8d565b80601f0160208091040260200160405190810160405280929190818152602001828054611e8c90613a8d565b8015611ed95780601f10611eae57610100808354040283529160200191611ed9565b820191906000526020600020905b815481529060010190602001808311611ebc57829003601f168201915b5050505050915050611f41565b600060098054611ef590613a8d565b905011611f115760405180602001604052806000815250611f3d565b6009611f1c82612b60565b604051602001611f2d929190614638565b6040516020818303038152906040525b9150505b919050565b611f4e61210e565b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b600b60049054906101000a900460ff1681565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61202961210e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208f906146d9565b60405180910390fd5b6120a1816128fe565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612116612199565b73ffffffffffffffffffffffffffffffffffffffff1661213461156d565b73ffffffffffffffffffffffffffffffffffffffff161461218a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218190614745565b60405180910390fd5b565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061225e82612776565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612285612199565b73ffffffffffffffffffffffffffffffffffffffff1614806122e157506122aa612199565b73ffffffffffffffffffffffffffffffffffffffff166122c984610d09565b73ffffffffffffffffffffffffffffffffffffffff16145b806122fd57506122fc82600001516122f7612199565b611f8d565b5b905080612336576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461239f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612405576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124128585856001612cc0565b61242260008484600001516121a1565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612706576126658161218c565b156127055782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461276f8585856001612cc6565b5050505050565b61277e613127565b6127878261218c565b6127bd576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008290505b600081106128c6576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128b75780925050506128f9565b508080600190039150506127c3565b506040517fe7c0edfb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129de828260405180602001604052806000815250612ccc565b5050565b6000612a038473ffffffffffffffffffffffffffffffffffffffff16612cde565b15612b53578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a2c612199565b8786866040518563ffffffff1660e01b8152600401612a4e94939291906147ba565b6020604051808303816000875af1925050508015612a8a57506040513d601f19601f82011682018060405250810190612a87919061481b565b60015b612b03573d8060008114612aba576040519150601f19603f3d011682016040523d82523d6000602084013e612abf565b606091505b506000815103612afb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b58565b600190505b949350505050565b606060008203612ba7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cbb565b600082905060005b60008214612bd9578080612bc290613a16565b915050600a82612bd29190614877565b9150612baf565b60008167ffffffffffffffff811115612bf557612bf46132f3565b5b6040519080825280601f01601f191660200182016040528015612c275781602001600182028036833780820191505090505b5090505b60008514612cb457600182612c4091906148a8565b9150600a85612c4f91906148dc565b6030612c5b9190613f87565b60f81b818381518110612c7157612c706139b8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cad9190614877565b9450612c2b565b8093505050505b919050565b50505050565b50505050565b612cd98383836001612d01565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612d6d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612da7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612db46000868387612cc0565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561304957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612ffd5750612ffb60008884886129e2565b155b15613034576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612f82565b50806000819055505061305f6000868387612cc6565b5050505050565b50805460008255906000526020600020908101906130849190613161565b50565b828054828255906000526020600020908101928215613116579160200282015b8281111561311557823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906130a7565b5b5090506131239190613161565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561317a576000816000905550600101613162565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131c781613192565b81146131d257600080fd5b50565b6000813590506131e4816131be565b92915050565b600060208284031215613200576131ff613188565b5b600061320e848285016131d5565b91505092915050565b60008115159050919050565b61322c81613217565b82525050565b60006020820190506132476000830184613223565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132788261324d565b9050919050565b6132888161326d565b811461329357600080fd5b50565b6000813590506132a58161327f565b92915050565b6000602082840312156132c1576132c0613188565b5b60006132cf84828501613296565b91505092915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61332b826132e2565b810181811067ffffffffffffffff8211171561334a576133496132f3565b5b80604052505050565b600061335d61317e565b90506133698282613322565b919050565b600067ffffffffffffffff821115613389576133886132f3565b5b613392826132e2565b9050602081019050919050565b82818337600083830152505050565b60006133c16133bc8461336e565b613353565b9050828152602081018484840111156133dd576133dc6132dd565b5b6133e884828561339f565b509392505050565b600082601f830112613405576134046132d8565b5b81356134158482602086016133ae565b91505092915050565b60006020828403121561343457613433613188565b5b600082013567ffffffffffffffff8111156134525761345161318d565b5b61345e848285016133f0565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134a1578082015181840152602081019050613486565b838111156134b0576000848401525b50505050565b60006134c182613467565b6134cb8185613472565b93506134db818560208601613483565b6134e4816132e2565b840191505092915050565b6000602082019050818103600083015261350981846134b6565b905092915050565b6000819050919050565b61352481613511565b82525050565b600060208201905061353f600083018461351b565b92915050565b61354e81613511565b811461355957600080fd5b50565b60008135905061356b81613545565b92915050565b60006020828403121561358757613586613188565b5b60006135958482850161355c565b91505092915050565b6135a78161326d565b82525050565b60006020820190506135c2600083018461359e565b92915050565b600080604083850312156135df576135de613188565b5b60006135ed85828601613296565b92505060206135fe8582860161355c565b9150509250929050565b60008060006060848603121561362157613620613188565b5b600061362f86828701613296565b935050602061364086828701613296565b92505060406136518682870161355c565b9150509250925092565b600080fd5b600080fd5b60008083601f84011261367b5761367a6132d8565b5b8235905067ffffffffffffffff8111156136985761369761365b565b5b6020830191508360208202830111156136b4576136b3613660565b5b9250929050565b600080602083850312156136d2576136d1613188565b5b600083013567ffffffffffffffff8111156136f0576136ef61318d565b5b6136fc85828601613665565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61373d81613511565b82525050565b600061374f8383613734565b60208301905092915050565b6000602082019050919050565b600061377382613708565b61377d8185613713565b935061378883613724565b8060005b838110156137b95781516137a08882613743565b97506137ab8361375b565b92505060018101905061378c565b5085935050505092915050565b600060208201905081810360008301526137e08184613768565b905092915050565b6137f181613217565b81146137fc57600080fd5b50565b60008135905061380e816137e8565b92915050565b6000806040838503121561382b5761382a613188565b5b600061383985828601613296565b925050602061384a858286016137ff565b9150509250929050565b600067ffffffffffffffff82111561386f5761386e6132f3565b5b613878826132e2565b9050602081019050919050565b600061389861389384613854565b613353565b9050828152602081018484840111156138b4576138b36132dd565b5b6138bf84828561339f565b509392505050565b600082601f8301126138dc576138db6132d8565b5b81356138ec848260208601613885565b91505092915050565b6000806000806080858703121561390f5761390e613188565b5b600061391d87828801613296565b945050602061392e87828801613296565b935050604061393f8782880161355c565b925050606085013567ffffffffffffffff8111156139605761395f61318d565b5b61396c878288016138c7565b91505092959194509250565b6000806040838503121561398f5761398e613188565b5b600061399d85828601613296565b92505060206139ae85828601613296565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a2182613511565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613a5357613a526139e7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613aa557607f821691505b602082108103613ab857613ab7613a5e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613b207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613ae3565b613b2a8683613ae3565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613b67613b62613b5d84613511565b613b42565b613511565b9050919050565b6000819050919050565b613b8183613b4c565b613b95613b8d82613b6e565b848454613af0565b825550505050565b600090565b613baa613b9d565b613bb5818484613b78565b505050565b5b81811015613bd957613bce600082613ba2565b600181019050613bbb565b5050565b601f821115613c1e57613bef81613abe565b613bf884613ad3565b81016020851015613c07578190505b613c1b613c1385613ad3565b830182613bba565b50505b505050565b600082821c905092915050565b6000613c4160001984600802613c23565b1980831691505092915050565b6000613c5a8383613c30565b9150826002028217905092915050565b613c7382613467565b67ffffffffffffffff811115613c8c57613c8b6132f3565b5b613c968254613a8d565b613ca1828285613bdd565b600060209050601f831160018114613cd45760008415613cc2578287015190505b613ccc8582613c4e565b865550613d34565b601f198416613ce286613abe565b60005b82811015613d0a57848901518255600182019150602085019450602081019050613ce5565b86831015613d275784890151613d23601f891682613c30565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613da1601f83613472565b9150613dac82613d6b565b602082019050919050565b60006020820190508181036000830152613dd081613d94565b9050919050565b600081905092915050565b50565b6000613df2600083613dd7565b9150613dfd82613de2565b600082019050919050565b6000613e1382613de5565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613e53601083613472565b9150613e5e82613e1d565b602082019050919050565b60006020820190508181036000830152613e8281613e46565b9050919050565b7f437962657266697374203a3a2043616e6e6f742062652063616c6c656420627960008201527f206120636f6e7472616374000000000000000000000000000000000000000000602082015250565b6000613ee5602b83613472565b9150613ef082613e89565b604082019050919050565b60006020820190508181036000830152613f1481613ed8565b9050919050565b7f437962657266697374203a3a204e6f7420596574204163746976652e00000000600082015250565b6000613f51601c83613472565b9150613f5c82613f1b565b602082019050919050565b60006020820190508181036000830152613f8081613f44565b9050919050565b6000613f9282613511565b9150613f9d83613511565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fd257613fd16139e7565b5b828201905092915050565b7f437962657266697374203a3a204265796f6e64204d617820537570706c790000600082015250565b6000614013601e83613472565b915061401e82613fdd565b602082019050919050565b6000602082019050818103600083015261404281614006565b9050919050565b7f437962657266697374203a3a20416c7265616479206d696e746564203130302060008201527f746f6b656e732100000000000000000000000000000000000000000000000000602082015250565b60006140a5602783613472565b91506140b082614049565b604082019050919050565b600060208201905081810360008301526140d481614098565b9050919050565b60006140e682613511565b91506140f183613511565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561412a576141296139e7565b5b828202905092915050565b7f437962657266697374203a3a2042656c6f772000000000000000000000000000600082015250565b600061416b601383613472565b915061417682614135565b602082019050919050565b6000602082019050818103600083015261419a8161415e565b9050919050565b7f437962657266697374203a3a205465616d20616c7265616479206d696e746564600082015250565b60006141d7602083613472565b91506141e2826141a1565b602082019050919050565b60006020820190508181036000830152614206816141ca565b9050919050565b7f437962657266697374203a3a204d696e74696e67206973205061757365640000600082015250565b6000614243601e83613472565b915061424e8261420d565b602082019050919050565b6000602082019050818103600083015261427281614236565b9050919050565b7f437962657266697374203a3a2043616e6e6f74206d696e74206265796f6e642060008201527f6d617820737570706c7900000000000000000000000000000000000000000000602082015250565b60006142d5602a83613472565b91506142e082614279565b604082019050919050565b60006020820190508181036000830152614304816142c8565b9050919050565b7f437962657266697374203a3a2043616e6e6f74206d696e74206265796f6e642060008201527f616c6c6f776c697374206d6178206d696e742100000000000000000000000000602082015250565b6000614367603383613472565b91506143728261430b565b604082019050919050565b600060208201905081810360008301526143968161435a565b9050919050565b7f437962657266697374203a3a205061796d656e742069732062656c6f7720746860008201527f6520707269636500000000000000000000000000000000000000000000000000602082015250565b60006143f9602783613472565b91506144048261439d565b604082019050919050565b60006020820190508181036000830152614428816143ec565b9050919050565b7f4e6f74206f6e20616c6c6f776c69737400000000000000000000000000000000600082015250565b6000614465601083613472565b91506144708261442f565b602082019050919050565b6000602082019050818103600083015261449481614458565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006144f7602f83613472565b91506145028261449b565b604082019050919050565b60006020820190508181036000830152614526816144ea565b9050919050565b600081905092915050565b6000815461454581613a8d565b61454f818661452d565b9450600182166000811461456a576001811461457f576145b2565b60ff19831686528115158202860193506145b2565b61458885613abe565b60005b838110156145aa5781548189015260018201915060208101905061458b565b838801955050505b50505092915050565b60006145c682613467565b6145d0818561452d565b93506145e0818560208601613483565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061462260058361452d565b915061462d826145ec565b600582019050919050565b60006146448285614538565b915061465082846145bb565b915061465b82614615565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146c3602683613472565b91506146ce82614667565b604082019050919050565b600060208201905081810360008301526146f2816146b6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061472f602083613472565b915061473a826146f9565b602082019050919050565b6000602082019050818103600083015261475e81614722565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061478c82614765565b6147968185614770565b93506147a6818560208601613483565b6147af816132e2565b840191505092915050565b60006080820190506147cf600083018761359e565b6147dc602083018661359e565b6147e9604083018561351b565b81810360608301526147fb8184614781565b905095945050505050565b600081519050614815816131be565b92915050565b60006020828403121561483157614830613188565b5b600061483f84828501614806565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061488282613511565b915061488d83613511565b92508261489d5761489c614848565b5b828204905092915050565b60006148b382613511565b91506148be83613511565b9250828210156148d1576148d06139e7565b5b828203905092915050565b60006148e782613511565b91506148f283613511565b92508261490257614901614848565b5b82820690509291505056fea2646970667358221220d0c9bf5de2488d99e0ccfac511995ab8639d41df8e89c4731897776e9ec4b26d64736f6c634300080f0033
Deployed Bytecode
0x60806040526004361061027d5760003560e01c806365f130971161014f578063b0962c53116100c1578063c4ae31681161007a578063c4ae31681461095c578063c87b56dd14610973578063e222c7f9146109b0578063e8b5498d146109c7578063e985e9c5146109f2578063f2fde38b14610a2f5761027d565b8063b0962c531461086f578063b0f3062d14610898578063b88d4fde146108d5578063b912ba5a146108fe578063ba7a86b814610929578063c180526a146109405761027d565b806383a974a21161011357806383a974a21461077e5780638456cb59146107a95780638da5cb5b146107d457806395d89b41146107ff578063a0712d681461082a578063a22cb465146108465761027d565b806365f130971461069757806369c45824146106c257806370a08231146106ff578063715018a61461073c57806372f85d51146107535761027d565b80632617dd4d116101f357806342842e0e116101ac57806342842e0e146105875780634cf5f7a4146105b05780634f6ccce7146105db57806354214f69146106185780635b8ad429146106435780636352211e1461065a5761027d565b80632617dd4d14610489578063281905c8146104b25780632f745c59146104dd57806332cb6b0c1461051a57806333bc1c5c146105455780633ccfd60b146105705761027d565b8063081812fc11610245578063081812fc1461037b578063095ea7b3146103b857806318160ddd146103e15780631c16521c1461040c5780631ecb515f1461044957806323b872dd146104605761027d565b806301ffc9a71461028257806305a3b809146102bf5780630675b7c6146102fc57806306fdde031461032557806307e89ec014610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a491906131ea565b610a58565b6040516102b69190613232565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e191906132ab565b610ba2565b6040516102f39190613232565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e919061341e565b610c50565b005b34801561033157600080fd5b5061033a610c6b565b60405161034791906134ef565b60405180910390f35b34801561035c57600080fd5b50610365610cfd565b604051610372919061352a565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190613571565b610d09565b6040516103af91906135ad565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da91906135c8565b610d85565b005b3480156103ed57600080fd5b506103f6610e8f565b604051610403919061352a565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e91906132ab565b610e98565b604051610440919061352a565b60405180910390f35b34801561045557600080fd5b5061045e610eb0565b005b34801561046c57600080fd5b5061048760048036038101906104829190613608565b610ee4565b005b34801561049557600080fd5b506104b060048036038101906104ab91906136bb565b610ef4565b005b3480156104be57600080fd5b506104c7610f20565b6040516104d49190613232565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff91906135c8565b610f33565b604051610511919061352a565b60405180910390f35b34801561052657600080fd5b5061052f6110f2565b60405161053c919061352a565b60405180910390f35b34801561055157600080fd5b5061055a6110f8565b6040516105679190613232565b60405180910390f35b34801561057c57600080fd5b5061058561110b565b005b34801561059357600080fd5b506105ae60048036038101906105a99190613608565b611217565b005b3480156105bc57600080fd5b506105c5611237565b6040516105d291906134ef565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd9190613571565b6112c5565b60405161060f919061352a565b60405180910390f35b34801561062457600080fd5b5061062d61130f565b60405161063a9190613232565b60405180910390f35b34801561064f57600080fd5b50610658611322565b005b34801561066657600080fd5b50610681600480360381019061067c9190613571565b611356565b60405161068e91906135ad565b60405180910390f35b3480156106a357600080fd5b506106ac61136c565b6040516106b9919061352a565b60405180910390f35b3480156106ce57600080fd5b506106e960048036038101906106e49190613571565b611371565b6040516106f691906135ad565b60405180910390f35b34801561070b57600080fd5b50610726600480360381019061072191906132ab565b6113b0565b604051610733919061352a565b60405180910390f35b34801561074857600080fd5b5061075161148f565b005b34801561075f57600080fd5b506107686114a3565b604051610775919061352a565b60405180910390f35b34801561078a57600080fd5b506107936114a8565b6040516107a091906137c6565b60405180910390f35b3480156107b557600080fd5b506107be61155a565b6040516107cb9190613232565b60405180910390f35b3480156107e057600080fd5b506107e961156d565b6040516107f691906135ad565b60405180910390f35b34801561080b57600080fd5b50610814611597565b60405161082191906134ef565b60405180910390f35b610844600480360381019061083f9190613571565b611629565b005b34801561085257600080fd5b5061086d60048036038101906108689190613814565b611884565b005b34801561087b57600080fd5b506108966004803603810190610891919061341e565b6119fb565b005b3480156108a457600080fd5b506108bf60048036038101906108ba91906132ab565b611a16565b6040516108cc919061352a565b60405180910390f35b3480156108e157600080fd5b506108fc60048036038101906108f791906138f5565b611a2e565b005b34801561090a57600080fd5b50610913611a81565b604051610920919061352a565b60405180910390f35b34801561093557600080fd5b5061093e611a8d565b005b61095a60048036038101906109559190613571565b611b0d565b005b34801561096857600080fd5b50610971611db0565b005b34801561097f57600080fd5b5061099a60048036038101906109959190613571565b611de4565b6040516109a791906134ef565b60405180910390f35b3480156109bc57600080fd5b506109c5611f46565b005b3480156109d357600080fd5b506109dc611f7a565b6040516109e99190613232565b60405180910390f35b3480156109fe57600080fd5b50610a196004803603810190610a149190613978565b611f8d565b604051610a269190613232565b60405180910390f35b348015610a3b57600080fd5b50610a566004803603810190610a5191906132ab565b612021565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b2357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b8b57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b9b5750610b9a826120a4565b5b9050919050565b600080600090505b600e80549050811015610c45578273ffffffffffffffffffffffffffffffffffffffff16600e8281548110610be257610be16139b8565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610c32576001915050610c4b565b8080610c3d90613a16565b915050610baa565b50600090505b919050565b610c5861210e565b8060099081610c679190613c6a565b5050565b606060018054610c7a90613a8d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca690613a8d565b8015610cf35780601f10610cc857610100808354040283529160200191610cf3565b820191906000526020600020905b815481529060010190602001808311610cd657829003601f168201915b5050505050905090565b67011c37937e08000081565b6000610d148261218c565b610d4a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d9082611356565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610df7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e16612199565b73ffffffffffffffffffffffffffffffffffffffff1614158015610e485750610e4681610e41612199565b611f8d565b155b15610e7f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e8a8383836121a1565b505050565b60008054905090565b600c6020528060005260406000206000915090505481565b610eb861210e565b600b60029054906101000a900460ff1615600b60026101000a81548160ff021916908315150217905550565b610eef838383612253565b505050565b610efc61210e565b600e6000610f0a9190613066565b8181600e9190610f1b929190613087565b505050565b600b60029054906101000a900460ff1681565b6000610f3e836113b0565b8210610f76576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610f80610e8f565b905060008060005b838110156110d8576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461107a57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110ca578684036110c15781955050505050506110ec565b83806001019450505b508080600101915050610f88565b5060006110e8576110e7613d3c565b5b5050505b92915050565b61271081565b600b60019054906101000a900460ff1681565b600260085403611150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114790613db7565b60405180910390fd5b600260088190555061116061210e565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161118690613e08565b60006040518083038185875af1925050503d80600081146111c3576040519150601f19603f3d011682016040523d82523d6000602084013e6111c8565b606091505b505090508061120c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120390613e69565b60405180910390fd5b506001600881905550565b61123283838360405180602001604052806000815250611a2e565b505050565b600a805461124490613a8d565b80601f016020809104026020016040519081016040528092919081815260200182805461127090613a8d565b80156112bd5780601f10611292576101008083540402835291602001916112bd565b820191906000526020600020905b8154815290600101906020018083116112a057829003601f168201915b505050505081565b60006112cf610e8f565b8210611307576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b600b60009054906101000a900460ff1681565b61132a61210e565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b600061136182612776565b600001519050919050565b606481565b600e818154811061138157600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611417576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61149761210e565b6114a160006128fe565b565b600581565b6060600033905060006114ba826113b0565b905060008167ffffffffffffffff8111156114d8576114d76132f3565b5b6040519080825280602002602001820160405280156115065781602001602082028036833780820191505090505b50905060005b828110156115505761151e8482610f33565b828281518110611531576115306139b8565b5b602002602001018181525050808061154890613a16565b91505061150c565b5080935050505090565b600b60039054906101000a900460ff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546115a690613a8d565b80601f01602080910402602001604051908101604052809291908181526020018280546115d290613a8d565b801561161f5780601f106115f45761010080835404028352916020019161161f565b820191906000526020600020905b81548152906001019060200180831161160257829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e90613efb565b60405180910390fd5b600b60019054906101000a900460ff166116e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dd90613f67565b60405180910390fd5b612710816116f2610e8f565b6116fc9190613f87565b111561173d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173490614029565b60405180910390fd5b606481600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461178a9190613f87565b11156117cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c2906140bb565b60405180910390fd5b8067011c37937e0800006117df91906140db565b341015611821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181890614181565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118709190613f87565b9250508190555061188133826129c4565b50565b61188c612199565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118f0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600660006118fd612199565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119aa612199565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119ef9190613232565b60405180910390a35050565b611a0361210e565b80600a9081611a129190613c6a565b5050565b600d6020528060005260406000206000915090505481565b611a39848484612253565b611a45848484846129e2565b611a7b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b67011c37937e08000081565b611a9561210e565b600b60049054906101000a900460ff1615611ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adc906141ed565b60405180910390fd5b6001600b60046101000a81548160ff021916908315150217905550611b0b3360456129c4565b565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7290613efb565b60405180910390fd5b600b60029054906101000a900460ff16611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc190614259565b60405180910390fd5b61271081611bd6610e8f565b611be09190613f87565b1115611c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c18906142eb565b60405180910390fd5b600581600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c6e9190613f87565b1115611caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca69061437d565b60405180910390fd5b8067011c37937e080000611cc391906140db565b341015611d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfc9061440f565b60405180910390fd5b611d0e33610ba2565b611d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d449061447b565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d9c9190613f87565b92505081905550611dad33826129c4565b50565b611db861210e565b600b60039054906101000a900460ff1615600b60036101000a81548160ff021916908315150217905550565b6060611def8261218c565b611e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e259061450d565b60405180910390fd5b6000600183611e3d9190613f87565b9050600b60009054906101000a900460ff16611ee657600a8054611e6090613a8d565b80601f0160208091040260200160405190810160405280929190818152602001828054611e8c90613a8d565b8015611ed95780601f10611eae57610100808354040283529160200191611ed9565b820191906000526020600020905b815481529060010190602001808311611ebc57829003601f168201915b5050505050915050611f41565b600060098054611ef590613a8d565b905011611f115760405180602001604052806000815250611f3d565b6009611f1c82612b60565b604051602001611f2d929190614638565b6040516020818303038152906040525b9150505b919050565b611f4e61210e565b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b600b60049054906101000a900460ff1681565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61202961210e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208f906146d9565b60405180910390fd5b6120a1816128fe565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612116612199565b73ffffffffffffffffffffffffffffffffffffffff1661213461156d565b73ffffffffffffffffffffffffffffffffffffffff161461218a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218190614745565b60405180910390fd5b565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061225e82612776565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612285612199565b73ffffffffffffffffffffffffffffffffffffffff1614806122e157506122aa612199565b73ffffffffffffffffffffffffffffffffffffffff166122c984610d09565b73ffffffffffffffffffffffffffffffffffffffff16145b806122fd57506122fc82600001516122f7612199565b611f8d565b5b905080612336576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461239f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612405576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124128585856001612cc0565b61242260008484600001516121a1565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612706576126658161218c565b156127055782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461276f8585856001612cc6565b5050505050565b61277e613127565b6127878261218c565b6127bd576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008290505b600081106128c6576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128b75780925050506128f9565b508080600190039150506127c3565b506040517fe7c0edfb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129de828260405180602001604052806000815250612ccc565b5050565b6000612a038473ffffffffffffffffffffffffffffffffffffffff16612cde565b15612b53578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a2c612199565b8786866040518563ffffffff1660e01b8152600401612a4e94939291906147ba565b6020604051808303816000875af1925050508015612a8a57506040513d601f19601f82011682018060405250810190612a87919061481b565b60015b612b03573d8060008114612aba576040519150601f19603f3d011682016040523d82523d6000602084013e612abf565b606091505b506000815103612afb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b58565b600190505b949350505050565b606060008203612ba7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cbb565b600082905060005b60008214612bd9578080612bc290613a16565b915050600a82612bd29190614877565b9150612baf565b60008167ffffffffffffffff811115612bf557612bf46132f3565b5b6040519080825280601f01601f191660200182016040528015612c275781602001600182028036833780820191505090505b5090505b60008514612cb457600182612c4091906148a8565b9150600a85612c4f91906148dc565b6030612c5b9190613f87565b60f81b818381518110612c7157612c706139b8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cad9190614877565b9450612c2b565b8093505050505b919050565b50505050565b50505050565b612cd98383836001612d01565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612d6d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612da7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612db46000868387612cc0565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561304957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612ffd5750612ffb60008884886129e2565b155b15613034576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612f82565b50806000819055505061305f6000868387612cc6565b5050505050565b50805460008255906000526020600020908101906130849190613161565b50565b828054828255906000526020600020908101928215613116579160200282015b8281111561311557823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906130a7565b5b5090506131239190613161565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561317a576000816000905550600101613162565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131c781613192565b81146131d257600080fd5b50565b6000813590506131e4816131be565b92915050565b600060208284031215613200576131ff613188565b5b600061320e848285016131d5565b91505092915050565b60008115159050919050565b61322c81613217565b82525050565b60006020820190506132476000830184613223565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132788261324d565b9050919050565b6132888161326d565b811461329357600080fd5b50565b6000813590506132a58161327f565b92915050565b6000602082840312156132c1576132c0613188565b5b60006132cf84828501613296565b91505092915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61332b826132e2565b810181811067ffffffffffffffff8211171561334a576133496132f3565b5b80604052505050565b600061335d61317e565b90506133698282613322565b919050565b600067ffffffffffffffff821115613389576133886132f3565b5b613392826132e2565b9050602081019050919050565b82818337600083830152505050565b60006133c16133bc8461336e565b613353565b9050828152602081018484840111156133dd576133dc6132dd565b5b6133e884828561339f565b509392505050565b600082601f830112613405576134046132d8565b5b81356134158482602086016133ae565b91505092915050565b60006020828403121561343457613433613188565b5b600082013567ffffffffffffffff8111156134525761345161318d565b5b61345e848285016133f0565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134a1578082015181840152602081019050613486565b838111156134b0576000848401525b50505050565b60006134c182613467565b6134cb8185613472565b93506134db818560208601613483565b6134e4816132e2565b840191505092915050565b6000602082019050818103600083015261350981846134b6565b905092915050565b6000819050919050565b61352481613511565b82525050565b600060208201905061353f600083018461351b565b92915050565b61354e81613511565b811461355957600080fd5b50565b60008135905061356b81613545565b92915050565b60006020828403121561358757613586613188565b5b60006135958482850161355c565b91505092915050565b6135a78161326d565b82525050565b60006020820190506135c2600083018461359e565b92915050565b600080604083850312156135df576135de613188565b5b60006135ed85828601613296565b92505060206135fe8582860161355c565b9150509250929050565b60008060006060848603121561362157613620613188565b5b600061362f86828701613296565b935050602061364086828701613296565b92505060406136518682870161355c565b9150509250925092565b600080fd5b600080fd5b60008083601f84011261367b5761367a6132d8565b5b8235905067ffffffffffffffff8111156136985761369761365b565b5b6020830191508360208202830111156136b4576136b3613660565b5b9250929050565b600080602083850312156136d2576136d1613188565b5b600083013567ffffffffffffffff8111156136f0576136ef61318d565b5b6136fc85828601613665565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61373d81613511565b82525050565b600061374f8383613734565b60208301905092915050565b6000602082019050919050565b600061377382613708565b61377d8185613713565b935061378883613724565b8060005b838110156137b95781516137a08882613743565b97506137ab8361375b565b92505060018101905061378c565b5085935050505092915050565b600060208201905081810360008301526137e08184613768565b905092915050565b6137f181613217565b81146137fc57600080fd5b50565b60008135905061380e816137e8565b92915050565b6000806040838503121561382b5761382a613188565b5b600061383985828601613296565b925050602061384a858286016137ff565b9150509250929050565b600067ffffffffffffffff82111561386f5761386e6132f3565b5b613878826132e2565b9050602081019050919050565b600061389861389384613854565b613353565b9050828152602081018484840111156138b4576138b36132dd565b5b6138bf84828561339f565b509392505050565b600082601f8301126138dc576138db6132d8565b5b81356138ec848260208601613885565b91505092915050565b6000806000806080858703121561390f5761390e613188565b5b600061391d87828801613296565b945050602061392e87828801613296565b935050604061393f8782880161355c565b925050606085013567ffffffffffffffff8111156139605761395f61318d565b5b61396c878288016138c7565b91505092959194509250565b6000806040838503121561398f5761398e613188565b5b600061399d85828601613296565b92505060206139ae85828601613296565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a2182613511565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613a5357613a526139e7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613aa557607f821691505b602082108103613ab857613ab7613a5e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613b207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613ae3565b613b2a8683613ae3565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613b67613b62613b5d84613511565b613b42565b613511565b9050919050565b6000819050919050565b613b8183613b4c565b613b95613b8d82613b6e565b848454613af0565b825550505050565b600090565b613baa613b9d565b613bb5818484613b78565b505050565b5b81811015613bd957613bce600082613ba2565b600181019050613bbb565b5050565b601f821115613c1e57613bef81613abe565b613bf884613ad3565b81016020851015613c07578190505b613c1b613c1385613ad3565b830182613bba565b50505b505050565b600082821c905092915050565b6000613c4160001984600802613c23565b1980831691505092915050565b6000613c5a8383613c30565b9150826002028217905092915050565b613c7382613467565b67ffffffffffffffff811115613c8c57613c8b6132f3565b5b613c968254613a8d565b613ca1828285613bdd565b600060209050601f831160018114613cd45760008415613cc2578287015190505b613ccc8582613c4e565b865550613d34565b601f198416613ce286613abe565b60005b82811015613d0a57848901518255600182019150602085019450602081019050613ce5565b86831015613d275784890151613d23601f891682613c30565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613da1601f83613472565b9150613dac82613d6b565b602082019050919050565b60006020820190508181036000830152613dd081613d94565b9050919050565b600081905092915050565b50565b6000613df2600083613dd7565b9150613dfd82613de2565b600082019050919050565b6000613e1382613de5565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613e53601083613472565b9150613e5e82613e1d565b602082019050919050565b60006020820190508181036000830152613e8281613e46565b9050919050565b7f437962657266697374203a3a2043616e6e6f742062652063616c6c656420627960008201527f206120636f6e7472616374000000000000000000000000000000000000000000602082015250565b6000613ee5602b83613472565b9150613ef082613e89565b604082019050919050565b60006020820190508181036000830152613f1481613ed8565b9050919050565b7f437962657266697374203a3a204e6f7420596574204163746976652e00000000600082015250565b6000613f51601c83613472565b9150613f5c82613f1b565b602082019050919050565b60006020820190508181036000830152613f8081613f44565b9050919050565b6000613f9282613511565b9150613f9d83613511565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fd257613fd16139e7565b5b828201905092915050565b7f437962657266697374203a3a204265796f6e64204d617820537570706c790000600082015250565b6000614013601e83613472565b915061401e82613fdd565b602082019050919050565b6000602082019050818103600083015261404281614006565b9050919050565b7f437962657266697374203a3a20416c7265616479206d696e746564203130302060008201527f746f6b656e732100000000000000000000000000000000000000000000000000602082015250565b60006140a5602783613472565b91506140b082614049565b604082019050919050565b600060208201905081810360008301526140d481614098565b9050919050565b60006140e682613511565b91506140f183613511565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561412a576141296139e7565b5b828202905092915050565b7f437962657266697374203a3a2042656c6f772000000000000000000000000000600082015250565b600061416b601383613472565b915061417682614135565b602082019050919050565b6000602082019050818103600083015261419a8161415e565b9050919050565b7f437962657266697374203a3a205465616d20616c7265616479206d696e746564600082015250565b60006141d7602083613472565b91506141e2826141a1565b602082019050919050565b60006020820190508181036000830152614206816141ca565b9050919050565b7f437962657266697374203a3a204d696e74696e67206973205061757365640000600082015250565b6000614243601e83613472565b915061424e8261420d565b602082019050919050565b6000602082019050818103600083015261427281614236565b9050919050565b7f437962657266697374203a3a2043616e6e6f74206d696e74206265796f6e642060008201527f6d617820737570706c7900000000000000000000000000000000000000000000602082015250565b60006142d5602a83613472565b91506142e082614279565b604082019050919050565b60006020820190508181036000830152614304816142c8565b9050919050565b7f437962657266697374203a3a2043616e6e6f74206d696e74206265796f6e642060008201527f616c6c6f776c697374206d6178206d696e742100000000000000000000000000602082015250565b6000614367603383613472565b91506143728261430b565b604082019050919050565b600060208201905081810360008301526143968161435a565b9050919050565b7f437962657266697374203a3a205061796d656e742069732062656c6f7720746860008201527f6520707269636500000000000000000000000000000000000000000000000000602082015250565b60006143f9602783613472565b91506144048261439d565b604082019050919050565b60006020820190508181036000830152614428816143ec565b9050919050565b7f4e6f74206f6e20616c6c6f776c69737400000000000000000000000000000000600082015250565b6000614465601083613472565b91506144708261442f565b602082019050919050565b6000602082019050818103600083015261449481614458565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006144f7602f83613472565b91506145028261449b565b604082019050919050565b60006020820190508181036000830152614526816144ea565b9050919050565b600081905092915050565b6000815461454581613a8d565b61454f818661452d565b9450600182166000811461456a576001811461457f576145b2565b60ff19831686528115158202860193506145b2565b61458885613abe565b60005b838110156145aa5781548189015260018201915060208101905061458b565b838801955050505b50505092915050565b60006145c682613467565b6145d0818561452d565b93506145e0818560208601613483565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061462260058361452d565b915061462d826145ec565b600582019050919050565b60006146448285614538565b915061465082846145bb565b915061465b82614615565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146c3602683613472565b91506146ce82614667565b604082019050919050565b600060208201905081810360008301526146f2816146b6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061472f602083613472565b915061473a826146f9565b602082019050919050565b6000602082019050818103600083015261475e81614722565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061478c82614765565b6147968185614770565b93506147a6818560208601613483565b6147af816132e2565b840191505092915050565b60006080820190506147cf600083018761359e565b6147dc602083018661359e565b6147e9604083018561351b565b81810360608301526147fb8184614781565b905095945050505050565b600081519050614815816131be565b92915050565b60006020828403121561483157614830613188565b5b600061483f84828501614806565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061488282613511565b915061488d83613511565b92508261489d5761489c614848565b5b828204905092915050565b60006148b382613511565b91506148be83613511565b9250828210156148d1576148d06139e7565b5b828203905092915050565b60006148e782613511565b91506148f283613511565b92508261490257614901614848565b5b82820690509291505056fea2646970667358221220d0c9bf5de2488d99e0ccfac511995ab8639d41df8e89c4731897776e9ec4b26d64736f6c634300080f0033
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.