Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
250 WSI
Holders
70
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 WSILoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WhiteSandsIslands
Compiler Version
v0.8.9+commit.e5eed63a
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.9; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract WhiteSandsIslands is ERC721Enumerable, Ownable { using Strings for uint256; enum Phases { PHASE_1, // Whitelist PHASE_2, // Parcel Pass Holders PHASE_3 // Public Phase } Phases public phase = Phases.PHASE_1; address public constant FEE_RECEIVER = 0x814858Ad31778589a2049b3399963fB3ba942c76; uint256 public constant MAX_SUPPLY = 250; bytes32 public whitelistMerkleRoot; uint256 public reimbursement = 0.1 ether; uint256 public constant PUBLIC_MINT_PRICE = 5 ether; address private immutable parcelPassContract; mapping(address => uint256) private maxMintsPerAddress; string private baseURI; modifier noContracts(address account_) { uint256 size; assembly { size := extcodesize(account_) } require(size == 0, "caller-is-contract"); _; } constructor(address parcelPassContract_) // name, symbol ERC721("White Sands Islands", "WSI") { parcelPassContract = parcelPassContract_; _safeMint(FEE_RECEIVER, 1); } function updateWhitelistMerkleRoot(bytes32 newMerkleRoot_) external onlyOwner { whitelistMerkleRoot = newMerkleRoot_; } function getCurrentMintPrice() external view returns (uint256) { return _getMintPrice(); } function whitelistedMint(bytes32[] calldata merkleProof_) external payable noContracts(msg.sender) { address _user = msg.sender; require(phase == Phases.PHASE_1, "invalid-mint-phase"); require(totalSupply() + 1 <= MAX_SUPPLY, "max-supply-reached"); require(maxMintsPerAddress[_user] == 0, "max-mint-limit"); bool isWhitelisted = MerkleProof.verify( merkleProof_, whitelistMerkleRoot, keccak256(abi.encodePacked(_user)) ); require(isWhitelisted, "invalid-proof"); require(msg.value == _getMintPrice(), "incorrect-ether-value"); if (totalSupply() < MAX_SUPPLY) { maxMintsPerAddress[_user]++; _safeMint(_user, totalSupply() + 1); } } function parcelPassMint() external payable noContracts(msg.sender) { address _user = msg.sender; require(phase == Phases.PHASE_2, "invalid-mint-phase"); require(totalSupply() + 1 <= MAX_SUPPLY, "max-supply-reached"); uint256 parcelPassBalance = IERC721Enumerable(parcelPassContract) .balanceOf(_user); require(parcelPassBalance > 0, "no-pass-held"); require(msg.value == _getMintPrice(), "incorrect-ether-value"); if (totalSupply() < MAX_SUPPLY) { _safeMint(_user, totalSupply() + 1); } } function publicMint() external payable noContracts(msg.sender) { address _user = msg.sender; require(phase == Phases.PHASE_3, "invalid-mint-phase"); require(totalSupply() + 1 <= MAX_SUPPLY, "max-supply-reached"); require(msg.value == _getMintPrice(), "incorrect-ether-value"); if (totalSupply() < MAX_SUPPLY) { _safeMint(_user, totalSupply() + 1); } } function setPhase(Phases newPhase_) external onlyOwner { phase = newPhase_; } function setBaseURI(string memory newURI_) external onlyOwner { baseURI = newURI_; } function setReimbursement(uint256 newReimbursement_) external onlyOwner { require( newReimbursement_ < ((PUBLIC_MINT_PRICE * 900) / 1000), "invalid-reimbursement" ); reimbursement = newReimbursement_; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId_) public view virtual override returns (string memory) { require(_exists(tokenId_), "non-existent-token"); string memory _base = _baseURI(); return string(abi.encodePacked(_base, tokenId_.toString())); } function _getMintPrice() internal view returns (uint256 _price) { if (phase == Phases.PHASE_3) _price = PUBLIC_MINT_PRICE; else { // apply 10% discount for whitelisted users // or parcel pass holders _price = (PUBLIC_MINT_PRICE * 900) / 1000; } // subtract oculus reimbursment _price -= reimbursement; } function withdraw() external { uint256 _balance = address(this).balance; payable(FEE_RECEIVER).transfer(_balance); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { 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 virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// 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/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (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 v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"parcelPassContract_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FEE_RECEIVER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_PRICE","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":[],"name":"getCurrentMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"parcelPassMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"phase","outputs":[{"internalType":"enum WhiteSandsIslands.Phases","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"reimbursement","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum WhiteSandsIslands.Phases","name":"newPhase_","type":"uint8"}],"name":"setPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newReimbursement_","type":"uint256"}],"name":"setReimbursement","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot_","type":"bytes32"}],"name":"updateWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof_","type":"bytes32[]"}],"name":"whitelistedMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040526000600a60146101000a81548160ff021916908360028111156200002d576200002c62000d22565b5b021790555067016345785d8a0000600c553480156200004b57600080fd5b5060405162005e1338038062005e13833981810160405281019062000071919062000dbb565b6040518060400160405280601381526020017f57686974652053616e64732049736c616e6473000000000000000000000000008152506040518060400160405280600381526020017f57534900000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000f592919062000c72565b5080600190805190602001906200010e92919062000c72565b50505062000131620001256200019360201b60201c565b6200019b60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506200018c73814858ad31778589a2049b3399963fb3ba942c7660016200026160201b60201c565b506200134f565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002838282604051806020016040528060008152506200028760201b60201c565b5050565b620002998383620002f560201b60201c565b620002ae6000848484620004ef60201b60201c565b620002f0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002e79062000e74565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000368576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200035f9062000ee6565b60405180910390fd5b6200037981620006a960201b60201c565b15620003bc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b39062000f58565b60405180910390fd5b620003d0600083836200071560201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000422919062000fb3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620004eb600083836200085c60201b60201c565b5050565b60006200051d8473ffffffffffffffffffffffffffffffffffffffff166200086160201b62001bf01760201c565b156200069c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200054f6200019360201b60201c565b8786866040518563ffffffff1660e01b8152600401620005739493929190620010d6565b602060405180830381600087803b1580156200058e57600080fd5b505af1925050508015620005c257506040513d601f19601f82011682018060405250810190620005bf919062001187565b60015b6200064b573d8060008114620005f5576040519150601f19603f3d011682016040523d82523d6000602084013e620005fa565b606091505b5060008151141562000643576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200063a9062000e74565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620006a1565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6200072d8383836200088460201b62001c131760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200077a5762000774816200088960201b60201c565b620007c2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620007c157620007c08382620008d260201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200080f57620008098162000a4f60201b60201c565b62000857565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620008565762000855828262000b2b60201b60201c565b5b5b505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001620008ec8462000bb760201b62000fdc1760201c565b620008f89190620011b9565b9050600060076000848152602001908152602001600020549050818114620009de576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000a659190620011b9565b905060006009600084815260200190815260200160002054905060006008838154811062000a985762000a97620011f4565b5b90600052602060002001549050806008838154811062000abd5762000abc620011f4565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000b0f5762000b0e62001223565b5b6001900381819060005260206000200160009055905550505050565b600062000b438362000bb760201b62000fdc1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000c2b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c2290620012c8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000c809062001319565b90600052602060002090601f01602090048101928262000ca4576000855562000cf0565b82601f1062000cbf57805160ff191683800117855562000cf0565b8280016001018555821562000cf0579182015b8281111562000cef57825182559160200191906001019062000cd2565b5b50905062000cff919062000d03565b5090565b5b8082111562000d1e57600081600090555060010162000d04565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d838262000d56565b9050919050565b62000d958162000d76565b811462000da157600080fd5b50565b60008151905062000db58162000d8a565b92915050565b60006020828403121562000dd45762000dd362000d51565b5b600062000de48482850162000da4565b91505092915050565b600082825260208201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600062000e5c60328362000ded565b915062000e698262000dfe565b604082019050919050565b6000602082019050818103600083015262000e8f8162000e4d565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600062000ece60208362000ded565b915062000edb8262000e96565b602082019050919050565b6000602082019050818103600083015262000f018162000ebf565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600062000f40601c8362000ded565b915062000f4d8262000f08565b602082019050919050565b6000602082019050818103600083015262000f738162000f31565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000fc08262000f7a565b915062000fcd8362000f7a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001005576200100462000f84565b5b828201905092915050565b6200101b8162000d76565b82525050565b6200102c8162000f7a565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b838110156200106e57808201518184015260208101905062001051565b838111156200107e576000848401525b50505050565b6000601f19601f8301169050919050565b6000620010a28262001032565b620010ae81856200103d565b9350620010c08185602086016200104e565b620010cb8162001084565b840191505092915050565b6000608082019050620010ed600083018762001010565b620010fc602083018662001010565b6200110b604083018562001021565b81810360608301526200111f818462001095565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62001161816200112a565b81146200116d57600080fd5b50565b600081519050620011818162001156565b92915050565b600060208284031215620011a0576200119f62000d51565b5b6000620011b08482850162001170565b91505092915050565b6000620011c68262000f7a565b9150620011d38362000f7a565b925082821015620011e957620011e862000f84565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000620012b0602a8362000ded565b9150620012bd8262001252565b604082019050919050565b60006020820190508181036000830152620012e381620012a1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200133257607f821691505b60208210811415620013495762001348620012ea565b5b50919050565b608051614aa86200136b60003960006116220152614aa86000f3fe6080604052600436106101f95760003560e01c8063715018a61161010d578063b1c9fe6e116100a0578063d3e78e4d1161006f578063d3e78e4d146106d0578063d3f0c8bb146106fb578063e82ded2114610726578063e985e9c514610751578063f2fde38b1461078e576101f9565b8063b1c9fe6e14610616578063b88d4fde14610641578063c03afb591461066a578063c87b56dd14610693576101f9565b806397fe3964116100dc57806397fe39641461058f578063989239f114610599578063a22cb465146105c2578063aa98e0c6146105eb576101f9565b8063715018a61461050657806375a6f85a1461051d5780638da5cb5b1461053957806395d89b4114610564576101f9565b806332cb6b0c1161019057806355f804b31161015f57806355f804b31461040f5780636352211e146104385780636957637b146104755780636bde26271461049e57806370a08231146104c9576101f9565b806332cb6b0c146103675780633ccfd60b1461039257806342842e0e146103a95780634f6ccce7146103d2576101f9565b806318160ddd116101cc57806318160ddd146102cc57806323b872dd146102f757806326092b83146103205780632f745c591461032a576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190613099565b6107b7565b60405161023291906130e1565b60405180910390f35b34801561024757600080fd5b50610250610831565b60405161025d9190613195565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906131ed565b6108c3565b60405161029a919061325b565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c591906132a2565b610948565b005b3480156102d857600080fd5b506102e1610a60565b6040516102ee91906132f1565b60405180910390f35b34801561030357600080fd5b5061031e6004803603810190610319919061330c565b610a6d565b005b610328610acd565b005b34801561033657600080fd5b50610351600480360381019061034c91906132a2565b610c64565b60405161035e91906132f1565b60405180910390f35b34801561037357600080fd5b5061037c610d09565b60405161038991906132f1565b60405180910390f35b34801561039e57600080fd5b506103a7610d0e565b005b3480156103b557600080fd5b506103d060048036038101906103cb919061330c565b610d71565b005b3480156103de57600080fd5b506103f960048036038101906103f491906131ed565b610d91565b60405161040691906132f1565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190613494565b610e02565b005b34801561044457600080fd5b5061045f600480360381019061045a91906131ed565b610e98565b60405161046c919061325b565b60405180910390f35b34801561048157600080fd5b5061049c60048036038101906104979190613513565b610f4a565b005b3480156104aa57600080fd5b506104b3610fd0565b6040516104c091906132f1565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb9190613540565b610fdc565b6040516104fd91906132f1565b60405180910390f35b34801561051257600080fd5b5061051b611094565b005b610537600480360381019061053291906135cd565b61111c565b005b34801561054557600080fd5b5061054e611446565b60405161055b919061325b565b60405180910390f35b34801561057057600080fd5b50610579611470565b6040516105869190613195565b60405180910390f35b610597611502565b005b3480156105a557600080fd5b506105c060048036038101906105bb91906131ed565b61178b565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190613646565b611875565b005b3480156105f757600080fd5b5061060061188b565b60405161060d9190613695565b60405180910390f35b34801561062257600080fd5b5061062b611891565b6040516106389190613727565b60405180910390f35b34801561064d57600080fd5b50610668600480360381019061066391906137e3565b6118a4565b005b34801561067657600080fd5b50610691600480360381019061068c919061388b565b611906565b005b34801561069f57600080fd5b506106ba60048036038101906106b591906131ed565b6119af565b6040516106c79190613195565b60405180910390f35b3480156106dc57600080fd5b506106e5611a37565b6040516106f2919061325b565b60405180910390f35b34801561070757600080fd5b50610710611a4f565b60405161071d91906132f1565b60405180910390f35b34801561073257600080fd5b5061073b611a55565b60405161074891906132f1565b60405180910390f35b34801561075d57600080fd5b50610778600480360381019061077391906138b8565b611a64565b60405161078591906130e1565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b09190613540565b611af8565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082a575061082982611c18565b5b9050919050565b60606000805461084090613927565b80601f016020809104026020016040519081016040528092919081815260200182805461086c90613927565b80156108b95780601f1061088e576101008083540402835291602001916108b9565b820191906000526020600020905b81548152906001019060200180831161089c57829003601f168201915b5050505050905090565b60006108ce82611cfa565b61090d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610904906139cb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095382610e98565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bb90613a5d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109e3611d66565b73ffffffffffffffffffffffffffffffffffffffff161480610a125750610a1181610a0c611d66565b611a64565b5b610a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4890613aef565b60405180910390fd5b610a5b8383611d6e565b505050565b6000600880549050905090565b610a7e610a78611d66565b82611e27565b610abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab490613b81565b60405180910390fd5b610ac8838383611f05565b505050565b336000813b905060008114610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e90613bed565b60405180910390fd5b6000339050600280811115610b2f57610b2e6136b0565b5b600a60149054906101000a900460ff166002811115610b5157610b506136b0565b5b14610b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8890613c59565b60405180910390fd5b60fa6001610b9d610a60565b610ba79190613ca8565b1115610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90613d4a565b60405180910390fd5b610bf061216c565b3414610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2890613db6565b60405180910390fd5b60fa610c3b610a60565b1015610c5f57610c5e816001610c4f610a60565b610c599190613ca8565b6121f2565b5b505050565b6000610c6f83610fdc565b8210610cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca790613e48565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60fa81565b600047905073814858ad31778589a2049b3399963fb3ba942c7673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d6d573d6000803e3d6000fd5b5050565b610d8c838383604051806020016040528060008152506118a4565b505050565b6000610d9b610a60565b8210610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd390613eda565b60405180910390fd5b60088281548110610df057610def613efa565b5b90600052602060002001549050919050565b610e0a611d66565b73ffffffffffffffffffffffffffffffffffffffff16610e28611446565b73ffffffffffffffffffffffffffffffffffffffff1614610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7590613f75565b60405180910390fd5b80600e9080519060200190610e94929190612f8a565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3890614007565b60405180910390fd5b80915050919050565b610f52611d66565b73ffffffffffffffffffffffffffffffffffffffff16610f70611446565b73ffffffffffffffffffffffffffffffffffffffff1614610fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbd90613f75565b60405180910390fd5b80600b8190555050565b674563918244f4000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561104d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104490614099565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61109c611d66565b73ffffffffffffffffffffffffffffffffffffffff166110ba611446565b73ffffffffffffffffffffffffffffffffffffffff1614611110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110790613f75565b60405180910390fd5b61111a6000612210565b565b336000813b905060008114611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d90613bed565b60405180910390fd5b60003390506000600281111561117f5761117e6136b0565b5b600a60149054906101000a900460ff1660028111156111a1576111a06136b0565b5b146111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d890613c59565b60405180910390fd5b60fa60016111ed610a60565b6111f79190613ca8565b1115611238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122f90613d4a565b60405180910390fd5b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146112ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b190614105565b60405180910390fd5b6000611330868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600b5484604051602001611315919061416d565b604051602081830303815290604052805190602001206122d6565b905080611372576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611369906141d4565b60405180910390fd5b61137a61216c565b34146113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b290613db6565b60405180910390fd5b60fa6113c5610a60565b101561143e57600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061141b906141f4565b919050555061143d82600161142e610a60565b6114389190613ca8565b6121f2565b5b505050505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461147f90613927565b80601f01602080910402602001604051908101604052809291908181526020018280546114ab90613927565b80156114f85780601f106114cd576101008083540402835291602001916114f8565b820191906000526020600020905b8154815290600101906020018083116114db57829003601f168201915b5050505050905090565b336000813b90506000811461154c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154390613bed565b60405180910390fd5b600033905060016002811115611565576115646136b0565b5b600a60149054906101000a900460ff166002811115611587576115866136b0565b5b146115c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115be90613c59565b60405180910390fd5b60fa60016115d3610a60565b6115dd9190613ca8565b111561161e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161590613d4a565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401611679919061325b565b60206040518083038186803b15801561169157600080fd5b505afa1580156116a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c99190614252565b90506000811161170e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611705906142cb565b60405180910390fd5b61171661216c565b3414611757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174e90613db6565b60405180910390fd5b60fa611761610a60565b101561178557611784826001611775610a60565b61177f9190613ca8565b6121f2565b5b50505050565b611793611d66565b73ffffffffffffffffffffffffffffffffffffffff166117b1611446565b73ffffffffffffffffffffffffffffffffffffffff1614611807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fe90613f75565b60405180910390fd5b6103e8610384674563918244f4000061182091906142eb565b61182a9190614374565b811061186b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611862906143f1565b60405180910390fd5b80600c8190555050565b611887611880611d66565b83836122ed565b5050565b600b5481565b600a60149054906101000a900460ff1681565b6118b56118af611d66565b83611e27565b6118f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118eb90613b81565b60405180910390fd5b6119008484848461245a565b50505050565b61190e611d66565b73ffffffffffffffffffffffffffffffffffffffff1661192c611446565b73ffffffffffffffffffffffffffffffffffffffff1614611982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197990613f75565b60405180910390fd5b80600a60146101000a81548160ff021916908360028111156119a7576119a66136b0565b5b021790555050565b60606119ba82611cfa565b6119f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f09061445d565b60405180910390fd5b6000611a036124b6565b905080611a0f84612548565b604051602001611a209291906144b9565b604051602081830303815290604052915050919050565b73814858ad31778589a2049b3399963fb3ba942c7681565b600c5481565b6000611a5f61216c565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b00611d66565b73ffffffffffffffffffffffffffffffffffffffff16611b1e611446565b73ffffffffffffffffffffffffffffffffffffffff1614611b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6b90613f75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdb9061454f565b60405180910390fd5b611bed81612210565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ce357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cf35750611cf2826126a9565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611de183610e98565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e3282611cfa565b611e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e68906145e1565b60405180910390fd5b6000611e7c83610e98565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611eeb57508373ffffffffffffffffffffffffffffffffffffffff16611ed3846108c3565b73ffffffffffffffffffffffffffffffffffffffff16145b80611efc5750611efb8185611a64565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f2582610e98565b73ffffffffffffffffffffffffffffffffffffffff1614611f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7290614673565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe290614705565b60405180910390fd5b611ff6838383612713565b612001600082611d6e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120519190614725565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120a89190613ca8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612167838383612827565b505050565b6000600280811115612181576121806136b0565b5b600a60149054906101000a900460ff1660028111156121a3576121a26136b0565b5b14156121b957674563918244f4000090506121df565b6103e8610384674563918244f400006121d291906142eb565b6121dc9190614374565b90505b600c54816121ed9190614725565b905090565b61220c82826040518060200160405280600081525061282c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826122e38584612887565b1490509392505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561235c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612353906147a5565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161244d91906130e1565b60405180910390a3505050565b612465848484611f05565b612471848484846128fc565b6124b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a790614837565b60405180910390fd5b50505050565b6060600e80546124c590613927565b80601f01602080910402602001604051908101604052809291908181526020018280546124f190613927565b801561253e5780601f106125135761010080835404028352916020019161253e565b820191906000526020600020905b81548152906001019060200180831161252157829003601f168201915b5050505050905090565b60606000821415612590576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126a4565b600082905060005b600082146125c25780806125ab906141f4565b915050600a826125bb9190614374565b9150612598565b60008167ffffffffffffffff8111156125de576125dd613369565b5b6040519080825280601f01601f1916602001820160405280156126105781602001600182028036833780820191505090505b5090505b6000851461269d576001826126299190614725565b9150600a856126389190614857565b60306126449190613ca8565b60f81b81838151811061265a57612659613efa565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126969190614374565b9450612614565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61271e838383611c13565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127615761275c81612a93565b6127a0565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461279f5761279e8382612adc565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127e3576127de81612c49565b612822565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612821576128208282612d1a565b5b5b505050565b505050565b6128368383612d99565b61284360008484846128fc565b612882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287990614837565b60405180910390fd5b505050565b60008082905060005b84518110156128f15760008582815181106128ae576128ad613efa565b5b602002602001015190508083116128d0576128c98382612f73565b92506128dd565b6128da8184612f73565b92505b5080806128e9906141f4565b915050612890565b508091505092915050565b600061291d8473ffffffffffffffffffffffffffffffffffffffff16611bf0565b15612a86578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612946611d66565b8786866040518563ffffffff1660e01b815260040161296894939291906148dd565b602060405180830381600087803b15801561298257600080fd5b505af19250505080156129b357506040513d601f19601f820116820180604052508101906129b0919061493e565b60015b612a36573d80600081146129e3576040519150601f19603f3d011682016040523d82523d6000602084013e6129e8565b606091505b50600081511415612a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2590614837565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a8b565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ae984610fdc565b612af39190614725565b9050600060076000848152602001908152602001600020549050818114612bd8576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612c5d9190614725565b9050600060096000848152602001908152602001600020549050600060088381548110612c8d57612c8c613efa565b5b906000526020600020015490508060088381548110612caf57612cae613efa565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612cfe57612cfd61496b565b5b6001900381819060005260206000200160009055905550505050565b6000612d2583610fdc565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e00906149e6565b60405180910390fd5b612e1281611cfa565b15612e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4990614a52565b60405180910390fd5b612e5e60008383612713565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612eae9190613ca8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f6f60008383612827565b5050565b600082600052816020526040600020905092915050565b828054612f9690613927565b90600052602060002090601f016020900481019282612fb85760008555612fff565b82601f10612fd157805160ff1916838001178555612fff565b82800160010185558215612fff579182015b82811115612ffe578251825591602001919060010190612fe3565b5b50905061300c9190613010565b5090565b5b80821115613029576000816000905550600101613011565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61307681613041565b811461308157600080fd5b50565b6000813590506130938161306d565b92915050565b6000602082840312156130af576130ae613037565b5b60006130bd84828501613084565b91505092915050565b60008115159050919050565b6130db816130c6565b82525050565b60006020820190506130f660008301846130d2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561313657808201518184015260208101905061311b565b83811115613145576000848401525b50505050565b6000601f19601f8301169050919050565b6000613167826130fc565b6131718185613107565b9350613181818560208601613118565b61318a8161314b565b840191505092915050565b600060208201905081810360008301526131af818461315c565b905092915050565b6000819050919050565b6131ca816131b7565b81146131d557600080fd5b50565b6000813590506131e7816131c1565b92915050565b60006020828403121561320357613202613037565b5b6000613211848285016131d8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132458261321a565b9050919050565b6132558161323a565b82525050565b6000602082019050613270600083018461324c565b92915050565b61327f8161323a565b811461328a57600080fd5b50565b60008135905061329c81613276565b92915050565b600080604083850312156132b9576132b8613037565b5b60006132c78582860161328d565b92505060206132d8858286016131d8565b9150509250929050565b6132eb816131b7565b82525050565b600060208201905061330660008301846132e2565b92915050565b60008060006060848603121561332557613324613037565b5b60006133338682870161328d565b93505060206133448682870161328d565b9250506040613355868287016131d8565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133a18261314b565b810181811067ffffffffffffffff821117156133c0576133bf613369565b5b80604052505050565b60006133d361302d565b90506133df8282613398565b919050565b600067ffffffffffffffff8211156133ff576133fe613369565b5b6134088261314b565b9050602081019050919050565b82818337600083830152505050565b6000613437613432846133e4565b6133c9565b90508281526020810184848401111561345357613452613364565b5b61345e848285613415565b509392505050565b600082601f83011261347b5761347a61335f565b5b813561348b848260208601613424565b91505092915050565b6000602082840312156134aa576134a9613037565b5b600082013567ffffffffffffffff8111156134c8576134c761303c565b5b6134d484828501613466565b91505092915050565b6000819050919050565b6134f0816134dd565b81146134fb57600080fd5b50565b60008135905061350d816134e7565b92915050565b60006020828403121561352957613528613037565b5b6000613537848285016134fe565b91505092915050565b60006020828403121561355657613555613037565b5b60006135648482850161328d565b91505092915050565b600080fd5b600080fd5b60008083601f84011261358d5761358c61335f565b5b8235905067ffffffffffffffff8111156135aa576135a961356d565b5b6020830191508360208202830111156135c6576135c5613572565b5b9250929050565b600080602083850312156135e4576135e3613037565b5b600083013567ffffffffffffffff8111156136025761360161303c565b5b61360e85828601613577565b92509250509250929050565b613623816130c6565b811461362e57600080fd5b50565b6000813590506136408161361a565b92915050565b6000806040838503121561365d5761365c613037565b5b600061366b8582860161328d565b925050602061367c85828601613631565b9150509250929050565b61368f816134dd565b82525050565b60006020820190506136aa6000830184613686565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600381106136f0576136ef6136b0565b5b50565b6000819050613701826136df565b919050565b6000613711826136f3565b9050919050565b61372181613706565b82525050565b600060208201905061373c6000830184613718565b92915050565b600067ffffffffffffffff82111561375d5761375c613369565b5b6137668261314b565b9050602081019050919050565b600061378661378184613742565b6133c9565b9050828152602081018484840111156137a2576137a1613364565b5b6137ad848285613415565b509392505050565b600082601f8301126137ca576137c961335f565b5b81356137da848260208601613773565b91505092915050565b600080600080608085870312156137fd576137fc613037565b5b600061380b8782880161328d565b945050602061381c8782880161328d565b935050604061382d878288016131d8565b925050606085013567ffffffffffffffff81111561384e5761384d61303c565b5b61385a878288016137b5565b91505092959194509250565b6003811061387357600080fd5b50565b60008135905061388581613866565b92915050565b6000602082840312156138a1576138a0613037565b5b60006138af84828501613876565b91505092915050565b600080604083850312156138cf576138ce613037565b5b60006138dd8582860161328d565b92505060206138ee8582860161328d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061393f57607f821691505b60208210811415613953576139526138f8565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006139b5602c83613107565b91506139c082613959565b604082019050919050565b600060208201905081810360008301526139e4816139a8565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a47602183613107565b9150613a52826139eb565b604082019050919050565b60006020820190508181036000830152613a7681613a3a565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613ad9603883613107565b9150613ae482613a7d565b604082019050919050565b60006020820190508181036000830152613b0881613acc565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613b6b603183613107565b9150613b7682613b0f565b604082019050919050565b60006020820190508181036000830152613b9a81613b5e565b9050919050565b7f63616c6c65722d69732d636f6e74726163740000000000000000000000000000600082015250565b6000613bd7601283613107565b9150613be282613ba1565b602082019050919050565b60006020820190508181036000830152613c0681613bca565b9050919050565b7f696e76616c69642d6d696e742d70686173650000000000000000000000000000600082015250565b6000613c43601283613107565b9150613c4e82613c0d565b602082019050919050565b60006020820190508181036000830152613c7281613c36565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cb3826131b7565b9150613cbe836131b7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cf357613cf2613c79565b5b828201905092915050565b7f6d61782d737570706c792d726561636865640000000000000000000000000000600082015250565b6000613d34601283613107565b9150613d3f82613cfe565b602082019050919050565b60006020820190508181036000830152613d6381613d27565b9050919050565b7f696e636f72726563742d65746865722d76616c75650000000000000000000000600082015250565b6000613da0601583613107565b9150613dab82613d6a565b602082019050919050565b60006020820190508181036000830152613dcf81613d93565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613e32602b83613107565b9150613e3d82613dd6565b604082019050919050565b60006020820190508181036000830152613e6181613e25565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613ec4602c83613107565b9150613ecf82613e68565b604082019050919050565b60006020820190508181036000830152613ef381613eb7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f5f602083613107565b9150613f6a82613f29565b602082019050919050565b60006020820190508181036000830152613f8e81613f52565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613ff1602983613107565b9150613ffc82613f95565b604082019050919050565b6000602082019050818103600083015261402081613fe4565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614083602a83613107565b915061408e82614027565b604082019050919050565b600060208201905081810360008301526140b281614076565b9050919050565b7f6d61782d6d696e742d6c696d6974000000000000000000000000000000000000600082015250565b60006140ef600e83613107565b91506140fa826140b9565b602082019050919050565b6000602082019050818103600083015261411e816140e2565b9050919050565b60008160601b9050919050565b600061413d82614125565b9050919050565b600061414f82614132565b9050919050565b6141676141628261323a565b614144565b82525050565b60006141798284614156565b60148201915081905092915050565b7f696e76616c69642d70726f6f6600000000000000000000000000000000000000600082015250565b60006141be600d83613107565b91506141c982614188565b602082019050919050565b600060208201905081810360008301526141ed816141b1565b9050919050565b60006141ff826131b7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561423257614231613c79565b5b600182019050919050565b60008151905061424c816131c1565b92915050565b60006020828403121561426857614267613037565b5b60006142768482850161423d565b91505092915050565b7f6e6f2d706173732d68656c640000000000000000000000000000000000000000600082015250565b60006142b5600c83613107565b91506142c08261427f565b602082019050919050565b600060208201905081810360008301526142e4816142a8565b9050919050565b60006142f6826131b7565b9150614301836131b7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561433a57614339613c79565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061437f826131b7565b915061438a836131b7565b92508261439a57614399614345565b5b828204905092915050565b7f696e76616c69642d7265696d62757273656d656e740000000000000000000000600082015250565b60006143db601583613107565b91506143e6826143a5565b602082019050919050565b6000602082019050818103600083015261440a816143ce565b9050919050565b7f6e6f6e2d6578697374656e742d746f6b656e0000000000000000000000000000600082015250565b6000614447601283613107565b915061445282614411565b602082019050919050565b600060208201905081810360008301526144768161443a565b9050919050565b600081905092915050565b6000614493826130fc565b61449d818561447d565b93506144ad818560208601613118565b80840191505092915050565b60006144c58285614488565b91506144d18284614488565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614539602683613107565b9150614544826144dd565b604082019050919050565b600060208201905081810360008301526145688161452c565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006145cb602c83613107565b91506145d68261456f565b604082019050919050565b600060208201905081810360008301526145fa816145be565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061465d602583613107565b915061466882614601565b604082019050919050565b6000602082019050818103600083015261468c81614650565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006146ef602483613107565b91506146fa82614693565b604082019050919050565b6000602082019050818103600083015261471e816146e2565b9050919050565b6000614730826131b7565b915061473b836131b7565b92508282101561474e5761474d613c79565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061478f601983613107565b915061479a82614759565b602082019050919050565b600060208201905081810360008301526147be81614782565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614821603283613107565b915061482c826147c5565b604082019050919050565b6000602082019050818103600083015261485081614814565b9050919050565b6000614862826131b7565b915061486d836131b7565b92508261487d5761487c614345565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006148af82614888565b6148b98185614893565b93506148c9818560208601613118565b6148d28161314b565b840191505092915050565b60006080820190506148f2600083018761324c565b6148ff602083018661324c565b61490c60408301856132e2565b818103606083015261491e81846148a4565b905095945050505050565b6000815190506149388161306d565b92915050565b60006020828403121561495457614953613037565b5b600061496284828501614929565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006149d0602083613107565b91506149db8261499a565b602082019050919050565b600060208201905081810360008301526149ff816149c3565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614a3c601c83613107565b9150614a4782614a06565b602082019050919050565b60006020820190508181036000830152614a6b81614a2f565b905091905056fea2646970667358221220baab89cc72fe4a12793bedc1792087c1629f8daf679145f43057e1fff46fcd7c64736f6c634300080900330000000000000000000000007feb477600a03fd6ab1fe451cb3c7836a420f4ad
Deployed Bytecode
0x6080604052600436106101f95760003560e01c8063715018a61161010d578063b1c9fe6e116100a0578063d3e78e4d1161006f578063d3e78e4d146106d0578063d3f0c8bb146106fb578063e82ded2114610726578063e985e9c514610751578063f2fde38b1461078e576101f9565b8063b1c9fe6e14610616578063b88d4fde14610641578063c03afb591461066a578063c87b56dd14610693576101f9565b806397fe3964116100dc57806397fe39641461058f578063989239f114610599578063a22cb465146105c2578063aa98e0c6146105eb576101f9565b8063715018a61461050657806375a6f85a1461051d5780638da5cb5b1461053957806395d89b4114610564576101f9565b806332cb6b0c1161019057806355f804b31161015f57806355f804b31461040f5780636352211e146104385780636957637b146104755780636bde26271461049e57806370a08231146104c9576101f9565b806332cb6b0c146103675780633ccfd60b1461039257806342842e0e146103a95780634f6ccce7146103d2576101f9565b806318160ddd116101cc57806318160ddd146102cc57806323b872dd146102f757806326092b83146103205780632f745c591461032a576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190613099565b6107b7565b60405161023291906130e1565b60405180910390f35b34801561024757600080fd5b50610250610831565b60405161025d9190613195565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906131ed565b6108c3565b60405161029a919061325b565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c591906132a2565b610948565b005b3480156102d857600080fd5b506102e1610a60565b6040516102ee91906132f1565b60405180910390f35b34801561030357600080fd5b5061031e6004803603810190610319919061330c565b610a6d565b005b610328610acd565b005b34801561033657600080fd5b50610351600480360381019061034c91906132a2565b610c64565b60405161035e91906132f1565b60405180910390f35b34801561037357600080fd5b5061037c610d09565b60405161038991906132f1565b60405180910390f35b34801561039e57600080fd5b506103a7610d0e565b005b3480156103b557600080fd5b506103d060048036038101906103cb919061330c565b610d71565b005b3480156103de57600080fd5b506103f960048036038101906103f491906131ed565b610d91565b60405161040691906132f1565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190613494565b610e02565b005b34801561044457600080fd5b5061045f600480360381019061045a91906131ed565b610e98565b60405161046c919061325b565b60405180910390f35b34801561048157600080fd5b5061049c60048036038101906104979190613513565b610f4a565b005b3480156104aa57600080fd5b506104b3610fd0565b6040516104c091906132f1565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb9190613540565b610fdc565b6040516104fd91906132f1565b60405180910390f35b34801561051257600080fd5b5061051b611094565b005b610537600480360381019061053291906135cd565b61111c565b005b34801561054557600080fd5b5061054e611446565b60405161055b919061325b565b60405180910390f35b34801561057057600080fd5b50610579611470565b6040516105869190613195565b60405180910390f35b610597611502565b005b3480156105a557600080fd5b506105c060048036038101906105bb91906131ed565b61178b565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190613646565b611875565b005b3480156105f757600080fd5b5061060061188b565b60405161060d9190613695565b60405180910390f35b34801561062257600080fd5b5061062b611891565b6040516106389190613727565b60405180910390f35b34801561064d57600080fd5b50610668600480360381019061066391906137e3565b6118a4565b005b34801561067657600080fd5b50610691600480360381019061068c919061388b565b611906565b005b34801561069f57600080fd5b506106ba60048036038101906106b591906131ed565b6119af565b6040516106c79190613195565b60405180910390f35b3480156106dc57600080fd5b506106e5611a37565b6040516106f2919061325b565b60405180910390f35b34801561070757600080fd5b50610710611a4f565b60405161071d91906132f1565b60405180910390f35b34801561073257600080fd5b5061073b611a55565b60405161074891906132f1565b60405180910390f35b34801561075d57600080fd5b50610778600480360381019061077391906138b8565b611a64565b60405161078591906130e1565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b09190613540565b611af8565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082a575061082982611c18565b5b9050919050565b60606000805461084090613927565b80601f016020809104026020016040519081016040528092919081815260200182805461086c90613927565b80156108b95780601f1061088e576101008083540402835291602001916108b9565b820191906000526020600020905b81548152906001019060200180831161089c57829003601f168201915b5050505050905090565b60006108ce82611cfa565b61090d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610904906139cb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095382610e98565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bb90613a5d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109e3611d66565b73ffffffffffffffffffffffffffffffffffffffff161480610a125750610a1181610a0c611d66565b611a64565b5b610a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4890613aef565b60405180910390fd5b610a5b8383611d6e565b505050565b6000600880549050905090565b610a7e610a78611d66565b82611e27565b610abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab490613b81565b60405180910390fd5b610ac8838383611f05565b505050565b336000813b905060008114610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e90613bed565b60405180910390fd5b6000339050600280811115610b2f57610b2e6136b0565b5b600a60149054906101000a900460ff166002811115610b5157610b506136b0565b5b14610b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8890613c59565b60405180910390fd5b60fa6001610b9d610a60565b610ba79190613ca8565b1115610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90613d4a565b60405180910390fd5b610bf061216c565b3414610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2890613db6565b60405180910390fd5b60fa610c3b610a60565b1015610c5f57610c5e816001610c4f610a60565b610c599190613ca8565b6121f2565b5b505050565b6000610c6f83610fdc565b8210610cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca790613e48565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60fa81565b600047905073814858ad31778589a2049b3399963fb3ba942c7673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d6d573d6000803e3d6000fd5b5050565b610d8c838383604051806020016040528060008152506118a4565b505050565b6000610d9b610a60565b8210610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd390613eda565b60405180910390fd5b60088281548110610df057610def613efa565b5b90600052602060002001549050919050565b610e0a611d66565b73ffffffffffffffffffffffffffffffffffffffff16610e28611446565b73ffffffffffffffffffffffffffffffffffffffff1614610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7590613f75565b60405180910390fd5b80600e9080519060200190610e94929190612f8a565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3890614007565b60405180910390fd5b80915050919050565b610f52611d66565b73ffffffffffffffffffffffffffffffffffffffff16610f70611446565b73ffffffffffffffffffffffffffffffffffffffff1614610fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbd90613f75565b60405180910390fd5b80600b8190555050565b674563918244f4000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561104d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104490614099565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61109c611d66565b73ffffffffffffffffffffffffffffffffffffffff166110ba611446565b73ffffffffffffffffffffffffffffffffffffffff1614611110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110790613f75565b60405180910390fd5b61111a6000612210565b565b336000813b905060008114611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d90613bed565b60405180910390fd5b60003390506000600281111561117f5761117e6136b0565b5b600a60149054906101000a900460ff1660028111156111a1576111a06136b0565b5b146111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d890613c59565b60405180910390fd5b60fa60016111ed610a60565b6111f79190613ca8565b1115611238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122f90613d4a565b60405180910390fd5b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146112ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b190614105565b60405180910390fd5b6000611330868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600b5484604051602001611315919061416d565b604051602081830303815290604052805190602001206122d6565b905080611372576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611369906141d4565b60405180910390fd5b61137a61216c565b34146113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b290613db6565b60405180910390fd5b60fa6113c5610a60565b101561143e57600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061141b906141f4565b919050555061143d82600161142e610a60565b6114389190613ca8565b6121f2565b5b505050505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461147f90613927565b80601f01602080910402602001604051908101604052809291908181526020018280546114ab90613927565b80156114f85780601f106114cd576101008083540402835291602001916114f8565b820191906000526020600020905b8154815290600101906020018083116114db57829003601f168201915b5050505050905090565b336000813b90506000811461154c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154390613bed565b60405180910390fd5b600033905060016002811115611565576115646136b0565b5b600a60149054906101000a900460ff166002811115611587576115866136b0565b5b146115c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115be90613c59565b60405180910390fd5b60fa60016115d3610a60565b6115dd9190613ca8565b111561161e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161590613d4a565b60405180910390fd5b60007f0000000000000000000000007feb477600a03fd6ab1fe451cb3c7836a420f4ad73ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401611679919061325b565b60206040518083038186803b15801561169157600080fd5b505afa1580156116a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c99190614252565b90506000811161170e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611705906142cb565b60405180910390fd5b61171661216c565b3414611757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174e90613db6565b60405180910390fd5b60fa611761610a60565b101561178557611784826001611775610a60565b61177f9190613ca8565b6121f2565b5b50505050565b611793611d66565b73ffffffffffffffffffffffffffffffffffffffff166117b1611446565b73ffffffffffffffffffffffffffffffffffffffff1614611807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fe90613f75565b60405180910390fd5b6103e8610384674563918244f4000061182091906142eb565b61182a9190614374565b811061186b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611862906143f1565b60405180910390fd5b80600c8190555050565b611887611880611d66565b83836122ed565b5050565b600b5481565b600a60149054906101000a900460ff1681565b6118b56118af611d66565b83611e27565b6118f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118eb90613b81565b60405180910390fd5b6119008484848461245a565b50505050565b61190e611d66565b73ffffffffffffffffffffffffffffffffffffffff1661192c611446565b73ffffffffffffffffffffffffffffffffffffffff1614611982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197990613f75565b60405180910390fd5b80600a60146101000a81548160ff021916908360028111156119a7576119a66136b0565b5b021790555050565b60606119ba82611cfa565b6119f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f09061445d565b60405180910390fd5b6000611a036124b6565b905080611a0f84612548565b604051602001611a209291906144b9565b604051602081830303815290604052915050919050565b73814858ad31778589a2049b3399963fb3ba942c7681565b600c5481565b6000611a5f61216c565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b00611d66565b73ffffffffffffffffffffffffffffffffffffffff16611b1e611446565b73ffffffffffffffffffffffffffffffffffffffff1614611b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6b90613f75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdb9061454f565b60405180910390fd5b611bed81612210565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ce357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cf35750611cf2826126a9565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611de183610e98565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e3282611cfa565b611e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e68906145e1565b60405180910390fd5b6000611e7c83610e98565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611eeb57508373ffffffffffffffffffffffffffffffffffffffff16611ed3846108c3565b73ffffffffffffffffffffffffffffffffffffffff16145b80611efc5750611efb8185611a64565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f2582610e98565b73ffffffffffffffffffffffffffffffffffffffff1614611f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7290614673565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe290614705565b60405180910390fd5b611ff6838383612713565b612001600082611d6e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120519190614725565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120a89190613ca8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612167838383612827565b505050565b6000600280811115612181576121806136b0565b5b600a60149054906101000a900460ff1660028111156121a3576121a26136b0565b5b14156121b957674563918244f4000090506121df565b6103e8610384674563918244f400006121d291906142eb565b6121dc9190614374565b90505b600c54816121ed9190614725565b905090565b61220c82826040518060200160405280600081525061282c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826122e38584612887565b1490509392505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561235c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612353906147a5565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161244d91906130e1565b60405180910390a3505050565b612465848484611f05565b612471848484846128fc565b6124b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a790614837565b60405180910390fd5b50505050565b6060600e80546124c590613927565b80601f01602080910402602001604051908101604052809291908181526020018280546124f190613927565b801561253e5780601f106125135761010080835404028352916020019161253e565b820191906000526020600020905b81548152906001019060200180831161252157829003601f168201915b5050505050905090565b60606000821415612590576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126a4565b600082905060005b600082146125c25780806125ab906141f4565b915050600a826125bb9190614374565b9150612598565b60008167ffffffffffffffff8111156125de576125dd613369565b5b6040519080825280601f01601f1916602001820160405280156126105781602001600182028036833780820191505090505b5090505b6000851461269d576001826126299190614725565b9150600a856126389190614857565b60306126449190613ca8565b60f81b81838151811061265a57612659613efa565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126969190614374565b9450612614565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61271e838383611c13565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127615761275c81612a93565b6127a0565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461279f5761279e8382612adc565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127e3576127de81612c49565b612822565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612821576128208282612d1a565b5b5b505050565b505050565b6128368383612d99565b61284360008484846128fc565b612882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287990614837565b60405180910390fd5b505050565b60008082905060005b84518110156128f15760008582815181106128ae576128ad613efa565b5b602002602001015190508083116128d0576128c98382612f73565b92506128dd565b6128da8184612f73565b92505b5080806128e9906141f4565b915050612890565b508091505092915050565b600061291d8473ffffffffffffffffffffffffffffffffffffffff16611bf0565b15612a86578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612946611d66565b8786866040518563ffffffff1660e01b815260040161296894939291906148dd565b602060405180830381600087803b15801561298257600080fd5b505af19250505080156129b357506040513d601f19601f820116820180604052508101906129b0919061493e565b60015b612a36573d80600081146129e3576040519150601f19603f3d011682016040523d82523d6000602084013e6129e8565b606091505b50600081511415612a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2590614837565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a8b565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ae984610fdc565b612af39190614725565b9050600060076000848152602001908152602001600020549050818114612bd8576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612c5d9190614725565b9050600060096000848152602001908152602001600020549050600060088381548110612c8d57612c8c613efa565b5b906000526020600020015490508060088381548110612caf57612cae613efa565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612cfe57612cfd61496b565b5b6001900381819060005260206000200160009055905550505050565b6000612d2583610fdc565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e00906149e6565b60405180910390fd5b612e1281611cfa565b15612e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4990614a52565b60405180910390fd5b612e5e60008383612713565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612eae9190613ca8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f6f60008383612827565b5050565b600082600052816020526040600020905092915050565b828054612f9690613927565b90600052602060002090601f016020900481019282612fb85760008555612fff565b82601f10612fd157805160ff1916838001178555612fff565b82800160010185558215612fff579182015b82811115612ffe578251825591602001919060010190612fe3565b5b50905061300c9190613010565b5090565b5b80821115613029576000816000905550600101613011565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61307681613041565b811461308157600080fd5b50565b6000813590506130938161306d565b92915050565b6000602082840312156130af576130ae613037565b5b60006130bd84828501613084565b91505092915050565b60008115159050919050565b6130db816130c6565b82525050565b60006020820190506130f660008301846130d2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561313657808201518184015260208101905061311b565b83811115613145576000848401525b50505050565b6000601f19601f8301169050919050565b6000613167826130fc565b6131718185613107565b9350613181818560208601613118565b61318a8161314b565b840191505092915050565b600060208201905081810360008301526131af818461315c565b905092915050565b6000819050919050565b6131ca816131b7565b81146131d557600080fd5b50565b6000813590506131e7816131c1565b92915050565b60006020828403121561320357613202613037565b5b6000613211848285016131d8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132458261321a565b9050919050565b6132558161323a565b82525050565b6000602082019050613270600083018461324c565b92915050565b61327f8161323a565b811461328a57600080fd5b50565b60008135905061329c81613276565b92915050565b600080604083850312156132b9576132b8613037565b5b60006132c78582860161328d565b92505060206132d8858286016131d8565b9150509250929050565b6132eb816131b7565b82525050565b600060208201905061330660008301846132e2565b92915050565b60008060006060848603121561332557613324613037565b5b60006133338682870161328d565b93505060206133448682870161328d565b9250506040613355868287016131d8565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133a18261314b565b810181811067ffffffffffffffff821117156133c0576133bf613369565b5b80604052505050565b60006133d361302d565b90506133df8282613398565b919050565b600067ffffffffffffffff8211156133ff576133fe613369565b5b6134088261314b565b9050602081019050919050565b82818337600083830152505050565b6000613437613432846133e4565b6133c9565b90508281526020810184848401111561345357613452613364565b5b61345e848285613415565b509392505050565b600082601f83011261347b5761347a61335f565b5b813561348b848260208601613424565b91505092915050565b6000602082840312156134aa576134a9613037565b5b600082013567ffffffffffffffff8111156134c8576134c761303c565b5b6134d484828501613466565b91505092915050565b6000819050919050565b6134f0816134dd565b81146134fb57600080fd5b50565b60008135905061350d816134e7565b92915050565b60006020828403121561352957613528613037565b5b6000613537848285016134fe565b91505092915050565b60006020828403121561355657613555613037565b5b60006135648482850161328d565b91505092915050565b600080fd5b600080fd5b60008083601f84011261358d5761358c61335f565b5b8235905067ffffffffffffffff8111156135aa576135a961356d565b5b6020830191508360208202830111156135c6576135c5613572565b5b9250929050565b600080602083850312156135e4576135e3613037565b5b600083013567ffffffffffffffff8111156136025761360161303c565b5b61360e85828601613577565b92509250509250929050565b613623816130c6565b811461362e57600080fd5b50565b6000813590506136408161361a565b92915050565b6000806040838503121561365d5761365c613037565b5b600061366b8582860161328d565b925050602061367c85828601613631565b9150509250929050565b61368f816134dd565b82525050565b60006020820190506136aa6000830184613686565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600381106136f0576136ef6136b0565b5b50565b6000819050613701826136df565b919050565b6000613711826136f3565b9050919050565b61372181613706565b82525050565b600060208201905061373c6000830184613718565b92915050565b600067ffffffffffffffff82111561375d5761375c613369565b5b6137668261314b565b9050602081019050919050565b600061378661378184613742565b6133c9565b9050828152602081018484840111156137a2576137a1613364565b5b6137ad848285613415565b509392505050565b600082601f8301126137ca576137c961335f565b5b81356137da848260208601613773565b91505092915050565b600080600080608085870312156137fd576137fc613037565b5b600061380b8782880161328d565b945050602061381c8782880161328d565b935050604061382d878288016131d8565b925050606085013567ffffffffffffffff81111561384e5761384d61303c565b5b61385a878288016137b5565b91505092959194509250565b6003811061387357600080fd5b50565b60008135905061388581613866565b92915050565b6000602082840312156138a1576138a0613037565b5b60006138af84828501613876565b91505092915050565b600080604083850312156138cf576138ce613037565b5b60006138dd8582860161328d565b92505060206138ee8582860161328d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061393f57607f821691505b60208210811415613953576139526138f8565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006139b5602c83613107565b91506139c082613959565b604082019050919050565b600060208201905081810360008301526139e4816139a8565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a47602183613107565b9150613a52826139eb565b604082019050919050565b60006020820190508181036000830152613a7681613a3a565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613ad9603883613107565b9150613ae482613a7d565b604082019050919050565b60006020820190508181036000830152613b0881613acc565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613b6b603183613107565b9150613b7682613b0f565b604082019050919050565b60006020820190508181036000830152613b9a81613b5e565b9050919050565b7f63616c6c65722d69732d636f6e74726163740000000000000000000000000000600082015250565b6000613bd7601283613107565b9150613be282613ba1565b602082019050919050565b60006020820190508181036000830152613c0681613bca565b9050919050565b7f696e76616c69642d6d696e742d70686173650000000000000000000000000000600082015250565b6000613c43601283613107565b9150613c4e82613c0d565b602082019050919050565b60006020820190508181036000830152613c7281613c36565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cb3826131b7565b9150613cbe836131b7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cf357613cf2613c79565b5b828201905092915050565b7f6d61782d737570706c792d726561636865640000000000000000000000000000600082015250565b6000613d34601283613107565b9150613d3f82613cfe565b602082019050919050565b60006020820190508181036000830152613d6381613d27565b9050919050565b7f696e636f72726563742d65746865722d76616c75650000000000000000000000600082015250565b6000613da0601583613107565b9150613dab82613d6a565b602082019050919050565b60006020820190508181036000830152613dcf81613d93565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613e32602b83613107565b9150613e3d82613dd6565b604082019050919050565b60006020820190508181036000830152613e6181613e25565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613ec4602c83613107565b9150613ecf82613e68565b604082019050919050565b60006020820190508181036000830152613ef381613eb7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f5f602083613107565b9150613f6a82613f29565b602082019050919050565b60006020820190508181036000830152613f8e81613f52565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613ff1602983613107565b9150613ffc82613f95565b604082019050919050565b6000602082019050818103600083015261402081613fe4565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614083602a83613107565b915061408e82614027565b604082019050919050565b600060208201905081810360008301526140b281614076565b9050919050565b7f6d61782d6d696e742d6c696d6974000000000000000000000000000000000000600082015250565b60006140ef600e83613107565b91506140fa826140b9565b602082019050919050565b6000602082019050818103600083015261411e816140e2565b9050919050565b60008160601b9050919050565b600061413d82614125565b9050919050565b600061414f82614132565b9050919050565b6141676141628261323a565b614144565b82525050565b60006141798284614156565b60148201915081905092915050565b7f696e76616c69642d70726f6f6600000000000000000000000000000000000000600082015250565b60006141be600d83613107565b91506141c982614188565b602082019050919050565b600060208201905081810360008301526141ed816141b1565b9050919050565b60006141ff826131b7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561423257614231613c79565b5b600182019050919050565b60008151905061424c816131c1565b92915050565b60006020828403121561426857614267613037565b5b60006142768482850161423d565b91505092915050565b7f6e6f2d706173732d68656c640000000000000000000000000000000000000000600082015250565b60006142b5600c83613107565b91506142c08261427f565b602082019050919050565b600060208201905081810360008301526142e4816142a8565b9050919050565b60006142f6826131b7565b9150614301836131b7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561433a57614339613c79565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061437f826131b7565b915061438a836131b7565b92508261439a57614399614345565b5b828204905092915050565b7f696e76616c69642d7265696d62757273656d656e740000000000000000000000600082015250565b60006143db601583613107565b91506143e6826143a5565b602082019050919050565b6000602082019050818103600083015261440a816143ce565b9050919050565b7f6e6f6e2d6578697374656e742d746f6b656e0000000000000000000000000000600082015250565b6000614447601283613107565b915061445282614411565b602082019050919050565b600060208201905081810360008301526144768161443a565b9050919050565b600081905092915050565b6000614493826130fc565b61449d818561447d565b93506144ad818560208601613118565b80840191505092915050565b60006144c58285614488565b91506144d18284614488565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614539602683613107565b9150614544826144dd565b604082019050919050565b600060208201905081810360008301526145688161452c565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006145cb602c83613107565b91506145d68261456f565b604082019050919050565b600060208201905081810360008301526145fa816145be565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061465d602583613107565b915061466882614601565b604082019050919050565b6000602082019050818103600083015261468c81614650565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006146ef602483613107565b91506146fa82614693565b604082019050919050565b6000602082019050818103600083015261471e816146e2565b9050919050565b6000614730826131b7565b915061473b836131b7565b92508282101561474e5761474d613c79565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061478f601983613107565b915061479a82614759565b602082019050919050565b600060208201905081810360008301526147be81614782565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614821603283613107565b915061482c826147c5565b604082019050919050565b6000602082019050818103600083015261485081614814565b9050919050565b6000614862826131b7565b915061486d836131b7565b92508261487d5761487c614345565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006148af82614888565b6148b98185614893565b93506148c9818560208601613118565b6148d28161314b565b840191505092915050565b60006080820190506148f2600083018761324c565b6148ff602083018661324c565b61490c60408301856132e2565b818103606083015261491e81846148a4565b905095945050505050565b6000815190506149388161306d565b92915050565b60006020828403121561495457614953613037565b5b600061496284828501614929565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006149d0602083613107565b91506149db8261499a565b602082019050919050565b600060208201905081810360008301526149ff816149c3565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614a3c601c83613107565b9150614a4782614a06565b602082019050919050565b60006020820190508181036000830152614a6b81614a2f565b905091905056fea2646970667358221220baab89cc72fe4a12793bedc1792087c1629f8daf679145f43057e1fff46fcd7c64736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007feb477600a03fd6ab1fe451cb3c7836a420f4ad
-----Decoded View---------------
Arg [0] : parcelPassContract_ (address): 0x7feB477600a03fd6ab1fE451cB3c7836a420F4AD
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007feb477600a03fd6ab1fe451cb3c7836a420f4ad
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.