ERC-721
Overview
Max Total Supply
3,334 PU
Holders
1,582
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 PULoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PepeUnlimited
Compiler Version
v0.8.15+commit.e14f2714
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "./ERC721A.sol"; /** * Pepe Unlimited * * A collection with great and unique Pepe art & a simple and different approach for cheap minting. * No presale, anyone can mint for free (+ gas). * * Max. supply 3334 Pepes, max. 2 mints per wallet. * * Important Details (How to mint): * * With the combined forces of the mint-on-receive principle and Azuki's EIP721A extension, * minting - especially batch minting - on Mainnet has never been cheaper. * * This collection demonstrates additional gas savings of 20-35% on top of the known EIP721A savings. * * Here is how it works: * * Instead of calling a mint function, simply send _zero_ ETH for minting 2 NFTs to the contract (max. 2 per wallet). * * Once the tx completed, the senders will find their NFTs in their wallets. * * If you get an extremly high gas suggestion from your wallet OR the tx fails, it means Pepe is minted out or you reached the max. amount per wallet. * * By leaving out the mint function - and with it the function parameters - the minting process will save substantial amounts of gas. * * Additionally, this collection derives from EIP721A and provides quasi-constant minting costs. * * This collection is fully erc721 compliant. * * Once this collection is minted out, Pepe Unlimited will provide unique art for collectors with interesting traits, rarities and potential use-cases (aka reveal). * * Mint instructions on: https://pepeunlimited.eth/ * * Mint-on-receive is a new type of mint and has been first seen on https://rarity.garden/ */ contract PepeUnlimited is ERC721A { using Strings for uint256; uint256 public _total_max; address public owner; string public _baseTokenUri; mapping(address => bool) public minters; constructor( string memory name, string memory symbol, string memory baseTokenURI, uint256 max_batch, uint256 collection_size ) ERC721A(name, symbol, max_batch, collection_size) { _baseTokenUri = baseTokenURI; owner = _msgSender(); _total_max = collection_size; } receive() external payable { require(msg.value == 0, "receive: pepe doesn't need any ETH."); require(!minters[_msgSender()], "receive: wallet minted its Pepes already."); require(totalSupply() + 2 <= _total_max, "receive(): max. supply reached."); minters[_msgSender()] = true; _safeMint(_msgSender(), 2, ""); } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenUri; } 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(), ".json")) : "https://rarity.garden/media/pepe/prereveal.json"; } function setBaseUri(string calldata baseTokenURI) public virtual { require(owner == _msgSender(), "setBaseUri: must be owner to set base uri."); _baseTokenUri = baseTokenURI; } function transferOwnership(address newOwner) external { require(_msgSender() == owner, "transferOwnership: not the owner"); owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; 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 ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 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 maxBatchSize_, uint256 collectionSize_ ) { 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 = ERC721A.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/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/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 (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseTokenURI","type":"string"},{"internalType":"uint256","name":"max_batch","type":"uint256"},{"internalType":"uint256","name":"collection_size","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_total_max","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"baseTokenURI","type":"string"}],"name":"setBaseUri","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526000805560006007553480156200001a57600080fd5b506040516200496c3803806200496c83398181016040528101906200004091906200035c565b84848383600081116200008a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200008190620004c8565b60405180910390fd5b60008211620000d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000c79062000560565b60405180910390fd5b8360019081620000e19190620007c3565b508260029081620000f39190620007c3565b508160a0818152505080608081815250505050505082600a9081620001199190620007c3565b506200012a6200017c60201b60201c565b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806008819055505050505050620008aa565b600033905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620001ed82620001a2565b810181811067ffffffffffffffff821117156200020f576200020e620001b3565b5b80604052505050565b60006200022462000184565b9050620002328282620001e2565b919050565b600067ffffffffffffffff821115620002555762000254620001b3565b5b6200026082620001a2565b9050602081019050919050565b60005b838110156200028d57808201518184015260208101905062000270565b838111156200029d576000848401525b50505050565b6000620002ba620002b48462000237565b62000218565b905082815260208101848484011115620002d957620002d86200019d565b5b620002e68482856200026d565b509392505050565b600082601f83011262000306576200030562000198565b5b815162000318848260208601620002a3565b91505092915050565b6000819050919050565b620003368162000321565b81146200034257600080fd5b50565b60008151905062000356816200032b565b92915050565b600080600080600060a086880312156200037b576200037a6200018e565b5b600086015167ffffffffffffffff8111156200039c576200039b62000193565b5b620003aa88828901620002ee565b955050602086015167ffffffffffffffff811115620003ce57620003cd62000193565b5b620003dc88828901620002ee565b945050604086015167ffffffffffffffff8111156200040057620003ff62000193565b5b6200040e88828901620002ee565b9350506060620004218882890162000345565b9250506080620004348882890162000345565b9150509295509295909350565b600082825260208201905092915050565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b6000620004b0602e8362000441565b9150620004bd8262000452565b604082019050919050565b60006020820190508181036000830152620004e381620004a1565b9050919050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b60006200054860278362000441565b91506200055582620004ea565b604082019050919050565b600060208201905081810360008301526200057b8162000539565b9050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005d557607f821691505b602082108103620005eb57620005ea6200058d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006557fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000616565b62000661868362000616565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620006a46200069e620006988462000321565b62000679565b62000321565b9050919050565b6000819050919050565b620006c08362000683565b620006d8620006cf82620006ab565b84845462000623565b825550505050565b600090565b620006ef620006e0565b620006fc818484620006b5565b505050565b5b81811015620007245762000718600082620006e5565b60018101905062000702565b5050565b601f82111562000773576200073d81620005f1565b620007488462000606565b8101602085101562000758578190505b62000770620007678562000606565b83018262000701565b50505b505050565b600082821c905092915050565b6000620007986000198460080262000778565b1980831691505092915050565b6000620007b3838362000785565b9150826002028217905092915050565b620007ce8262000582565b67ffffffffffffffff811115620007ea57620007e9620001b3565b5b620007f68254620005bc565b6200080382828562000728565b600060209050601f8311600181146200083b576000841562000826578287015190505b620008328582620007a5565b865550620008a2565b601f1984166200084b86620005f1565b60005b8281101562000875578489015182556001820191506020850194506020810190506200084e565b8683101562000895578489015162000891601f89168262000785565b8355505b6001600288020188555050505b505050505050565b60805160a051614091620008db600039600081816108420152818161223701526122600152600050506140916000f3fe6080604052600436106101445760003560e01c80636352211e116100b6578063b88d4fde1161006f578063b88d4fde1461063d578063c87b56dd14610666578063d7224ba0146106a3578063e985e9c5146106ce578063f2fde38b1461070b578063f46eccc414610734576102fb565b80636352211e1461051b57806370a08231146105585780638da5cb5b1461059557806395d89b41146105c0578063a0bcfc7f146105eb578063a22cb46514610614576102fb565b806323b872dd1161010857806323b872dd146103f95780632f745c591461042257806342842e0e1461045f57806348200604146104885780634f6ccce7146104b35780635ded1055146104f0576102fb565b806301ffc9a71461030057806306fdde031461033d578063081812fc14610368578063095ea7b3146103a557806318160ddd146103ce576102fb565b366102fb576000341461018c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610183906126b8565b60405180910390fd5b600b6000610198610771565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610220576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102179061274a565b60405180910390fd5b600854600261022d610779565b61023791906127a3565b1115610278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161026f90612845565b60405180910390fd5b6001600b6000610286610771565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506102f96102e2610771565b600260405180602001604052806000815250610782565b005b600080fd5b34801561030c57600080fd5b50610327600480360381019061032291906128d1565b610c60565b6040516103349190612919565b60405180910390f35b34801561034957600080fd5b50610352610daa565b60405161035f91906129bc565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a9190612a0a565b610e3c565b60405161039c9190612a78565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c79190612abf565b610ec1565b005b3480156103da57600080fd5b506103e3610779565b6040516103f09190612b0e565b60405180910390f35b34801561040557600080fd5b50610420600480360381019061041b9190612b29565b610fd9565b005b34801561042e57600080fd5b5061044960048036038101906104449190612abf565b610fe9565b6040516104569190612b0e565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190612b29565b6111e5565b005b34801561049457600080fd5b5061049d611205565b6040516104aa91906129bc565b60405180910390f35b3480156104bf57600080fd5b506104da60048036038101906104d59190612a0a565b611293565b6040516104e79190612b0e565b60405180910390f35b3480156104fc57600080fd5b506105056112e6565b6040516105129190612b0e565b60405180910390f35b34801561052757600080fd5b50610542600480360381019061053d9190612a0a565b6112ec565b60405161054f9190612a78565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a9190612b7c565b611302565b60405161058c9190612b0e565b60405180910390f35b3480156105a157600080fd5b506105aa6113ea565b6040516105b79190612a78565b60405180910390f35b3480156105cc57600080fd5b506105d5611410565b6040516105e291906129bc565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612c0e565b6114a2565b005b34801561062057600080fd5b5061063b60048036038101906106369190612c87565b61154f565b005b34801561064957600080fd5b50610664600480360381019061065f9190612df7565b6116cf565b005b34801561067257600080fd5b5061068d60048036038101906106889190612a0a565b61172b565b60405161069a91906129bc565b60405180910390f35b3480156106af57600080fd5b506106b86117db565b6040516106c59190612b0e565b60405180910390f35b3480156106da57600080fd5b506106f560048036038101906106f09190612e7a565b6117e1565b6040516107029190612919565b60405180910390f35b34801561071757600080fd5b50610732600480360381019061072d9190612b7c565b611875565b005b34801561074057600080fd5b5061075b60048036038101906107569190612b7c565b611950565b6040516107689190612919565b60405180910390f35b600033905090565b60008054905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036107f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ee90612f2c565b60405180910390fd5b61080081611970565b15610840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083790612f98565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156108a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089a9061302a565b60405180910390fd5b6108b0600085838661197d565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516109ad9190613066565b6fffffffffffffffffffffffffffffffff1681526020018583602001516109d49190613066565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015610c4357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610be36000888488611983565b610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c199061311e565b60405180910390fd5b8180610c2d9061313e565b9250508080610c3b9061313e565b915050610b72565b5080600081905550610c586000878588611b0a565b505050505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d2b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d9357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610da35750610da282611b10565b5b9050919050565b606060018054610db9906131b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610de5906131b5565b8015610e325780601f10610e0757610100808354040283529160200191610e32565b820191906000526020600020905b815481529060010190602001808311610e1557829003601f168201915b5050505050905090565b6000610e4782611970565b610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d90613258565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ecc826112ec565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f33906132ea565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f5b610771565b73ffffffffffffffffffffffffffffffffffffffff161480610f8a5750610f8981610f84610771565b6117e1565b5b610fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc09061337c565b60405180910390fd5b610fd4838383611b7a565b505050565b610fe4838383611c2c565b505050565b6000610ff483611302565b8210611035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102c9061340e565b60405180910390fd5b600061103f610779565b905060008060005b838110156111a3576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461113957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361118f578684036111805781955050505050506111df565b838061118b9061313e565b9450505b50808061119b9061313e565b915050611047565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d6906134a0565b60405180910390fd5b92915050565b611200838383604051806020016040528060008152506116cf565b505050565b600a8054611212906131b5565b80601f016020809104026020016040519081016040528092919081815260200182805461123e906131b5565b801561128b5780601f106112605761010080835404028352916020019161128b565b820191906000526020600020905b81548152906001019060200180831161126e57829003601f168201915b505050505081565b600061129d610779565b82106112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d590613532565b60405180910390fd5b819050919050565b60085481565b60006112f7826121e3565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611372576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611369906135c4565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606002805461141f906131b5565b80601f016020809104026020016040519081016040528092919081815260200182805461144b906131b5565b80156114985780601f1061146d57610100808354040283529160200191611498565b820191906000526020600020905b81548152906001019060200180831161147b57829003601f168201915b5050505050905090565b6114aa610771565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611539576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153090613656565b60405180910390fd5b8181600a918261154a92919061382d565b505050565b611557610771565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bb90613949565b60405180910390fd5b80600660006115d1610771565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661167e610771565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116c39190612919565b60405180910390a35050565b6116da848484611c2c565b6116e684848484611983565b611725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171c9061311e565b60405180910390fd5b50505050565b606061173682611970565b611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c906139db565b60405180910390fd5b600061177f6123e6565b905060008151116117a8576040518060600160405280602f815260200161402d602f91396117d3565b806117b284612478565b6040516020016117c3929190613a83565b6040516020818303038152906040525b915050919050565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166118b6610771565b73ffffffffffffffffffffffffffffffffffffffff161461190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190390613afe565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b6020528060005260406000206000915054906101000a900460ff1681565b6000805482109050919050565b50505050565b60006119a48473ffffffffffffffffffffffffffffffffffffffff166125d8565b15611afd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119cd610771565b8786866040518563ffffffff1660e01b81526004016119ef9493929190613b73565b6020604051808303816000875af1925050508015611a2b57506040513d601f19601f82011682018060405250810190611a289190613bd4565b60015b611aad573d8060008114611a5b576040519150601f19603f3d011682016040523d82523d6000602084013e611a60565b606091505b506000815103611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c9061311e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611b02565b600190505b949350505050565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611c37826121e3565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611c5e610771565b73ffffffffffffffffffffffffffffffffffffffff161480611cba5750611c83610771565b73ffffffffffffffffffffffffffffffffffffffff16611ca284610e3c565b73ffffffffffffffffffffffffffffffffffffffff16145b80611cd65750611cd58260000151611cd0610771565b6117e1565b5b905080611d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0f90613c73565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8190613d05565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df090613d97565b60405180910390fd5b611e06858585600161197d565b611e166000848460000151611b7a565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611e849190613db7565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f289190613066565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461202e91906127a3565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612173576120a381611970565b15612172576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121db8686866001611b0a565b505050505050565b6121eb6125fb565b6121f482611970565b612233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222a90613e5d565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106122975760017f00000000000000000000000000000000000000000000000000000000000000008461228a9190613e7d565b61229491906127a3565b90505b60008390505b8181106123a5576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612391578093505050506123e1565b50808061239d90613eb1565b91505061229d565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d890613f4c565b60405180910390fd5b919050565b6060600a80546123f5906131b5565b80601f0160208091040260200160405190810160405280929190818152602001828054612421906131b5565b801561246e5780601f106124435761010080835404028352916020019161246e565b820191906000526020600020905b81548152906001019060200180831161245157829003601f168201915b5050505050905090565b6060600082036124bf576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125d3565b600082905060005b600082146124f15780806124da9061313e565b915050600a826124ea9190613f9b565b91506124c7565b60008167ffffffffffffffff81111561250d5761250c612ccc565b5b6040519080825280601f01601f19166020018201604052801561253f5781602001600182028036833780820191505090505b5090505b600085146125cc576001826125589190613e7d565b9150600a856125679190613fcc565b603061257391906127a3565b60f81b81838151811061258957612588613ffd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125c59190613f9b565b9450612543565b8093505050505b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b600082825260208201905092915050565b7f726563656976653a207065706520646f65736e2774206e65656420616e79204560008201527f54482e0000000000000000000000000000000000000000000000000000000000602082015250565b60006126a2602383612635565b91506126ad82612646565b604082019050919050565b600060208201905081810360008301526126d181612695565b9050919050565b7f726563656976653a2077616c6c6574206d696e7465642069747320506570657360008201527f20616c72656164792e0000000000000000000000000000000000000000000000602082015250565b6000612734602983612635565b915061273f826126d8565b604082019050919050565b6000602082019050818103600083015261276381612727565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127ae8261276a565b91506127b98361276a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156127ee576127ed612774565b5b828201905092915050565b7f7265636569766528293a206d61782e20737570706c7920726561636865642e00600082015250565b600061282f601f83612635565b915061283a826127f9565b602082019050919050565b6000602082019050818103600083015261285e81612822565b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128ae81612879565b81146128b957600080fd5b50565b6000813590506128cb816128a5565b92915050565b6000602082840312156128e7576128e661286f565b5b60006128f5848285016128bc565b91505092915050565b60008115159050919050565b612913816128fe565b82525050565b600060208201905061292e600083018461290a565b92915050565b600081519050919050565b60005b8381101561295d578082015181840152602081019050612942565b8381111561296c576000848401525b50505050565b6000601f19601f8301169050919050565b600061298e82612934565b6129988185612635565b93506129a881856020860161293f565b6129b181612972565b840191505092915050565b600060208201905081810360008301526129d68184612983565b905092915050565b6129e78161276a565b81146129f257600080fd5b50565b600081359050612a04816129de565b92915050565b600060208284031215612a2057612a1f61286f565b5b6000612a2e848285016129f5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a6282612a37565b9050919050565b612a7281612a57565b82525050565b6000602082019050612a8d6000830184612a69565b92915050565b612a9c81612a57565b8114612aa757600080fd5b50565b600081359050612ab981612a93565b92915050565b60008060408385031215612ad657612ad561286f565b5b6000612ae485828601612aaa565b9250506020612af5858286016129f5565b9150509250929050565b612b088161276a565b82525050565b6000602082019050612b236000830184612aff565b92915050565b600080600060608486031215612b4257612b4161286f565b5b6000612b5086828701612aaa565b9350506020612b6186828701612aaa565b9250506040612b72868287016129f5565b9150509250925092565b600060208284031215612b9257612b9161286f565b5b6000612ba084828501612aaa565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612bce57612bcd612ba9565b5b8235905067ffffffffffffffff811115612beb57612bea612bae565b5b602083019150836001820283011115612c0757612c06612bb3565b5b9250929050565b60008060208385031215612c2557612c2461286f565b5b600083013567ffffffffffffffff811115612c4357612c42612874565b5b612c4f85828601612bb8565b92509250509250929050565b612c64816128fe565b8114612c6f57600080fd5b50565b600081359050612c8181612c5b565b92915050565b60008060408385031215612c9e57612c9d61286f565b5b6000612cac85828601612aaa565b9250506020612cbd85828601612c72565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d0482612972565b810181811067ffffffffffffffff82111715612d2357612d22612ccc565b5b80604052505050565b6000612d36612865565b9050612d428282612cfb565b919050565b600067ffffffffffffffff821115612d6257612d61612ccc565b5b612d6b82612972565b9050602081019050919050565b82818337600083830152505050565b6000612d9a612d9584612d47565b612d2c565b905082815260208101848484011115612db657612db5612cc7565b5b612dc1848285612d78565b509392505050565b600082601f830112612dde57612ddd612ba9565b5b8135612dee848260208601612d87565b91505092915050565b60008060008060808587031215612e1157612e1061286f565b5b6000612e1f87828801612aaa565b9450506020612e3087828801612aaa565b9350506040612e41878288016129f5565b925050606085013567ffffffffffffffff811115612e6257612e61612874565b5b612e6e87828801612dc9565b91505092959194509250565b60008060408385031215612e9157612e9061286f565b5b6000612e9f85828601612aaa565b9250506020612eb085828601612aaa565b9150509250929050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f16602183612635565b9150612f2182612eba565b604082019050919050565b60006020820190508181036000830152612f4581612f09565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000612f82601d83612635565b9150612f8d82612f4c565b602082019050919050565b60006020820190508181036000830152612fb181612f75565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000613014602283612635565b915061301f82612fb8565b604082019050919050565b6000602082019050818103600083015261304381613007565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006130718261304a565b915061307c8361304a565b9250826fffffffffffffffffffffffffffffffff038211156130a1576130a0612774565b5b828201905092915050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613108603383612635565b9150613113826130ac565b604082019050919050565b60006020820190508181036000830152613137816130fb565b9050919050565b60006131498261276a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361317b5761317a612774565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131cd57607f821691505b6020821081036131e0576131df613186565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613242602d83612635565b915061324d826131e6565b604082019050919050565b6000602082019050818103600083015261327181613235565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006132d4602283612635565b91506132df82613278565b604082019050919050565b60006020820190508181036000830152613303816132c7565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613366603983612635565b91506133718261330a565b604082019050919050565b6000602082019050818103600083015261339581613359565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006133f8602283612635565b91506134038261339c565b604082019050919050565b60006020820190508181036000830152613427816133eb565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b600061348a602e83612635565b91506134958261342e565b604082019050919050565b600060208201905081810360008301526134b98161347d565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b600061351c602383612635565b9150613527826134c0565b604082019050919050565b6000602082019050818103600083015261354b8161350f565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006135ae602b83612635565b91506135b982613552565b604082019050919050565b600060208201905081810360008301526135dd816135a1565b9050919050565b7f736574426173655572693a206d757374206265206f776e657220746f2073657460008201527f2062617365207572692e00000000000000000000000000000000000000000000602082015250565b6000613640602a83612635565b915061364b826135e4565b604082019050919050565b6000602082019050818103600083015261366f81613633565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026136e37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826136a6565b6136ed86836136a6565b95508019841693508086168417925050509392505050565b6000819050919050565b600061372a6137256137208461276a565b613705565b61276a565b9050919050565b6000819050919050565b6137448361370f565b61375861375082613731565b8484546136b3565b825550505050565b600090565b61376d613760565b61377881848461373b565b505050565b5b8181101561379c57613791600082613765565b60018101905061377e565b5050565b601f8211156137e1576137b281613681565b6137bb84613696565b810160208510156137ca578190505b6137de6137d685613696565b83018261377d565b50505b505050565b600082821c905092915050565b6000613804600019846008026137e6565b1980831691505092915050565b600061381d83836137f3565b9150826002028217905092915050565b6138378383613676565b67ffffffffffffffff8111156138505761384f612ccc565b5b61385a82546131b5565b6138658282856137a0565b6000601f8311600181146138945760008415613882578287013590505b61388c8582613811565b8655506138f4565b601f1984166138a286613681565b60005b828110156138ca578489013582556001820191506020850194506020810190506138a5565b868310156138e757848901356138e3601f8916826137f3565b8355505b6001600288020188555050505b50505050505050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613933601a83612635565b915061393e826138fd565b602082019050919050565b6000602082019050818103600083015261396281613926565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006139c5602f83612635565b91506139d082613969565b604082019050919050565b600060208201905081810360008301526139f4816139b8565b9050919050565b600081905092915050565b6000613a1182612934565b613a1b81856139fb565b9350613a2b81856020860161293f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613a6d6005836139fb565b9150613a7882613a37565b600582019050919050565b6000613a8f8285613a06565b9150613a9b8284613a06565b9150613aa682613a60565b91508190509392505050565b7f7472616e736665724f776e6572736869703a206e6f7420746865206f776e6572600082015250565b6000613ae8602083612635565b9150613af382613ab2565b602082019050919050565b60006020820190508181036000830152613b1781613adb565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b4582613b1e565b613b4f8185613b29565b9350613b5f81856020860161293f565b613b6881612972565b840191505092915050565b6000608082019050613b886000830187612a69565b613b956020830186612a69565b613ba26040830185612aff565b8181036060830152613bb48184613b3a565b905095945050505050565b600081519050613bce816128a5565b92915050565b600060208284031215613bea57613be961286f565b5b6000613bf884828501613bbf565b91505092915050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613c5d603283612635565b9150613c6882613c01565b604082019050919050565b60006020820190508181036000830152613c8c81613c50565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613cef602683612635565b9150613cfa82613c93565b604082019050919050565b60006020820190508181036000830152613d1e81613ce2565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613d81602583612635565b9150613d8c82613d25565b604082019050919050565b60006020820190508181036000830152613db081613d74565b9050919050565b6000613dc28261304a565b9150613dcd8361304a565b925082821015613de057613ddf612774565b5b828203905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613e47602a83612635565b9150613e5282613deb565b604082019050919050565b60006020820190508181036000830152613e7681613e3a565b9050919050565b6000613e888261276a565b9150613e938361276a565b925082821015613ea657613ea5612774565b5b828203905092915050565b6000613ebc8261276a565b915060008203613ecf57613ece612774565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000613f36602f83612635565b9150613f4182613eda565b604082019050919050565b60006020820190508181036000830152613f6581613f29565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613fa68261276a565b9150613fb18361276a565b925082613fc157613fc0613f6c565b5b828204905092915050565b6000613fd78261276a565b9150613fe28361276a565b925082613ff257613ff1613f6c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfe68747470733a2f2f7261726974792e67617264656e2f6d656469612f706570652f70726572657665616c2e6a736f6ea264697066735822122011898e23150d1e788c888778090842f3de60c1edf22cf1a7dd3ffaf79cce243c64736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000d06000000000000000000000000000000000000000000000000000000000000000e5065706520556e6c696d69746564000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000250550000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101445760003560e01c80636352211e116100b6578063b88d4fde1161006f578063b88d4fde1461063d578063c87b56dd14610666578063d7224ba0146106a3578063e985e9c5146106ce578063f2fde38b1461070b578063f46eccc414610734576102fb565b80636352211e1461051b57806370a08231146105585780638da5cb5b1461059557806395d89b41146105c0578063a0bcfc7f146105eb578063a22cb46514610614576102fb565b806323b872dd1161010857806323b872dd146103f95780632f745c591461042257806342842e0e1461045f57806348200604146104885780634f6ccce7146104b35780635ded1055146104f0576102fb565b806301ffc9a71461030057806306fdde031461033d578063081812fc14610368578063095ea7b3146103a557806318160ddd146103ce576102fb565b366102fb576000341461018c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610183906126b8565b60405180910390fd5b600b6000610198610771565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610220576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102179061274a565b60405180910390fd5b600854600261022d610779565b61023791906127a3565b1115610278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161026f90612845565b60405180910390fd5b6001600b6000610286610771565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506102f96102e2610771565b600260405180602001604052806000815250610782565b005b600080fd5b34801561030c57600080fd5b50610327600480360381019061032291906128d1565b610c60565b6040516103349190612919565b60405180910390f35b34801561034957600080fd5b50610352610daa565b60405161035f91906129bc565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a9190612a0a565b610e3c565b60405161039c9190612a78565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c79190612abf565b610ec1565b005b3480156103da57600080fd5b506103e3610779565b6040516103f09190612b0e565b60405180910390f35b34801561040557600080fd5b50610420600480360381019061041b9190612b29565b610fd9565b005b34801561042e57600080fd5b5061044960048036038101906104449190612abf565b610fe9565b6040516104569190612b0e565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190612b29565b6111e5565b005b34801561049457600080fd5b5061049d611205565b6040516104aa91906129bc565b60405180910390f35b3480156104bf57600080fd5b506104da60048036038101906104d59190612a0a565b611293565b6040516104e79190612b0e565b60405180910390f35b3480156104fc57600080fd5b506105056112e6565b6040516105129190612b0e565b60405180910390f35b34801561052757600080fd5b50610542600480360381019061053d9190612a0a565b6112ec565b60405161054f9190612a78565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a9190612b7c565b611302565b60405161058c9190612b0e565b60405180910390f35b3480156105a157600080fd5b506105aa6113ea565b6040516105b79190612a78565b60405180910390f35b3480156105cc57600080fd5b506105d5611410565b6040516105e291906129bc565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612c0e565b6114a2565b005b34801561062057600080fd5b5061063b60048036038101906106369190612c87565b61154f565b005b34801561064957600080fd5b50610664600480360381019061065f9190612df7565b6116cf565b005b34801561067257600080fd5b5061068d60048036038101906106889190612a0a565b61172b565b60405161069a91906129bc565b60405180910390f35b3480156106af57600080fd5b506106b86117db565b6040516106c59190612b0e565b60405180910390f35b3480156106da57600080fd5b506106f560048036038101906106f09190612e7a565b6117e1565b6040516107029190612919565b60405180910390f35b34801561071757600080fd5b50610732600480360381019061072d9190612b7c565b611875565b005b34801561074057600080fd5b5061075b60048036038101906107569190612b7c565b611950565b6040516107689190612919565b60405180910390f35b600033905090565b60008054905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036107f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ee90612f2c565b60405180910390fd5b61080081611970565b15610840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083790612f98565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000028311156108a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089a9061302a565b60405180910390fd5b6108b0600085838661197d565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516109ad9190613066565b6fffffffffffffffffffffffffffffffff1681526020018583602001516109d49190613066565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015610c4357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610be36000888488611983565b610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c199061311e565b60405180910390fd5b8180610c2d9061313e565b9250508080610c3b9061313e565b915050610b72565b5080600081905550610c586000878588611b0a565b505050505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d2b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d9357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610da35750610da282611b10565b5b9050919050565b606060018054610db9906131b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610de5906131b5565b8015610e325780601f10610e0757610100808354040283529160200191610e32565b820191906000526020600020905b815481529060010190602001808311610e1557829003601f168201915b5050505050905090565b6000610e4782611970565b610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d90613258565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ecc826112ec565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f33906132ea565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f5b610771565b73ffffffffffffffffffffffffffffffffffffffff161480610f8a5750610f8981610f84610771565b6117e1565b5b610fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc09061337c565b60405180910390fd5b610fd4838383611b7a565b505050565b610fe4838383611c2c565b505050565b6000610ff483611302565b8210611035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102c9061340e565b60405180910390fd5b600061103f610779565b905060008060005b838110156111a3576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461113957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361118f578684036111805781955050505050506111df565b838061118b9061313e565b9450505b50808061119b9061313e565b915050611047565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d6906134a0565b60405180910390fd5b92915050565b611200838383604051806020016040528060008152506116cf565b505050565b600a8054611212906131b5565b80601f016020809104026020016040519081016040528092919081815260200182805461123e906131b5565b801561128b5780601f106112605761010080835404028352916020019161128b565b820191906000526020600020905b81548152906001019060200180831161126e57829003601f168201915b505050505081565b600061129d610779565b82106112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d590613532565b60405180910390fd5b819050919050565b60085481565b60006112f7826121e3565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611372576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611369906135c4565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606002805461141f906131b5565b80601f016020809104026020016040519081016040528092919081815260200182805461144b906131b5565b80156114985780601f1061146d57610100808354040283529160200191611498565b820191906000526020600020905b81548152906001019060200180831161147b57829003601f168201915b5050505050905090565b6114aa610771565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611539576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153090613656565b60405180910390fd5b8181600a918261154a92919061382d565b505050565b611557610771565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bb90613949565b60405180910390fd5b80600660006115d1610771565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661167e610771565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116c39190612919565b60405180910390a35050565b6116da848484611c2c565b6116e684848484611983565b611725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171c9061311e565b60405180910390fd5b50505050565b606061173682611970565b611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c906139db565b60405180910390fd5b600061177f6123e6565b905060008151116117a8576040518060600160405280602f815260200161402d602f91396117d3565b806117b284612478565b6040516020016117c3929190613a83565b6040516020818303038152906040525b915050919050565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166118b6610771565b73ffffffffffffffffffffffffffffffffffffffff161461190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190390613afe565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b6020528060005260406000206000915054906101000a900460ff1681565b6000805482109050919050565b50505050565b60006119a48473ffffffffffffffffffffffffffffffffffffffff166125d8565b15611afd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119cd610771565b8786866040518563ffffffff1660e01b81526004016119ef9493929190613b73565b6020604051808303816000875af1925050508015611a2b57506040513d601f19601f82011682018060405250810190611a289190613bd4565b60015b611aad573d8060008114611a5b576040519150601f19603f3d011682016040523d82523d6000602084013e611a60565b606091505b506000815103611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c9061311e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611b02565b600190505b949350505050565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611c37826121e3565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611c5e610771565b73ffffffffffffffffffffffffffffffffffffffff161480611cba5750611c83610771565b73ffffffffffffffffffffffffffffffffffffffff16611ca284610e3c565b73ffffffffffffffffffffffffffffffffffffffff16145b80611cd65750611cd58260000151611cd0610771565b6117e1565b5b905080611d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0f90613c73565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8190613d05565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df090613d97565b60405180910390fd5b611e06858585600161197d565b611e166000848460000151611b7a565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611e849190613db7565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f289190613066565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461202e91906127a3565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612173576120a381611970565b15612172576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121db8686866001611b0a565b505050505050565b6121eb6125fb565b6121f482611970565b612233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222a90613e5d565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000283106122975760017f00000000000000000000000000000000000000000000000000000000000000028461228a9190613e7d565b61229491906127a3565b90505b60008390505b8181106123a5576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612391578093505050506123e1565b50808061239d90613eb1565b91505061229d565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d890613f4c565b60405180910390fd5b919050565b6060600a80546123f5906131b5565b80601f0160208091040260200160405190810160405280929190818152602001828054612421906131b5565b801561246e5780601f106124435761010080835404028352916020019161246e565b820191906000526020600020905b81548152906001019060200180831161245157829003601f168201915b5050505050905090565b6060600082036124bf576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125d3565b600082905060005b600082146124f15780806124da9061313e565b915050600a826124ea9190613f9b565b91506124c7565b60008167ffffffffffffffff81111561250d5761250c612ccc565b5b6040519080825280601f01601f19166020018201604052801561253f5781602001600182028036833780820191505090505b5090505b600085146125cc576001826125589190613e7d565b9150600a856125679190613fcc565b603061257391906127a3565b60f81b81838151811061258957612588613ffd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125c59190613f9b565b9450612543565b8093505050505b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b600082825260208201905092915050565b7f726563656976653a207065706520646f65736e2774206e65656420616e79204560008201527f54482e0000000000000000000000000000000000000000000000000000000000602082015250565b60006126a2602383612635565b91506126ad82612646565b604082019050919050565b600060208201905081810360008301526126d181612695565b9050919050565b7f726563656976653a2077616c6c6574206d696e7465642069747320506570657360008201527f20616c72656164792e0000000000000000000000000000000000000000000000602082015250565b6000612734602983612635565b915061273f826126d8565b604082019050919050565b6000602082019050818103600083015261276381612727565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127ae8261276a565b91506127b98361276a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156127ee576127ed612774565b5b828201905092915050565b7f7265636569766528293a206d61782e20737570706c7920726561636865642e00600082015250565b600061282f601f83612635565b915061283a826127f9565b602082019050919050565b6000602082019050818103600083015261285e81612822565b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128ae81612879565b81146128b957600080fd5b50565b6000813590506128cb816128a5565b92915050565b6000602082840312156128e7576128e661286f565b5b60006128f5848285016128bc565b91505092915050565b60008115159050919050565b612913816128fe565b82525050565b600060208201905061292e600083018461290a565b92915050565b600081519050919050565b60005b8381101561295d578082015181840152602081019050612942565b8381111561296c576000848401525b50505050565b6000601f19601f8301169050919050565b600061298e82612934565b6129988185612635565b93506129a881856020860161293f565b6129b181612972565b840191505092915050565b600060208201905081810360008301526129d68184612983565b905092915050565b6129e78161276a565b81146129f257600080fd5b50565b600081359050612a04816129de565b92915050565b600060208284031215612a2057612a1f61286f565b5b6000612a2e848285016129f5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a6282612a37565b9050919050565b612a7281612a57565b82525050565b6000602082019050612a8d6000830184612a69565b92915050565b612a9c81612a57565b8114612aa757600080fd5b50565b600081359050612ab981612a93565b92915050565b60008060408385031215612ad657612ad561286f565b5b6000612ae485828601612aaa565b9250506020612af5858286016129f5565b9150509250929050565b612b088161276a565b82525050565b6000602082019050612b236000830184612aff565b92915050565b600080600060608486031215612b4257612b4161286f565b5b6000612b5086828701612aaa565b9350506020612b6186828701612aaa565b9250506040612b72868287016129f5565b9150509250925092565b600060208284031215612b9257612b9161286f565b5b6000612ba084828501612aaa565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612bce57612bcd612ba9565b5b8235905067ffffffffffffffff811115612beb57612bea612bae565b5b602083019150836001820283011115612c0757612c06612bb3565b5b9250929050565b60008060208385031215612c2557612c2461286f565b5b600083013567ffffffffffffffff811115612c4357612c42612874565b5b612c4f85828601612bb8565b92509250509250929050565b612c64816128fe565b8114612c6f57600080fd5b50565b600081359050612c8181612c5b565b92915050565b60008060408385031215612c9e57612c9d61286f565b5b6000612cac85828601612aaa565b9250506020612cbd85828601612c72565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d0482612972565b810181811067ffffffffffffffff82111715612d2357612d22612ccc565b5b80604052505050565b6000612d36612865565b9050612d428282612cfb565b919050565b600067ffffffffffffffff821115612d6257612d61612ccc565b5b612d6b82612972565b9050602081019050919050565b82818337600083830152505050565b6000612d9a612d9584612d47565b612d2c565b905082815260208101848484011115612db657612db5612cc7565b5b612dc1848285612d78565b509392505050565b600082601f830112612dde57612ddd612ba9565b5b8135612dee848260208601612d87565b91505092915050565b60008060008060808587031215612e1157612e1061286f565b5b6000612e1f87828801612aaa565b9450506020612e3087828801612aaa565b9350506040612e41878288016129f5565b925050606085013567ffffffffffffffff811115612e6257612e61612874565b5b612e6e87828801612dc9565b91505092959194509250565b60008060408385031215612e9157612e9061286f565b5b6000612e9f85828601612aaa565b9250506020612eb085828601612aaa565b9150509250929050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f16602183612635565b9150612f2182612eba565b604082019050919050565b60006020820190508181036000830152612f4581612f09565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000612f82601d83612635565b9150612f8d82612f4c565b602082019050919050565b60006020820190508181036000830152612fb181612f75565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000613014602283612635565b915061301f82612fb8565b604082019050919050565b6000602082019050818103600083015261304381613007565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006130718261304a565b915061307c8361304a565b9250826fffffffffffffffffffffffffffffffff038211156130a1576130a0612774565b5b828201905092915050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613108603383612635565b9150613113826130ac565b604082019050919050565b60006020820190508181036000830152613137816130fb565b9050919050565b60006131498261276a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361317b5761317a612774565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131cd57607f821691505b6020821081036131e0576131df613186565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613242602d83612635565b915061324d826131e6565b604082019050919050565b6000602082019050818103600083015261327181613235565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006132d4602283612635565b91506132df82613278565b604082019050919050565b60006020820190508181036000830152613303816132c7565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613366603983612635565b91506133718261330a565b604082019050919050565b6000602082019050818103600083015261339581613359565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006133f8602283612635565b91506134038261339c565b604082019050919050565b60006020820190508181036000830152613427816133eb565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b600061348a602e83612635565b91506134958261342e565b604082019050919050565b600060208201905081810360008301526134b98161347d565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b600061351c602383612635565b9150613527826134c0565b604082019050919050565b6000602082019050818103600083015261354b8161350f565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006135ae602b83612635565b91506135b982613552565b604082019050919050565b600060208201905081810360008301526135dd816135a1565b9050919050565b7f736574426173655572693a206d757374206265206f776e657220746f2073657460008201527f2062617365207572692e00000000000000000000000000000000000000000000602082015250565b6000613640602a83612635565b915061364b826135e4565b604082019050919050565b6000602082019050818103600083015261366f81613633565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026136e37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826136a6565b6136ed86836136a6565b95508019841693508086168417925050509392505050565b6000819050919050565b600061372a6137256137208461276a565b613705565b61276a565b9050919050565b6000819050919050565b6137448361370f565b61375861375082613731565b8484546136b3565b825550505050565b600090565b61376d613760565b61377881848461373b565b505050565b5b8181101561379c57613791600082613765565b60018101905061377e565b5050565b601f8211156137e1576137b281613681565b6137bb84613696565b810160208510156137ca578190505b6137de6137d685613696565b83018261377d565b50505b505050565b600082821c905092915050565b6000613804600019846008026137e6565b1980831691505092915050565b600061381d83836137f3565b9150826002028217905092915050565b6138378383613676565b67ffffffffffffffff8111156138505761384f612ccc565b5b61385a82546131b5565b6138658282856137a0565b6000601f8311600181146138945760008415613882578287013590505b61388c8582613811565b8655506138f4565b601f1984166138a286613681565b60005b828110156138ca578489013582556001820191506020850194506020810190506138a5565b868310156138e757848901356138e3601f8916826137f3565b8355505b6001600288020188555050505b50505050505050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613933601a83612635565b915061393e826138fd565b602082019050919050565b6000602082019050818103600083015261396281613926565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006139c5602f83612635565b91506139d082613969565b604082019050919050565b600060208201905081810360008301526139f4816139b8565b9050919050565b600081905092915050565b6000613a1182612934565b613a1b81856139fb565b9350613a2b81856020860161293f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613a6d6005836139fb565b9150613a7882613a37565b600582019050919050565b6000613a8f8285613a06565b9150613a9b8284613a06565b9150613aa682613a60565b91508190509392505050565b7f7472616e736665724f776e6572736869703a206e6f7420746865206f776e6572600082015250565b6000613ae8602083612635565b9150613af382613ab2565b602082019050919050565b60006020820190508181036000830152613b1781613adb565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b4582613b1e565b613b4f8185613b29565b9350613b5f81856020860161293f565b613b6881612972565b840191505092915050565b6000608082019050613b886000830187612a69565b613b956020830186612a69565b613ba26040830185612aff565b8181036060830152613bb48184613b3a565b905095945050505050565b600081519050613bce816128a5565b92915050565b600060208284031215613bea57613be961286f565b5b6000613bf884828501613bbf565b91505092915050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613c5d603283612635565b9150613c6882613c01565b604082019050919050565b60006020820190508181036000830152613c8c81613c50565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613cef602683612635565b9150613cfa82613c93565b604082019050919050565b60006020820190508181036000830152613d1e81613ce2565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613d81602583612635565b9150613d8c82613d25565b604082019050919050565b60006020820190508181036000830152613db081613d74565b9050919050565b6000613dc28261304a565b9150613dcd8361304a565b925082821015613de057613ddf612774565b5b828203905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613e47602a83612635565b9150613e5282613deb565b604082019050919050565b60006020820190508181036000830152613e7681613e3a565b9050919050565b6000613e888261276a565b9150613e938361276a565b925082821015613ea657613ea5612774565b5b828203905092915050565b6000613ebc8261276a565b915060008203613ecf57613ece612774565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000613f36602f83612635565b9150613f4182613eda565b604082019050919050565b60006020820190508181036000830152613f6581613f29565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613fa68261276a565b9150613fb18361276a565b925082613fc157613fc0613f6c565b5b828204905092915050565b6000613fd78261276a565b9150613fe28361276a565b925082613ff257613ff1613f6c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfe68747470733a2f2f7261726974792e67617264656e2f6d656469612f706570652f70726572657665616c2e6a736f6ea264697066735822122011898e23150d1e788c888778090842f3de60c1edf22cf1a7dd3ffaf79cce243c64736f6c634300080f0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000d06000000000000000000000000000000000000000000000000000000000000000e5065706520556e6c696d69746564000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000250550000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Pepe Unlimited
Arg [1] : symbol (string): PU
Arg [2] : baseTokenURI (string):
Arg [3] : max_batch (uint256): 2
Arg [4] : collection_size (uint256): 3334
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000d06
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [6] : 5065706520556e6c696d69746564000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [8] : 5055000000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000000
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.