ERC-721
Overview
Max Total Supply
177 LEFTOVERPHOTO
Holders
38
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 LEFTOVERPHOTOLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Leftoverphotos
Compiler Version
v0.8.0+commit.c7dfd78e
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.0; /* <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 --<--< made with love by <--<--@ <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 --<--<- leftover photos -<--<--@ <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 --< https://leftover.photos ---@ <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 <3<3<3<3 --<--<--<--@ <3<3<3<3<3 <3<3<3<3<3<3<3<3<3<3<3<3<3<3<3<3 */ import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./ERC721Leftoverphotos.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract Leftoverphotos is Ownable, ERC721Leftoverphotos, ReentrancyGuard { // token metadata uri, set by method string private _baseTokenURI; // contract metadata uri, set by method string private _baseContractURI; // price per token, set to default in code uint256 public pricePublic = .0111 ether; // price per token, set to default in code uint256 public priceReserved = 0 ether; // status booleans for public mint bool public isPublicMintActive = false; // status booleans for private mint bool public isReservedMintActive = false; // total tokens in reserve right now for nicelist uint256 private reservedTokens = 0; // storage of reserved tokens per address mapping (address => uint256) private _reserved; // constructor method constructor( uint256 collectionSize_, uint256 maxBatchSize_ ) ERC721Leftoverphotos( "Leftover Photos", "LEFTOVERPHOTO", collectionSize_, maxBatchSize_ ) {} // check if the sender is the user modifier callerIsUser() { require(tx.origin == msg.sender, "Caller is another contract"); _; } // returns the URI location of the NFT metadata at a URL or IPFS function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } // sets the URI location of the NFT metadata // ex. https://example.com/metadata/ resolves to https://example.com/metadata/1 function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } // For OpenSea to automate reading of your contract data // https://docs.opensea.io/docs/contract-level-metadata function contractURI() public view returns (string memory) { return _baseContractURI; } // sets the URI location of the NFT metadata // https://example.com/contract-metadata function setContractURI(string calldata newContractURI) external onlyOwner { _baseContractURI = newContractURI; } // returns the total possibel NFTs in the collection function getCollectionSize() public view returns (uint256) { return collectionSize; } // returns the maximum NFTs allowed to be minted in 1 batch function getMaxBatchSize() public view returns (uint256) { return maxBatchSize; } // turns the public mint on and off // mint allows minting at the price function flipPublicMintState() public onlyOwner { isPublicMintActive = !isPublicMintActive; } // turns the reserved mint on and off // reserved mint allows minting only for reserved addresses function flipReservedMintState() public onlyOwner { isReservedMintActive = !isReservedMintActive; } // function to handle the price // if the free mint is active the price is 0 // otherwise the price is the price function setPricePublic(uint256 newPrice) public onlyOwner { pricePublic = newPrice; } // function to handle the price // if the free mint is active the price is 0 // otherwise the price is the price function setPriceReserved(uint256 newPrice) public onlyOwner { priceReserved = newPrice; } // checks how many an specific address minted function numberMinted(address _addr) public view returns (uint256) { return _numberMinted(_addr); } // see who owns which token function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } // withdraw from contract function withdrawMoney() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed"); } // ADMIN MINT // mints to a wallet, owner only function adminMint(address _addr, uint256 _quantity) public onlyOwner { require( totalSupply() + _quantity <= collectionSize, "Max supply on admin mint" ); _safeMint(_addr, _quantity); } // PUBLIC MINT function mint(uint256 quantity) external payable callerIsUser { require( isPublicMintActive, "Public mint not active" ); require( msg.value >= (pricePublic * quantity), "Price not enough for public mint" ); require( totalSupply() + quantity <= collectionSize, "Max supply on public mint" ); _safeMint(msg.sender, quantity); } // RESERVED MINT function reservedMint(uint256 quantity) external payable callerIsUser { require( isReservedMintActive, "Reserved mint not active" ); // limits total 1 wallet can mint in reserved mint to total in 1 batch require( numberMinted(msg.sender) + quantity <= maxBatchSize, "Exceeds limit in reserved mint" ); require( msg.value >= (priceReserved * quantity), "Price not enough for reserve mint" ); require( totalSupply() + quantity <= collectionSize, "Max supply on reserved mint" ); require( _reserved[msg.sender] >= quantity, "You do not have that many reserved tokens" ); reservedTokens -= quantity; _reserved[msg.sender] -= quantity; _safeMint(msg.sender, quantity); } // adds reserved tokens for a single address function reservedAdd(address _addr, uint256 _quantity) external onlyOwner { _reserved[_addr] += _quantity; reservedTokens += _quantity; } // adds reserved tokens for multiple addresses function reservedAddBatch(address[] calldata _addrs, uint256[] calldata _quantity) external onlyOwner { uint size = _addrs.length; uint256 total = 0; require( _addrs.length == _quantity.length, "Array mismatch" ); for (uint256 i = 0; i < size; i++) { _reserved[_addrs[i]] += _quantity[i]; total += _quantity[i]; } reservedTokens += total; } // removed reserved tokens from an address function reservedRemove(address _addr) external onlyOwner { reservedTokens -= _reserved[_addr]; _reserved[_addr] = 0; } // lets a wallet check their reserve status function reservedCheck() public view callerIsUser returns (uint256) { return _reserved[msg.sender]; } // lets the owner check any address function reservedCheckOwner(address _addr) view external onlyOwner returns (uint256) { return _reserved[_addr]; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// 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 pragma solidity ^0.8.0; 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"; /** * @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..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721Leftoverphotos 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 private currentIndex = 0; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // 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) private _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; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 collectionSize_, uint256 maxBatchSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @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) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). 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) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; 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++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @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) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721Leftoverphotos.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public 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); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); 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())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, 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] = TokenOwnership( prevOwnership.addr, 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); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @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("ERC721A: transfer to non ERC721Receiver implementer"); } 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/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// 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 v4.4.1 (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`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// 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 v4.4.1 (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 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// 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/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" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPublicMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipReservedMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCollectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721Leftoverphotos.TokenOwnership","name":"","type":"tuple"}],"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":"isPublicMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isReservedMintActive","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":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"pricePublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"reservedAdd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addrs","type":"address[]"},{"internalType":"uint256[]","name":"_quantity","type":"uint256[]"}],"name":"reservedAddBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedCheck","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"reservedCheckOwner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reservedMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"reservedRemove","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newContractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPricePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPriceReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526000600155600060085566276f642501c000600c556000600d556000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055506000600f553480156200006657600080fd5b5060405162005e1438038062005e1483398181016040528101906200008c91906200038f565b6040518060400160405280600f81526020017f4c6566746f7665722050686f746f7300000000000000000000000000000000008152506040518060400160405280600d81526020017f4c4546544f56455250484f544f0000000000000000000000000000000000000081525083836200011a6200010e620001fc60201b60201c565b6200020460201b60201c565b6000821162000160576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200015790620004c2565b60405180910390fd5b60008111620001a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200019d90620004a0565b60405180910390fd5b8360029080519060200190620001be929190620002c8565b508260039080519060200190620001d7929190620002c8565b508060a08181525050816080818152505050505050600160098190555050506200057e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002d690620004ff565b90600052602060002090601f016020900481019282620002fa576000855562000346565b82601f106200031557805160ff191683800117855562000346565b8280016001018555821562000346579182015b828111156200034557825182559160200191906001019062000328565b5b50905062000355919062000359565b5090565b5b80821115620003745760008160009055506001016200035a565b5090565b600081519050620003898162000564565b92915050565b60008060408385031215620003a357600080fd5b6000620003b38582860162000378565b9250506020620003c68582860162000378565b9150509250929050565b6000620003df602783620004e4565b91507f455243373231413a206d61782062617463682073697a65206d7573742062652060008301527f6e6f6e7a65726f000000000000000000000000000000000000000000000000006020830152604082019050919050565b600062000447602e83620004e4565b91507f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008301527f6e6f6e7a65726f20737570706c790000000000000000000000000000000000006020830152604082019050919050565b60006020820190508181036000830152620004bb81620003d0565b9050919050565b60006020820190508181036000830152620004dd8162000438565b9050919050565b600082825260208201905092915050565b6000819050919050565b600060028204905060018216806200051857607f821691505b602082108114156200052f576200052e62000535565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6200056f81620004f5565b81146200057b57600080fd5b50565b60805160a05161583f620005d5600039600081816115e5015281816125ac01528181612f2d01528181612f56015261374b01526000818161144d015281816116ab01528181611bbe0152612527015261583f6000f3fe6080604052600436106102675760003560e01c80638da5cb5b11610144578063c82a0b37116100b6578063e3b7c13b1161007a578063e3b7c13b146108fe578063e58306f914610927578063e7c00f6e14610950578063e8a3d4851461097b578063e985e9c5146109a6578063f2fde38b146109e357610267565b8063c82a0b3714610807578063c87b56dd14610830578063d7224ba01461086d578063d9a9e8de14610898578063dc33e681146108c157610267565b80639ced91ba116101085780639ced91ba1461072e578063a0712d6814610757578063a12c470314610773578063a22cb4651461079e578063ac446002146107c7578063b88d4fde146107de57610267565b80638da5cb5b1461065b5780639231ab2a14610686578063938e3d7b146106c357806395d89b41146106ec57806399c89e811461071757610267565b80634530a832116101dd5780636bf1e49d116101a15780636bf1e49d1461055857806370a0823114610595578063715018a6146105d25780637155c1ea146105e9578063845348f0146106145780638c74bf0e1461063f57610267565b80634530a832146104615780634f6ccce71461048a57806355f804b3146104c75780635926533b146104f05780636352211e1461051b57610267565b806314896ee51161022f57806314896ee51461036557806318160ddd1461037c57806323b872dd146103a75780632d6b6224146103d05780632f745c59146103fb57806342842e0e1461043857610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b314610311578063102e766d1461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190614024565b610a0c565b6040516102a09190614e33565b60405180910390f35b3480156102b557600080fd5b506102be610b56565b6040516102cb9190614e4e565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f691906140bb565b610be8565b6040516103089190614dcc565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613f73565b610c6d565b005b34801561034657600080fd5b5061034f610d86565b60405161035c91906152cb565b60405180910390f35b34801561037157600080fd5b5061037a610d8c565b005b34801561038857600080fd5b50610391610e34565b60405161039e91906152cb565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c99190613e6d565b610e3e565b005b3480156103dc57600080fd5b506103e5610e4e565b6040516103f29190614e33565b60405180910390f35b34801561040757600080fd5b50610422600480360381019061041d9190613f73565b610e61565b60405161042f91906152cb565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190613e6d565b61105f565b005b34801561046d57600080fd5b50610488600480360381019061048391906140bb565b61107f565b005b34801561049657600080fd5b506104b160048036038101906104ac91906140bb565b611105565b6040516104be91906152cb565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e99190614076565b611158565b005b3480156104fc57600080fd5b506105056111ea565b6040516105129190614e33565b60405180910390f35b34801561052757600080fd5b50610542600480360381019061053d91906140bb565b6111fd565b60405161054f9190614dcc565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a9190613e08565b611213565b60405161058c91906152cb565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b79190613e08565b6112d8565b6040516105c991906152cb565b60405180910390f35b3480156105de57600080fd5b506105e76113c1565b005b3480156105f557600080fd5b506105fe611449565b60405161060b91906152cb565b60405180910390f35b34801561062057600080fd5b50610629611471565b60405161063691906152cb565b60405180910390f35b610659600480360381019061065491906140bb565b611526565b005b34801561066757600080fd5b5061067061181c565b60405161067d9190614dcc565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a891906140bb565b611845565b6040516106ba91906152b0565b60405180910390f35b3480156106cf57600080fd5b506106ea60048036038101906106e59190614076565b61185d565b005b3480156106f857600080fd5b506107016118ef565b60405161070e9190614e4e565b60405180910390f35b34801561072357600080fd5b5061072c611981565b005b34801561073a57600080fd5b50610755600480360381019061075091906140bb565b611a29565b005b610771600480360381019061076c91906140bb565b611aaf565b005b34801561077f57600080fd5b50610788611c3e565b60405161079591906152cb565b60405180910390f35b3480156107aa57600080fd5b506107c560048036038101906107c09190613f37565b611c44565b005b3480156107d357600080fd5b506107dc611dc5565b005b3480156107ea57600080fd5b5061080560048036038101906108009190613ebc565b611f46565b005b34801561081357600080fd5b5061082e60048036038101906108299190613f73565b611fa2565b005b34801561083c57600080fd5b50610857600480360381019061085291906140bb565b612091565b6040516108649190614e4e565b60405180910390f35b34801561087957600080fd5b50610882612138565b60405161088f91906152cb565b60405180910390f35b3480156108a457600080fd5b506108bf60048036038101906108ba9190613faf565b61213e565b005b3480156108cd57600080fd5b506108e860048036038101906108e39190613e08565b61237b565b6040516108f591906152cb565b60405180910390f35b34801561090a57600080fd5b5061092560048036038101906109209190613e08565b61238d565b005b34801561093357600080fd5b5061094e60048036038101906109499190613f73565b6124a9565b005b34801561095c57600080fd5b506109656125a8565b60405161097291906152cb565b60405180910390f35b34801561098757600080fd5b506109906125d0565b60405161099d9190614e4e565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c89190613e31565b612662565b6040516109da9190614e33565b60405180910390f35b3480156109ef57600080fd5b50610a0a6004803603810190610a059190613e08565b6126f6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ad757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b3f57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b4f5750610b4e826127ee565b5b9050919050565b606060028054610b6590615634565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9190615634565b8015610bde5780601f10610bb357610100808354040283529160200191610bde565b820191906000526020600020905b815481529060010190602001808311610bc157829003601f168201915b5050505050905090565b6000610bf382612858565b610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990615250565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c78826111fd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce090615110565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d08612866565b73ffffffffffffffffffffffffffffffffffffffff161480610d375750610d3681610d31612866565b612662565b5b610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90615010565b60405180910390fd5b610d8183838361286e565b505050565b600c5481565b610d94612866565b73ffffffffffffffffffffffffffffffffffffffff16610db261181c565b73ffffffffffffffffffffffffffffffffffffffff1614610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff90615090565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b6000600154905090565b610e49838383612920565b505050565b600e60009054906101000a900460ff1681565b6000610e6c836112d8565b8210610ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea490614e70565b60405180910390fd5b6000610eb7610e34565b905060008060005b8381101561101d576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610fb157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110095786841415610ffa578195505050505050611059565b838061100590615666565b9450505b50808061101590615666565b915050610ebf565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611050906151b0565b60405180910390fd5b92915050565b61107a83838360405180602001604052806000815250611f46565b505050565b611087612866565b73ffffffffffffffffffffffffffffffffffffffff166110a561181c565b73ffffffffffffffffffffffffffffffffffffffff16146110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f290615090565b60405180910390fd5b80600c8190555050565b600061110f610e34565b8210611150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114790614f50565b60405180910390fd5b819050919050565b611160612866565b73ffffffffffffffffffffffffffffffffffffffff1661117e61181c565b73ffffffffffffffffffffffffffffffffffffffff16146111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb90615090565b60405180910390fd5b8181600a91906111e5929190613b7c565b505050565b600e60019054906101000a900460ff1681565b600061120882612ed9565b600001519050919050565b600061121d612866565b73ffffffffffffffffffffffffffffffffffffffff1661123b61181c565b73ffffffffffffffffffffffffffffffffffffffff1614611291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128890615090565b60405180910390fd5b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611349576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134090615050565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113c9612866565b73ffffffffffffffffffffffffffffffffffffffff166113e761181c565b73ffffffffffffffffffffffffffffffffffffffff161461143d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143490615090565b60405180910390fd5b61144760006130dc565b565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b60003373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d8906151d0565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158b906151d0565b60405180910390fd5b600e60019054906101000a900460ff166115e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115da90615030565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008161160e3361237b565b61161891906153db565b1115611659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165090614f30565b60405180910390fd5b80600d546116679190615462565b3410156116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a090614fd0565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000816116d3610e34565b6116dd91906153db565b111561171e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171590614e90565b60405180910390fd5b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156117a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179790615170565b60405180910390fd5b80600f60008282546117b291906154f0565b9250508190555080601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461180891906154f0565b9250508190555061181933826131a0565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61184d613c02565b61185682612ed9565b9050919050565b611865612866565b73ffffffffffffffffffffffffffffffffffffffff1661188361181c565b73ffffffffffffffffffffffffffffffffffffffff16146118d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d090615090565b60405180910390fd5b8181600b91906118ea929190613b7c565b505050565b6060600380546118fe90615634565b80601f016020809104026020016040519081016040528092919081815260200182805461192a90615634565b80156119775780601f1061194c57610100808354040283529160200191611977565b820191906000526020600020905b81548152906001019060200180831161195a57829003601f168201915b5050505050905090565b611989612866565b73ffffffffffffffffffffffffffffffffffffffff166119a761181c565b73ffffffffffffffffffffffffffffffffffffffff16146119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f490615090565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b611a31612866565b73ffffffffffffffffffffffffffffffffffffffff16611a4f61181c565b73ffffffffffffffffffffffffffffffffffffffff1614611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90615090565b60405180910390fd5b80600d8190555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b14906151d0565b60405180910390fd5b600e60009054906101000a900460ff16611b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6390615290565b60405180910390fd5b80600c54611b7a9190615462565b341015611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb390614fb0565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081611be6610e34565b611bf091906153db565b1115611c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2890614eb0565b60405180910390fd5b611c3b33826131a0565b50565b600d5481565b611c4c612866565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb1906150d0565b60405180910390fd5b8060076000611cc7612866565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d74612866565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611db99190614e33565b60405180910390a35050565b611dcd612866565b73ffffffffffffffffffffffffffffffffffffffff16611deb61181c565b73ffffffffffffffffffffffffffffffffffffffff1614611e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3890615090565b60405180910390fd5b60026009541415611e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7e906151f0565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051611eb590614db7565b60006040518083038185875af1925050503d8060008114611ef2576040519150601f19603f3d011682016040523d82523d6000602084013e611ef7565b606091505b5050905080611f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3290614ef0565b60405180910390fd5b506001600981905550565b611f51848484612920565b611f5d848484846131be565b611f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9390615130565b60405180910390fd5b50505050565b611faa612866565b73ffffffffffffffffffffffffffffffffffffffff16611fc861181c565b73ffffffffffffffffffffffffffffffffffffffff161461201e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201590615090565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461206d91906153db565b9250508190555080600f600082825461208691906153db565b925050819055505050565b606061209c82612858565b6120db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d2906150b0565b60405180910390fd5b60006120e5613355565b905060008151116121055760405180602001604052806000815250612130565b8061210f846133e7565b604051602001612120929190614d93565b6040516020818303038152906040525b915050919050565b60085481565b612146612866565b73ffffffffffffffffffffffffffffffffffffffff1661216461181c565b73ffffffffffffffffffffffffffffffffffffffff16146121ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b190615090565b60405180910390fd5b6000848490509050600083839050868690501461220c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220390614ff0565b60405180910390fd5b60005b8281101561235957848482818110612250577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013560106000898985818110612294577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906122a99190613e08565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122f291906153db565b92505081905550848482818110612332577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358261234491906153db565b9150808061235190615666565b91505061220f565b5080600f600082825461236c91906153db565b92505081905550505050505050565b600061238682613594565b9050919050565b612395612866565b73ffffffffffffffffffffffffffffffffffffffff166123b361181c565b73ffffffffffffffffffffffffffffffffffffffff1614612409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240090615090565b60405180910390fd5b601060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600f600082825461245a91906154f0565b925050819055506000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b6124b1612866565b73ffffffffffffffffffffffffffffffffffffffff166124cf61181c565b73ffffffffffffffffffffffffffffffffffffffff1614612525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251c90615090565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008161254f610e34565b61255991906153db565b111561259a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259190615230565b60405180910390fd5b6125a482826131a0565b5050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6060600b80546125df90615634565b80601f016020809104026020016040519081016040528092919081815260200182805461260b90615634565b80156126585780601f1061262d57610100808354040283529160200191612658565b820191906000526020600020905b81548152906001019060200180831161263b57829003601f168201915b5050505050905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6126fe612866565b73ffffffffffffffffffffffffffffffffffffffff1661271c61181c565b73ffffffffffffffffffffffffffffffffffffffff1614612772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276990615090565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d990614ed0565b60405180910390fd5b6127eb816130dc565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061292b82612ed9565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612952612866565b73ffffffffffffffffffffffffffffffffffffffff1614806129ae5750612977612866565b73ffffffffffffffffffffffffffffffffffffffff1661299684610be8565b73ffffffffffffffffffffffffffffffffffffffff16145b806129ca57506129c982600001516129c4612866565b612662565b5b905080612a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a03906150f0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7590615070565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae590614f70565b60405180910390fd5b612afb858585600161367d565b612b0b600084846000015161286e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612b7991906154bc565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612c1d9190615395565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612d2391906153db565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e6957612d9981612858565b15612e68576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ed18686866001613683565b505050505050565b612ee1613c02565b612eea82612858565b612f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2090614f10565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612f8d5760017f000000000000000000000000000000000000000000000000000000000000000084612f8091906154f0565b612f8a91906153db565b90505b60008390505b81811061309b576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613087578093505050506130d7565b5080806130939061560a565b915050612f93565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ce90615210565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6131ba828260405180602001604052806000815250613689565b5050565b60006131df8473ffffffffffffffffffffffffffffffffffffffff16613b69565b15613348578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613208612866565b8786866040518563ffffffff1660e01b815260040161322a9493929190614de7565b602060405180830381600087803b15801561324457600080fd5b505af192505050801561327557506040513d601f19601f82011682018060405250810190613272919061404d565b60015b6132f8573d80600081146132a5576040519150601f19603f3d011682016040523d82523d6000602084013e6132aa565b606091505b506000815114156132f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e790615130565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061334d565b600190505b949350505050565b6060600a805461336490615634565b80601f016020809104026020016040519081016040528092919081815260200182805461339090615634565b80156133dd5780601f106133b2576101008083540402835291602001916133dd565b820191906000526020600020905b8154815290600101906020018083116133c057829003601f168201915b5050505050905090565b6060600082141561342f576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061358f565b600082905060005b6000821461346157808061344a90615666565b915050600a8261345a9190615431565b9150613437565b60008167ffffffffffffffff8111156134a3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156134d55781602001600182028036833780820191505090505b5090505b60008514613588576001826134ee91906154f0565b9150600a856134fd91906156af565b603061350991906153db565b60f81b818381518110613545577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135819190615431565b94506134d9565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135fc90614f90565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136f790615190565b60405180910390fd5b61370981612858565b15613749576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161374090615150565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156137ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137a390615270565b60405180910390fd5b6137b9600085838661367d565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516138b69190615395565b6fffffffffffffffffffffffffffffffff1681526020018583602001516138dd9190615395565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613b4c57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613aec60008884886131be565b613b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b2290615130565b60405180910390fd5b8180613b3690615666565b9250508080613b4490615666565b915050613a7b565b5080600181905550613b616000878588613683565b505050505050565b600080823b905060008111915050919050565b828054613b8890615634565b90600052602060002090601f016020900481019282613baa5760008555613bf1565b82601f10613bc357803560ff1916838001178555613bf1565b82800160010185558215613bf1579182015b82811115613bf0578235825591602001919060010190613bd5565b5b509050613bfe9190613c3c565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613c55576000816000905550600101613c3d565b5090565b6000613c6c613c6784615317565b6152e6565b905082815260208101848484011115613c8457600080fd5b613c8f8482856155c8565b509392505050565b600081359050613ca6816157ad565b92915050565b60008083601f840112613cbe57600080fd5b8235905067ffffffffffffffff811115613cd757600080fd5b602083019150836020820283011115613cef57600080fd5b9250929050565b60008083601f840112613d0857600080fd5b8235905067ffffffffffffffff811115613d2157600080fd5b602083019150836020820283011115613d3957600080fd5b9250929050565b600081359050613d4f816157c4565b92915050565b600081359050613d64816157db565b92915050565b600081519050613d79816157db565b92915050565b600082601f830112613d9057600080fd5b8135613da0848260208601613c59565b91505092915050565b60008083601f840112613dbb57600080fd5b8235905067ffffffffffffffff811115613dd457600080fd5b602083019150836001820283011115613dec57600080fd5b9250929050565b600081359050613e02816157f2565b92915050565b600060208284031215613e1a57600080fd5b6000613e2884828501613c97565b91505092915050565b60008060408385031215613e4457600080fd5b6000613e5285828601613c97565b9250506020613e6385828601613c97565b9150509250929050565b600080600060608486031215613e8257600080fd5b6000613e9086828701613c97565b9350506020613ea186828701613c97565b9250506040613eb286828701613df3565b9150509250925092565b60008060008060808587031215613ed257600080fd5b6000613ee087828801613c97565b9450506020613ef187828801613c97565b9350506040613f0287828801613df3565b925050606085013567ffffffffffffffff811115613f1f57600080fd5b613f2b87828801613d7f565b91505092959194509250565b60008060408385031215613f4a57600080fd5b6000613f5885828601613c97565b9250506020613f6985828601613d40565b9150509250929050565b60008060408385031215613f8657600080fd5b6000613f9485828601613c97565b9250506020613fa585828601613df3565b9150509250929050565b60008060008060408587031215613fc557600080fd5b600085013567ffffffffffffffff811115613fdf57600080fd5b613feb87828801613cac565b9450945050602085013567ffffffffffffffff81111561400a57600080fd5b61401687828801613cf6565b925092505092959194509250565b60006020828403121561403657600080fd5b600061404484828501613d55565b91505092915050565b60006020828403121561405f57600080fd5b600061406d84828501613d6a565b91505092915050565b6000806020838503121561408957600080fd5b600083013567ffffffffffffffff8111156140a357600080fd5b6140af85828601613da9565b92509250509250929050565b6000602082840312156140cd57600080fd5b60006140db84828501613df3565b91505092915050565b6140ed81615524565b82525050565b6140fc81615524565b82525050565b61410b81615536565b82525050565b600061411c82615347565b614126818561535d565b93506141368185602086016155d7565b61413f8161579c565b840191505092915050565b600061415582615352565b61415f8185615379565b935061416f8185602086016155d7565b6141788161579c565b840191505092915050565b600061418e82615352565b614198818561538a565b93506141a88185602086016155d7565b80840191505092915050565b60006141c1602283615379565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614227601b83615379565b91507f4d617820737570706c79206f6e207265736572766564206d696e7400000000006000830152602082019050919050565b6000614267601983615379565b91507f4d617820737570706c79206f6e207075626c6963206d696e74000000000000006000830152602082019050919050565b60006142a7602683615379565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061430d600f83615379565b91507f5472616e73666572206661696c656400000000000000000000000000000000006000830152602082019050919050565b600061434d602a83615379565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b60006143b3601e83615379565b91507f45786365656473206c696d697420696e207265736572766564206d696e7400006000830152602082019050919050565b60006143f3602383615379565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614459602583615379565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144bf603183615379565b91507f455243373231413a206e756d626572206d696e74656420717565727920666f7260008301527f20746865207a65726f20616464726573730000000000000000000000000000006020830152604082019050919050565b6000614525602083615379565b91507f5072696365206e6f7420656e6f75676820666f72207075626c6963206d696e746000830152602082019050919050565b6000614565602183615379565b91507f5072696365206e6f7420656e6f75676820666f722072657365727665206d696e60008301527f74000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145cb600e83615379565b91507f4172726179206d69736d617463680000000000000000000000000000000000006000830152602082019050919050565b600061460b603983615379565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b6000614671601883615379565b91507f5265736572766564206d696e74206e6f742061637469766500000000000000006000830152602082019050919050565b60006146b1602b83615379565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b6000614717602683615379565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061477d602083615379565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006147bd602f83615379565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614823601a83615379565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b6000614863603283615379565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b60006148c9602283615379565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061492f60008361536e565b9150600082019050919050565b6000614949603383615379565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b60006149af601d83615379565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b60006149ef602983615379565b91507f596f7520646f206e6f7420686176652074686174206d616e792072657365727660008301527f656420746f6b656e7300000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a55602183615379565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614abb602e83615379565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b6000614b21601a83615379565b91507f43616c6c657220697320616e6f7468657220636f6e74726163740000000000006000830152602082019050919050565b6000614b61601f83615379565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6000614ba1602f83615379565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614c07601883615379565b91507f4d617820737570706c79206f6e2061646d696e206d696e7400000000000000006000830152602082019050919050565b6000614c47602d83615379565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b6000614cad602283615379565b91507f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008301527f67680000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d13601683615379565b91507f5075626c6963206d696e74206e6f7420616374697665000000000000000000006000830152602082019050919050565b604082016000820151614d5c60008501826140e4565b506020820151614d6f6020850182614d84565b50505050565b614d7e816155aa565b82525050565b614d8d816155b4565b82525050565b6000614d9f8285614183565b9150614dab8284614183565b91508190509392505050565b6000614dc282614922565b9150819050919050565b6000602082019050614de160008301846140f3565b92915050565b6000608082019050614dfc60008301876140f3565b614e0960208301866140f3565b614e166040830185614d75565b8181036060830152614e288184614111565b905095945050505050565b6000602082019050614e486000830184614102565b92915050565b60006020820190508181036000830152614e68818461414a565b905092915050565b60006020820190508181036000830152614e89816141b4565b9050919050565b60006020820190508181036000830152614ea98161421a565b9050919050565b60006020820190508181036000830152614ec98161425a565b9050919050565b60006020820190508181036000830152614ee98161429a565b9050919050565b60006020820190508181036000830152614f0981614300565b9050919050565b60006020820190508181036000830152614f2981614340565b9050919050565b60006020820190508181036000830152614f49816143a6565b9050919050565b60006020820190508181036000830152614f69816143e6565b9050919050565b60006020820190508181036000830152614f898161444c565b9050919050565b60006020820190508181036000830152614fa9816144b2565b9050919050565b60006020820190508181036000830152614fc981614518565b9050919050565b60006020820190508181036000830152614fe981614558565b9050919050565b60006020820190508181036000830152615009816145be565b9050919050565b60006020820190508181036000830152615029816145fe565b9050919050565b6000602082019050818103600083015261504981614664565b9050919050565b60006020820190508181036000830152615069816146a4565b9050919050565b600060208201905081810360008301526150898161470a565b9050919050565b600060208201905081810360008301526150a981614770565b9050919050565b600060208201905081810360008301526150c9816147b0565b9050919050565b600060208201905081810360008301526150e981614816565b9050919050565b6000602082019050818103600083015261510981614856565b9050919050565b60006020820190508181036000830152615129816148bc565b9050919050565b600060208201905081810360008301526151498161493c565b9050919050565b60006020820190508181036000830152615169816149a2565b9050919050565b60006020820190508181036000830152615189816149e2565b9050919050565b600060208201905081810360008301526151a981614a48565b9050919050565b600060208201905081810360008301526151c981614aae565b9050919050565b600060208201905081810360008301526151e981614b14565b9050919050565b6000602082019050818103600083015261520981614b54565b9050919050565b6000602082019050818103600083015261522981614b94565b9050919050565b6000602082019050818103600083015261524981614bfa565b9050919050565b6000602082019050818103600083015261526981614c3a565b9050919050565b6000602082019050818103600083015261528981614ca0565b9050919050565b600060208201905081810360008301526152a981614d06565b9050919050565b60006040820190506152c56000830184614d46565b92915050565b60006020820190506152e06000830184614d75565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561530d5761530c61576d565b5b8060405250919050565b600067ffffffffffffffff8211156153325761533161576d565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006153a08261556e565b91506153ab8361556e565b9250826fffffffffffffffffffffffffffffffff038211156153d0576153cf6156e0565b5b828201905092915050565b60006153e6826155aa565b91506153f1836155aa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615426576154256156e0565b5b828201905092915050565b600061543c826155aa565b9150615447836155aa565b9250826154575761545661570f565b5b828204905092915050565b600061546d826155aa565b9150615478836155aa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156154b1576154b06156e0565b5b828202905092915050565b60006154c78261556e565b91506154d28361556e565b9250828210156154e5576154e46156e0565b5b828203905092915050565b60006154fb826155aa565b9150615506836155aa565b925082821015615519576155186156e0565b5b828203905092915050565b600061552f8261558a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156155f55780820151818401526020810190506155da565b83811115615604576000848401525b50505050565b6000615615826155aa565b91506000821415615629576156286156e0565b5b600182039050919050565b6000600282049050600182168061564c57607f821691505b602082108114156156605761565f61573e565b5b50919050565b6000615671826155aa565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156156a4576156a36156e0565b5b600182019050919050565b60006156ba826155aa565b91506156c5836155aa565b9250826156d5576156d461570f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6157b681615524565b81146157c157600080fd5b50565b6157cd81615536565b81146157d857600080fd5b50565b6157e481615542565b81146157ef57600080fd5b50565b6157fb816155aa565b811461580657600080fd5b5056fea2646970667358221220eb99464f33211b94c087d8c8a7da6db18322fc391f5cb95841ed12f39db2ab8264736f6c634300080000330000000000000000000000000000000000000000000000000000000000000378000000000000000000000000000000000000000000000000000000000000000a
Deployed Bytecode
0x6080604052600436106102675760003560e01c80638da5cb5b11610144578063c82a0b37116100b6578063e3b7c13b1161007a578063e3b7c13b146108fe578063e58306f914610927578063e7c00f6e14610950578063e8a3d4851461097b578063e985e9c5146109a6578063f2fde38b146109e357610267565b8063c82a0b3714610807578063c87b56dd14610830578063d7224ba01461086d578063d9a9e8de14610898578063dc33e681146108c157610267565b80639ced91ba116101085780639ced91ba1461072e578063a0712d6814610757578063a12c470314610773578063a22cb4651461079e578063ac446002146107c7578063b88d4fde146107de57610267565b80638da5cb5b1461065b5780639231ab2a14610686578063938e3d7b146106c357806395d89b41146106ec57806399c89e811461071757610267565b80634530a832116101dd5780636bf1e49d116101a15780636bf1e49d1461055857806370a0823114610595578063715018a6146105d25780637155c1ea146105e9578063845348f0146106145780638c74bf0e1461063f57610267565b80634530a832146104615780634f6ccce71461048a57806355f804b3146104c75780635926533b146104f05780636352211e1461051b57610267565b806314896ee51161022f57806314896ee51461036557806318160ddd1461037c57806323b872dd146103a75780632d6b6224146103d05780632f745c59146103fb57806342842e0e1461043857610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b314610311578063102e766d1461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190614024565b610a0c565b6040516102a09190614e33565b60405180910390f35b3480156102b557600080fd5b506102be610b56565b6040516102cb9190614e4e565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f691906140bb565b610be8565b6040516103089190614dcc565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613f73565b610c6d565b005b34801561034657600080fd5b5061034f610d86565b60405161035c91906152cb565b60405180910390f35b34801561037157600080fd5b5061037a610d8c565b005b34801561038857600080fd5b50610391610e34565b60405161039e91906152cb565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c99190613e6d565b610e3e565b005b3480156103dc57600080fd5b506103e5610e4e565b6040516103f29190614e33565b60405180910390f35b34801561040757600080fd5b50610422600480360381019061041d9190613f73565b610e61565b60405161042f91906152cb565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190613e6d565b61105f565b005b34801561046d57600080fd5b50610488600480360381019061048391906140bb565b61107f565b005b34801561049657600080fd5b506104b160048036038101906104ac91906140bb565b611105565b6040516104be91906152cb565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e99190614076565b611158565b005b3480156104fc57600080fd5b506105056111ea565b6040516105129190614e33565b60405180910390f35b34801561052757600080fd5b50610542600480360381019061053d91906140bb565b6111fd565b60405161054f9190614dcc565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a9190613e08565b611213565b60405161058c91906152cb565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b79190613e08565b6112d8565b6040516105c991906152cb565b60405180910390f35b3480156105de57600080fd5b506105e76113c1565b005b3480156105f557600080fd5b506105fe611449565b60405161060b91906152cb565b60405180910390f35b34801561062057600080fd5b50610629611471565b60405161063691906152cb565b60405180910390f35b610659600480360381019061065491906140bb565b611526565b005b34801561066757600080fd5b5061067061181c565b60405161067d9190614dcc565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a891906140bb565b611845565b6040516106ba91906152b0565b60405180910390f35b3480156106cf57600080fd5b506106ea60048036038101906106e59190614076565b61185d565b005b3480156106f857600080fd5b506107016118ef565b60405161070e9190614e4e565b60405180910390f35b34801561072357600080fd5b5061072c611981565b005b34801561073a57600080fd5b50610755600480360381019061075091906140bb565b611a29565b005b610771600480360381019061076c91906140bb565b611aaf565b005b34801561077f57600080fd5b50610788611c3e565b60405161079591906152cb565b60405180910390f35b3480156107aa57600080fd5b506107c560048036038101906107c09190613f37565b611c44565b005b3480156107d357600080fd5b506107dc611dc5565b005b3480156107ea57600080fd5b5061080560048036038101906108009190613ebc565b611f46565b005b34801561081357600080fd5b5061082e60048036038101906108299190613f73565b611fa2565b005b34801561083c57600080fd5b50610857600480360381019061085291906140bb565b612091565b6040516108649190614e4e565b60405180910390f35b34801561087957600080fd5b50610882612138565b60405161088f91906152cb565b60405180910390f35b3480156108a457600080fd5b506108bf60048036038101906108ba9190613faf565b61213e565b005b3480156108cd57600080fd5b506108e860048036038101906108e39190613e08565b61237b565b6040516108f591906152cb565b60405180910390f35b34801561090a57600080fd5b5061092560048036038101906109209190613e08565b61238d565b005b34801561093357600080fd5b5061094e60048036038101906109499190613f73565b6124a9565b005b34801561095c57600080fd5b506109656125a8565b60405161097291906152cb565b60405180910390f35b34801561098757600080fd5b506109906125d0565b60405161099d9190614e4e565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c89190613e31565b612662565b6040516109da9190614e33565b60405180910390f35b3480156109ef57600080fd5b50610a0a6004803603810190610a059190613e08565b6126f6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ad757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b3f57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b4f5750610b4e826127ee565b5b9050919050565b606060028054610b6590615634565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9190615634565b8015610bde5780601f10610bb357610100808354040283529160200191610bde565b820191906000526020600020905b815481529060010190602001808311610bc157829003601f168201915b5050505050905090565b6000610bf382612858565b610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990615250565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c78826111fd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce090615110565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d08612866565b73ffffffffffffffffffffffffffffffffffffffff161480610d375750610d3681610d31612866565b612662565b5b610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90615010565b60405180910390fd5b610d8183838361286e565b505050565b600c5481565b610d94612866565b73ffffffffffffffffffffffffffffffffffffffff16610db261181c565b73ffffffffffffffffffffffffffffffffffffffff1614610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff90615090565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b6000600154905090565b610e49838383612920565b505050565b600e60009054906101000a900460ff1681565b6000610e6c836112d8565b8210610ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea490614e70565b60405180910390fd5b6000610eb7610e34565b905060008060005b8381101561101d576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610fb157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110095786841415610ffa578195505050505050611059565b838061100590615666565b9450505b50808061101590615666565b915050610ebf565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611050906151b0565b60405180910390fd5b92915050565b61107a83838360405180602001604052806000815250611f46565b505050565b611087612866565b73ffffffffffffffffffffffffffffffffffffffff166110a561181c565b73ffffffffffffffffffffffffffffffffffffffff16146110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f290615090565b60405180910390fd5b80600c8190555050565b600061110f610e34565b8210611150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114790614f50565b60405180910390fd5b819050919050565b611160612866565b73ffffffffffffffffffffffffffffffffffffffff1661117e61181c565b73ffffffffffffffffffffffffffffffffffffffff16146111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb90615090565b60405180910390fd5b8181600a91906111e5929190613b7c565b505050565b600e60019054906101000a900460ff1681565b600061120882612ed9565b600001519050919050565b600061121d612866565b73ffffffffffffffffffffffffffffffffffffffff1661123b61181c565b73ffffffffffffffffffffffffffffffffffffffff1614611291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128890615090565b60405180910390fd5b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611349576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134090615050565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113c9612866565b73ffffffffffffffffffffffffffffffffffffffff166113e761181c565b73ffffffffffffffffffffffffffffffffffffffff161461143d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143490615090565b60405180910390fd5b61144760006130dc565b565b60007f0000000000000000000000000000000000000000000000000000000000000378905090565b60003373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d8906151d0565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158b906151d0565b60405180910390fd5b600e60019054906101000a900460ff166115e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115da90615030565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a8161160e3361237b565b61161891906153db565b1115611659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165090614f30565b60405180910390fd5b80600d546116679190615462565b3410156116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a090614fd0565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000378816116d3610e34565b6116dd91906153db565b111561171e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171590614e90565b60405180910390fd5b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156117a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179790615170565b60405180910390fd5b80600f60008282546117b291906154f0565b9250508190555080601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461180891906154f0565b9250508190555061181933826131a0565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61184d613c02565b61185682612ed9565b9050919050565b611865612866565b73ffffffffffffffffffffffffffffffffffffffff1661188361181c565b73ffffffffffffffffffffffffffffffffffffffff16146118d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d090615090565b60405180910390fd5b8181600b91906118ea929190613b7c565b505050565b6060600380546118fe90615634565b80601f016020809104026020016040519081016040528092919081815260200182805461192a90615634565b80156119775780601f1061194c57610100808354040283529160200191611977565b820191906000526020600020905b81548152906001019060200180831161195a57829003601f168201915b5050505050905090565b611989612866565b73ffffffffffffffffffffffffffffffffffffffff166119a761181c565b73ffffffffffffffffffffffffffffffffffffffff16146119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f490615090565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b611a31612866565b73ffffffffffffffffffffffffffffffffffffffff16611a4f61181c565b73ffffffffffffffffffffffffffffffffffffffff1614611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90615090565b60405180910390fd5b80600d8190555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b14906151d0565b60405180910390fd5b600e60009054906101000a900460ff16611b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6390615290565b60405180910390fd5b80600c54611b7a9190615462565b341015611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb390614fb0565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000037881611be6610e34565b611bf091906153db565b1115611c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2890614eb0565b60405180910390fd5b611c3b33826131a0565b50565b600d5481565b611c4c612866565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb1906150d0565b60405180910390fd5b8060076000611cc7612866565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d74612866565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611db99190614e33565b60405180910390a35050565b611dcd612866565b73ffffffffffffffffffffffffffffffffffffffff16611deb61181c565b73ffffffffffffffffffffffffffffffffffffffff1614611e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3890615090565b60405180910390fd5b60026009541415611e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7e906151f0565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051611eb590614db7565b60006040518083038185875af1925050503d8060008114611ef2576040519150601f19603f3d011682016040523d82523d6000602084013e611ef7565b606091505b5050905080611f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3290614ef0565b60405180910390fd5b506001600981905550565b611f51848484612920565b611f5d848484846131be565b611f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9390615130565b60405180910390fd5b50505050565b611faa612866565b73ffffffffffffffffffffffffffffffffffffffff16611fc861181c565b73ffffffffffffffffffffffffffffffffffffffff161461201e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201590615090565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461206d91906153db565b9250508190555080600f600082825461208691906153db565b925050819055505050565b606061209c82612858565b6120db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d2906150b0565b60405180910390fd5b60006120e5613355565b905060008151116121055760405180602001604052806000815250612130565b8061210f846133e7565b604051602001612120929190614d93565b6040516020818303038152906040525b915050919050565b60085481565b612146612866565b73ffffffffffffffffffffffffffffffffffffffff1661216461181c565b73ffffffffffffffffffffffffffffffffffffffff16146121ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b190615090565b60405180910390fd5b6000848490509050600083839050868690501461220c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220390614ff0565b60405180910390fd5b60005b8281101561235957848482818110612250577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013560106000898985818110612294577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906122a99190613e08565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122f291906153db565b92505081905550848482818110612332577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358261234491906153db565b9150808061235190615666565b91505061220f565b5080600f600082825461236c91906153db565b92505081905550505050505050565b600061238682613594565b9050919050565b612395612866565b73ffffffffffffffffffffffffffffffffffffffff166123b361181c565b73ffffffffffffffffffffffffffffffffffffffff1614612409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240090615090565b60405180910390fd5b601060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600f600082825461245a91906154f0565b925050819055506000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b6124b1612866565b73ffffffffffffffffffffffffffffffffffffffff166124cf61181c565b73ffffffffffffffffffffffffffffffffffffffff1614612525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251c90615090565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000003788161254f610e34565b61255991906153db565b111561259a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259190615230565b60405180910390fd5b6125a482826131a0565b5050565b60007f000000000000000000000000000000000000000000000000000000000000000a905090565b6060600b80546125df90615634565b80601f016020809104026020016040519081016040528092919081815260200182805461260b90615634565b80156126585780601f1061262d57610100808354040283529160200191612658565b820191906000526020600020905b81548152906001019060200180831161263b57829003601f168201915b5050505050905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6126fe612866565b73ffffffffffffffffffffffffffffffffffffffff1661271c61181c565b73ffffffffffffffffffffffffffffffffffffffff1614612772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276990615090565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d990614ed0565b60405180910390fd5b6127eb816130dc565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061292b82612ed9565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612952612866565b73ffffffffffffffffffffffffffffffffffffffff1614806129ae5750612977612866565b73ffffffffffffffffffffffffffffffffffffffff1661299684610be8565b73ffffffffffffffffffffffffffffffffffffffff16145b806129ca57506129c982600001516129c4612866565b612662565b5b905080612a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a03906150f0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7590615070565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae590614f70565b60405180910390fd5b612afb858585600161367d565b612b0b600084846000015161286e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612b7991906154bc565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612c1d9190615395565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612d2391906153db565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e6957612d9981612858565b15612e68576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ed18686866001613683565b505050505050565b612ee1613c02565b612eea82612858565b612f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2090614f10565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a8310612f8d5760017f000000000000000000000000000000000000000000000000000000000000000a84612f8091906154f0565b612f8a91906153db565b90505b60008390505b81811061309b576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613087578093505050506130d7565b5080806130939061560a565b915050612f93565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ce90615210565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6131ba828260405180602001604052806000815250613689565b5050565b60006131df8473ffffffffffffffffffffffffffffffffffffffff16613b69565b15613348578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613208612866565b8786866040518563ffffffff1660e01b815260040161322a9493929190614de7565b602060405180830381600087803b15801561324457600080fd5b505af192505050801561327557506040513d601f19601f82011682018060405250810190613272919061404d565b60015b6132f8573d80600081146132a5576040519150601f19603f3d011682016040523d82523d6000602084013e6132aa565b606091505b506000815114156132f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e790615130565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061334d565b600190505b949350505050565b6060600a805461336490615634565b80601f016020809104026020016040519081016040528092919081815260200182805461339090615634565b80156133dd5780601f106133b2576101008083540402835291602001916133dd565b820191906000526020600020905b8154815290600101906020018083116133c057829003601f168201915b5050505050905090565b6060600082141561342f576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061358f565b600082905060005b6000821461346157808061344a90615666565b915050600a8261345a9190615431565b9150613437565b60008167ffffffffffffffff8111156134a3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156134d55781602001600182028036833780820191505090505b5090505b60008514613588576001826134ee91906154f0565b9150600a856134fd91906156af565b603061350991906153db565b60f81b818381518110613545577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135819190615431565b94506134d9565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135fc90614f90565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136f790615190565b60405180910390fd5b61370981612858565b15613749576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161374090615150565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a8311156137ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137a390615270565b60405180910390fd5b6137b9600085838661367d565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516138b69190615395565b6fffffffffffffffffffffffffffffffff1681526020018583602001516138dd9190615395565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613b4c57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613aec60008884886131be565b613b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b2290615130565b60405180910390fd5b8180613b3690615666565b9250508080613b4490615666565b915050613a7b565b5080600181905550613b616000878588613683565b505050505050565b600080823b905060008111915050919050565b828054613b8890615634565b90600052602060002090601f016020900481019282613baa5760008555613bf1565b82601f10613bc357803560ff1916838001178555613bf1565b82800160010185558215613bf1579182015b82811115613bf0578235825591602001919060010190613bd5565b5b509050613bfe9190613c3c565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613c55576000816000905550600101613c3d565b5090565b6000613c6c613c6784615317565b6152e6565b905082815260208101848484011115613c8457600080fd5b613c8f8482856155c8565b509392505050565b600081359050613ca6816157ad565b92915050565b60008083601f840112613cbe57600080fd5b8235905067ffffffffffffffff811115613cd757600080fd5b602083019150836020820283011115613cef57600080fd5b9250929050565b60008083601f840112613d0857600080fd5b8235905067ffffffffffffffff811115613d2157600080fd5b602083019150836020820283011115613d3957600080fd5b9250929050565b600081359050613d4f816157c4565b92915050565b600081359050613d64816157db565b92915050565b600081519050613d79816157db565b92915050565b600082601f830112613d9057600080fd5b8135613da0848260208601613c59565b91505092915050565b60008083601f840112613dbb57600080fd5b8235905067ffffffffffffffff811115613dd457600080fd5b602083019150836001820283011115613dec57600080fd5b9250929050565b600081359050613e02816157f2565b92915050565b600060208284031215613e1a57600080fd5b6000613e2884828501613c97565b91505092915050565b60008060408385031215613e4457600080fd5b6000613e5285828601613c97565b9250506020613e6385828601613c97565b9150509250929050565b600080600060608486031215613e8257600080fd5b6000613e9086828701613c97565b9350506020613ea186828701613c97565b9250506040613eb286828701613df3565b9150509250925092565b60008060008060808587031215613ed257600080fd5b6000613ee087828801613c97565b9450506020613ef187828801613c97565b9350506040613f0287828801613df3565b925050606085013567ffffffffffffffff811115613f1f57600080fd5b613f2b87828801613d7f565b91505092959194509250565b60008060408385031215613f4a57600080fd5b6000613f5885828601613c97565b9250506020613f6985828601613d40565b9150509250929050565b60008060408385031215613f8657600080fd5b6000613f9485828601613c97565b9250506020613fa585828601613df3565b9150509250929050565b60008060008060408587031215613fc557600080fd5b600085013567ffffffffffffffff811115613fdf57600080fd5b613feb87828801613cac565b9450945050602085013567ffffffffffffffff81111561400a57600080fd5b61401687828801613cf6565b925092505092959194509250565b60006020828403121561403657600080fd5b600061404484828501613d55565b91505092915050565b60006020828403121561405f57600080fd5b600061406d84828501613d6a565b91505092915050565b6000806020838503121561408957600080fd5b600083013567ffffffffffffffff8111156140a357600080fd5b6140af85828601613da9565b92509250509250929050565b6000602082840312156140cd57600080fd5b60006140db84828501613df3565b91505092915050565b6140ed81615524565b82525050565b6140fc81615524565b82525050565b61410b81615536565b82525050565b600061411c82615347565b614126818561535d565b93506141368185602086016155d7565b61413f8161579c565b840191505092915050565b600061415582615352565b61415f8185615379565b935061416f8185602086016155d7565b6141788161579c565b840191505092915050565b600061418e82615352565b614198818561538a565b93506141a88185602086016155d7565b80840191505092915050565b60006141c1602283615379565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614227601b83615379565b91507f4d617820737570706c79206f6e207265736572766564206d696e7400000000006000830152602082019050919050565b6000614267601983615379565b91507f4d617820737570706c79206f6e207075626c6963206d696e74000000000000006000830152602082019050919050565b60006142a7602683615379565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061430d600f83615379565b91507f5472616e73666572206661696c656400000000000000000000000000000000006000830152602082019050919050565b600061434d602a83615379565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b60006143b3601e83615379565b91507f45786365656473206c696d697420696e207265736572766564206d696e7400006000830152602082019050919050565b60006143f3602383615379565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614459602583615379565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144bf603183615379565b91507f455243373231413a206e756d626572206d696e74656420717565727920666f7260008301527f20746865207a65726f20616464726573730000000000000000000000000000006020830152604082019050919050565b6000614525602083615379565b91507f5072696365206e6f7420656e6f75676820666f72207075626c6963206d696e746000830152602082019050919050565b6000614565602183615379565b91507f5072696365206e6f7420656e6f75676820666f722072657365727665206d696e60008301527f74000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145cb600e83615379565b91507f4172726179206d69736d617463680000000000000000000000000000000000006000830152602082019050919050565b600061460b603983615379565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b6000614671601883615379565b91507f5265736572766564206d696e74206e6f742061637469766500000000000000006000830152602082019050919050565b60006146b1602b83615379565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b6000614717602683615379565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061477d602083615379565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006147bd602f83615379565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614823601a83615379565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b6000614863603283615379565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b60006148c9602283615379565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061492f60008361536e565b9150600082019050919050565b6000614949603383615379565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b60006149af601d83615379565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b60006149ef602983615379565b91507f596f7520646f206e6f7420686176652074686174206d616e792072657365727660008301527f656420746f6b656e7300000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a55602183615379565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614abb602e83615379565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b6000614b21601a83615379565b91507f43616c6c657220697320616e6f7468657220636f6e74726163740000000000006000830152602082019050919050565b6000614b61601f83615379565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6000614ba1602f83615379565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614c07601883615379565b91507f4d617820737570706c79206f6e2061646d696e206d696e7400000000000000006000830152602082019050919050565b6000614c47602d83615379565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b6000614cad602283615379565b91507f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008301527f67680000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d13601683615379565b91507f5075626c6963206d696e74206e6f7420616374697665000000000000000000006000830152602082019050919050565b604082016000820151614d5c60008501826140e4565b506020820151614d6f6020850182614d84565b50505050565b614d7e816155aa565b82525050565b614d8d816155b4565b82525050565b6000614d9f8285614183565b9150614dab8284614183565b91508190509392505050565b6000614dc282614922565b9150819050919050565b6000602082019050614de160008301846140f3565b92915050565b6000608082019050614dfc60008301876140f3565b614e0960208301866140f3565b614e166040830185614d75565b8181036060830152614e288184614111565b905095945050505050565b6000602082019050614e486000830184614102565b92915050565b60006020820190508181036000830152614e68818461414a565b905092915050565b60006020820190508181036000830152614e89816141b4565b9050919050565b60006020820190508181036000830152614ea98161421a565b9050919050565b60006020820190508181036000830152614ec98161425a565b9050919050565b60006020820190508181036000830152614ee98161429a565b9050919050565b60006020820190508181036000830152614f0981614300565b9050919050565b60006020820190508181036000830152614f2981614340565b9050919050565b60006020820190508181036000830152614f49816143a6565b9050919050565b60006020820190508181036000830152614f69816143e6565b9050919050565b60006020820190508181036000830152614f898161444c565b9050919050565b60006020820190508181036000830152614fa9816144b2565b9050919050565b60006020820190508181036000830152614fc981614518565b9050919050565b60006020820190508181036000830152614fe981614558565b9050919050565b60006020820190508181036000830152615009816145be565b9050919050565b60006020820190508181036000830152615029816145fe565b9050919050565b6000602082019050818103600083015261504981614664565b9050919050565b60006020820190508181036000830152615069816146a4565b9050919050565b600060208201905081810360008301526150898161470a565b9050919050565b600060208201905081810360008301526150a981614770565b9050919050565b600060208201905081810360008301526150c9816147b0565b9050919050565b600060208201905081810360008301526150e981614816565b9050919050565b6000602082019050818103600083015261510981614856565b9050919050565b60006020820190508181036000830152615129816148bc565b9050919050565b600060208201905081810360008301526151498161493c565b9050919050565b60006020820190508181036000830152615169816149a2565b9050919050565b60006020820190508181036000830152615189816149e2565b9050919050565b600060208201905081810360008301526151a981614a48565b9050919050565b600060208201905081810360008301526151c981614aae565b9050919050565b600060208201905081810360008301526151e981614b14565b9050919050565b6000602082019050818103600083015261520981614b54565b9050919050565b6000602082019050818103600083015261522981614b94565b9050919050565b6000602082019050818103600083015261524981614bfa565b9050919050565b6000602082019050818103600083015261526981614c3a565b9050919050565b6000602082019050818103600083015261528981614ca0565b9050919050565b600060208201905081810360008301526152a981614d06565b9050919050565b60006040820190506152c56000830184614d46565b92915050565b60006020820190506152e06000830184614d75565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561530d5761530c61576d565b5b8060405250919050565b600067ffffffffffffffff8211156153325761533161576d565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006153a08261556e565b91506153ab8361556e565b9250826fffffffffffffffffffffffffffffffff038211156153d0576153cf6156e0565b5b828201905092915050565b60006153e6826155aa565b91506153f1836155aa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615426576154256156e0565b5b828201905092915050565b600061543c826155aa565b9150615447836155aa565b9250826154575761545661570f565b5b828204905092915050565b600061546d826155aa565b9150615478836155aa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156154b1576154b06156e0565b5b828202905092915050565b60006154c78261556e565b91506154d28361556e565b9250828210156154e5576154e46156e0565b5b828203905092915050565b60006154fb826155aa565b9150615506836155aa565b925082821015615519576155186156e0565b5b828203905092915050565b600061552f8261558a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156155f55780820151818401526020810190506155da565b83811115615604576000848401525b50505050565b6000615615826155aa565b91506000821415615629576156286156e0565b5b600182039050919050565b6000600282049050600182168061564c57607f821691505b602082108114156156605761565f61573e565b5b50919050565b6000615671826155aa565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156156a4576156a36156e0565b5b600182019050919050565b60006156ba826155aa565b91506156c5836155aa565b9250826156d5576156d461570f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6157b681615524565b81146157c157600080fd5b50565b6157cd81615536565b81146157d857600080fd5b50565b6157e481615542565b81146157ef57600080fd5b50565b6157fb816155aa565b811461580657600080fd5b5056fea2646970667358221220eb99464f33211b94c087d8c8a7da6db18322fc391f5cb95841ed12f39db2ab8264736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000378000000000000000000000000000000000000000000000000000000000000000a
-----Decoded View---------------
Arg [0] : collectionSize_ (uint256): 888
Arg [1] : maxBatchSize_ (uint256): 10
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000378
Arg [1] : 000000000000000000000000000000000000000000000000000000000000000a
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.