Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 128 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Safe Transfer Fr... | 17515253 | 844 days ago | IN | 0 ETH | 0.00172057 | ||||
Safe Transfer Fr... | 17515251 | 844 days ago | IN | 0 ETH | 0.00153143 | ||||
Safe Transfer Fr... | 17515248 | 844 days ago | IN | 0 ETH | 0.00149157 | ||||
Safe Transfer Fr... | 17515245 | 844 days ago | IN | 0 ETH | 0.00140793 | ||||
Safe Transfer Fr... | 17515242 | 844 days ago | IN | 0 ETH | 0.00159078 | ||||
Safe Transfer Fr... | 17515238 | 844 days ago | IN | 0 ETH | 0.00153426 | ||||
Safe Transfer Fr... | 17515221 | 844 days ago | IN | 0 ETH | 0.00165341 | ||||
Mint User | 17515158 | 844 days ago | IN | 0.15 ETH | 0.00452136 | ||||
Set Cost | 17408940 | 859 days ago | IN | 0 ETH | 0.00107805 | ||||
Mint User | 17394830 | 861 days ago | IN | 0.07 ETH | 0.00492276 | ||||
Transfer From | 17379265 | 863 days ago | IN | 0 ETH | 0.00394855 | ||||
Mint User | 17379258 | 863 days ago | IN | 0 ETH | 0.00640663 | ||||
Safe Transfer Fr... | 16270673 | 1019 days ago | IN | 0 ETH | 0.00112962 | ||||
Mint User | 16270667 | 1019 days ago | IN | 0 ETH | 0.00202419 | ||||
Mint User | 16255308 | 1021 days ago | IN | 0.07 ETH | 0.00207709 | ||||
Mint User | 16255304 | 1021 days ago | IN | 0.07 ETH | 0.00202963 | ||||
Mint User | 16255302 | 1021 days ago | IN | 0.07 ETH | 0.00216266 | ||||
Safe Transfer Fr... | 16033737 | 1052 days ago | IN | 0 ETH | 0.00125679 | ||||
Mint User | 16033727 | 1052 days ago | IN | 0 ETH | 0.00220692 | ||||
Mint User | 16029986 | 1052 days ago | IN | 0.07 ETH | 0.00214545 | ||||
Transfer From | 15872175 | 1074 days ago | IN | 0 ETH | 0.0008665 | ||||
Mint User | 15872165 | 1074 days ago | IN | 0 ETH | 0.00158325 | ||||
Withdraw | 15746944 | 1092 days ago | IN | 0 ETH | 0.00070521 | ||||
Safe Transfer Fr... | 15619796 | 1110 days ago | IN | 0 ETH | 0.00149199 | ||||
Mint User | 15619791 | 1110 days ago | IN | 0 ETH | 0.00359872 |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MuscleDummies
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// _____ .__ ________ .__ // / \ __ __ ______ ____ | | ____ \______ \ __ __ _____ _____ |__| ____ ______ // / \ / \| | \/ ___// ___\| | _/ __ \ | | \| | \/ \ / \| |/ __ \ / ___/ // / Y \ | /\___ \\ \___| |_\ ___/ | ` \ | / Y Y \ Y Y \ \ ___/ \___ \ // \____|__ /____//____ >\___ >____/\___ >_______ /____/|__|_| /__|_| /__|\___ >____ > // \/ \/ \/ \/ \/ \/ \/ \/ \/ // SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.4; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; contract MuscleDummies is ERC721Enumerable, Ownable { using Counters for Counters.Counter; using Strings for uint256; Counters.Counter private _tokenIdCounter; string public baseURI; string private notRevealedUri; string public baseExtension = ".json"; uint256 public cost = 0.11 ether; uint256 public maxSupply = 333; uint256 public maxMintAmount = 1; bool public paused = true; bool public revealed = false; bool public onlyWhitelisted = false; address[] public whitelistedAddresses; mapping(address => uint256) public addressMintedBalance; constructor( string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721("Muscle Dummies", "MDNFT") { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); _tokenIdCounter.increment(); } // ========================= PUBLIC ========================= function mintUser(address to, uint256 _mintAmount) public payable { require(_mintAmount > 0, "Please select how many you would like to mint"); uint256 supply = totalSupply(); require(supply < maxSupply, "We are all out of Muscle Dummies!"); require(supply + _mintAmount <= maxSupply, "We do not have this many Muscle Dummies left!"); //MAKE sure they have the funds and not the max amount of dummies if(to != owner()) { require(!paused, "We are not currently minting!"); if(onlyWhitelisted){ require(isWhitelisted(to), "Sorry, we're only minting to those whitelisted!"); } require(balanceOf(to) < maxMintAmount, "You have minted the maximum amount of Muscle Dummies"); require(_mintAmount <= maxMintAmount, "You cannot mint this many Muscle Dummies."); require(msg.value >= cost * _mintAmount, "Insufficent funds"); } uint256 tokenId = _tokenIdCounter.current(); _tokenIdCounter.increment(); _safeMint(to, tokenId); } function isWhitelisted(address _user) public view returns (bool) { for (uint i = 0; i < whitelistedAddresses.length; i++) { if (whitelistedAddresses[i] == _user) { return true; } } return false; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); if(revealed == false) { return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(notRevealedUri, tokenId.toString(), baseExtension)) : ""; } return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } // ========================= OWNER FUNCTIONS ========================= function reveal() public onlyOwner { revealed = true; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function pause(bool _state) public onlyOwner { paused = _state; } function setOnlyWhitelisted(bool _state) public onlyOwner { onlyWhitelisted = _state; } function whitelistUsers(address[] calldata _users) public onlyOwner { delete whitelistedAddresses; whitelistedAddresses = _users; } function withdraw() public payable onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } // ========================= INTERNAL FUNCTIONS ========================= function _baseURI() internal view virtual override returns (string memory) { return baseURI; } }
// 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/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// 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/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintUser","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e90805190602001906200005192919062000452565b50670186cc6acd4b0000600f5561014d60105560016011556001601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff0219169083151502179055506000601260026101000a81548160ff021916908315150217905550348015620000c757600080fd5b5060405162005800380380620058008339818101604052810190620000ed919062000574565b6040518060400160405280600e81526020017f4d7573636c652044756d6d6965730000000000000000000000000000000000008152506040518060400160405280600581526020017f4d444e465400000000000000000000000000000000000000000000000000000081525081600090805190602001906200017192919062000452565b5080600190805190602001906200018a92919062000452565b505050620001ad620001a1620001ee60201b60201c565b620001f660201b60201c565b620001be82620002bc60201b60201c565b620001cf816200036760201b60201c565b620001e6600b6200041260201b6200209f1760201c565b5050620007da565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002cc620001ee60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002f26200042860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200034b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000342906200060e565b60405180910390fd5b80600c90805190602001906200036392919062000452565b5050565b62000377620001ee60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200039d6200042860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003f6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ed906200060e565b60405180910390fd5b80600d90805190602001906200040e92919062000452565b5050565b6001816000016000828254019250508190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200046090620006d6565b90600052602060002090601f016020900481019282620004845760008555620004d0565b82601f106200049f57805160ff1916838001178555620004d0565b82800160010185558215620004d0579182015b82811115620004cf578251825591602001919060010190620004b2565b5b509050620004df9190620004e3565b5090565b5b80821115620004fe576000816000905550600101620004e4565b5090565b600062000519620005138462000659565b62000630565b9050828152602081018484840111156200053257600080fd5b6200053f848285620006a0565b509392505050565b600082601f8301126200055957600080fd5b81516200056b84826020860162000502565b91505092915050565b600080604083850312156200058857600080fd5b600083015167ffffffffffffffff811115620005a357600080fd5b620005b18582860162000547565b925050602083015167ffffffffffffffff811115620005cf57600080fd5b620005dd8582860162000547565b9150509250929050565b6000620005f66020836200068f565b91506200060382620007b1565b602082019050919050565b600060208201905081810360008301526200062981620005e7565b9050919050565b60006200063c6200064f565b90506200064a82826200070c565b919050565b6000604051905090565b600067ffffffffffffffff82111562000677576200067662000771565b5b6200068282620007a0565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006c0578082015181840152602081019050620006a3565b83811115620006d0576000848401525b50505050565b60006002820490506001821680620006ef57607f821691505b6020821081141562000706576200070562000742565b5b50919050565b6200071782620007a0565b810181811067ffffffffffffffff8211171562000739576200073862000771565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61501680620007ea6000396000f3fe6080604052600436106102515760003560e01c80635c975abb11610139578063a475b5dd116100b6578063d5abeb011161007a578063d5abeb01146108bc578063da3ef23f146108e7578063e985e9c514610910578063edec5f271461094d578063f2c4ce1e14610976578063f2fde38b1461099f57610251565b8063a475b5dd146107d7578063b88d4fde146107ee578063ba4e5c4914610817578063c668286214610854578063c87b56dd1461087f57610251565b80637f00c7a6116100fd5780637f00c7a6146107045780638da5cb5b1461072d57806395d89b41146107585780639c70b51214610783578063a22cb465146107ae57610251565b80635c975abb1461061d5780636352211e146106485780636c0360eb1461068557806370a08231146106b0578063715018a6146106ed57610251565b80632f745c59116101d2578063438b630011610196578063438b63001461050a57806344a0d68a14610547578063465e2168146105705780634f6ccce71461058c57806351830227146105c957806355f804b3146105f457610251565b80632f745c59146104345780633af32abf146104715780633c952764146104ae5780633ccfd60b146104d757806342842e0e146104e157610251565b806313faede61161021957806313faede61461034d57806318160ddd1461037857806318cae269146103a3578063239c70ae146103e057806323b872dd1461040b57610251565b806301ffc9a71461025657806302329a291461029357806306fdde03146102bc578063081812fc146102e7578063095ea7b314610324575b600080fd5b34801561026257600080fd5b5061027d600480360381019061027891906138ee565b6109c8565b60405161028a919061402f565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b591906138c5565b610a42565b005b3480156102c857600080fd5b506102d1610adb565b6040516102de919061404a565b60405180910390f35b3480156102f357600080fd5b5061030e60048036038101906103099190613981565b610b6d565b60405161031b9190613fa6565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190613844565b610bf2565b005b34801561035957600080fd5b50610362610d0a565b60405161036f91906143ac565b60405180910390f35b34801561038457600080fd5b5061038d610d10565b60405161039a91906143ac565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c591906136d9565b610d1d565b6040516103d791906143ac565b60405180910390f35b3480156103ec57600080fd5b506103f5610d35565b60405161040291906143ac565b60405180910390f35b34801561041757600080fd5b50610432600480360381019061042d919061373e565b610d3b565b005b34801561044057600080fd5b5061045b60048036038101906104569190613844565b610d9b565b60405161046891906143ac565b60405180910390f35b34801561047d57600080fd5b50610498600480360381019061049391906136d9565b610e40565b6040516104a5919061402f565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d091906138c5565b610f15565b005b6104df610fae565b005b3480156104ed57600080fd5b506105086004803603810190610503919061373e565b6110aa565b005b34801561051657600080fd5b50610531600480360381019061052c91906136d9565b6110ca565b60405161053e919061400d565b60405180910390f35b34801561055357600080fd5b5061056e60048036038101906105699190613981565b6111c4565b005b61058a60048036038101906105859190613844565b61124a565b005b34801561059857600080fd5b506105b360048036038101906105ae9190613981565b61151f565b6040516105c091906143ac565b60405180910390f35b3480156105d557600080fd5b506105de6115b6565b6040516105eb919061402f565b60405180910390f35b34801561060057600080fd5b5061061b60048036038101906106169190613940565b6115c9565b005b34801561062957600080fd5b5061063261165f565b60405161063f919061402f565b60405180910390f35b34801561065457600080fd5b5061066f600480360381019061066a9190613981565b611672565b60405161067c9190613fa6565b60405180910390f35b34801561069157600080fd5b5061069a611724565b6040516106a7919061404a565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d291906136d9565b6117b2565b6040516106e491906143ac565b60405180910390f35b3480156106f957600080fd5b5061070261186a565b005b34801561071057600080fd5b5061072b60048036038101906107269190613981565b6118f2565b005b34801561073957600080fd5b50610742611978565b60405161074f9190613fa6565b60405180910390f35b34801561076457600080fd5b5061076d6119a2565b60405161077a919061404a565b60405180910390f35b34801561078f57600080fd5b50610798611a34565b6040516107a5919061402f565b60405180910390f35b3480156107ba57600080fd5b506107d560048036038101906107d09190613808565b611a47565b005b3480156107e357600080fd5b506107ec611a5d565b005b3480156107fa57600080fd5b506108156004803603810190610810919061378d565b611af6565b005b34801561082357600080fd5b5061083e60048036038101906108399190613981565b611b58565b60405161084b9190613fa6565b60405180910390f35b34801561086057600080fd5b50610869611b97565b604051610876919061404a565b60405180910390f35b34801561088b57600080fd5b506108a660048036038101906108a19190613981565b611c25565b6040516108b3919061404a565b60405180910390f35b3480156108c857600080fd5b506108d1611d41565b6040516108de91906143ac565b60405180910390f35b3480156108f357600080fd5b5061090e60048036038101906109099190613940565b611d47565b005b34801561091c57600080fd5b5061093760048036038101906109329190613702565b611ddd565b604051610944919061402f565b60405180910390f35b34801561095957600080fd5b50610974600480360381019061096f9190613880565b611e71565b005b34801561098257600080fd5b5061099d60048036038101906109989190613940565b611f11565b005b3480156109ab57600080fd5b506109c660048036038101906109c191906136d9565b611fa7565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3b5750610a3a826120b5565b5b9050919050565b610a4a612197565b73ffffffffffffffffffffffffffffffffffffffff16610a68611978565b73ffffffffffffffffffffffffffffffffffffffff1614610abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab59061428c565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b606060008054610aea906146b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610b16906146b5565b8015610b635780601f10610b3857610100808354040283529160200191610b63565b820191906000526020600020905b815481529060010190602001808311610b4657829003601f168201915b5050505050905090565b6000610b788261219f565b610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae9061426c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bfd82611672565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c659061430c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c8d612197565b73ffffffffffffffffffffffffffffffffffffffff161480610cbc5750610cbb81610cb6612197565b611ddd565b5b610cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf2906141ac565b60405180910390fd5b610d05838361220b565b505050565b600f5481565b6000600880549050905090565b60146020528060005260406000206000915090505481565b60115481565b610d4c610d46612197565b826122c4565b610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d829061436c565b60405180910390fd5b610d968383836123a2565b505050565b6000610da6836117b2565b8210610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde9061408c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b601380549050811015610f0a578273ffffffffffffffffffffffffffffffffffffffff1660138281548110610ea6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610ef7576001915050610f10565b8080610f0290614718565b915050610e48565b50600090505b919050565b610f1d612197565b73ffffffffffffffffffffffffffffffffffffffff16610f3b611978565b73ffffffffffffffffffffffffffffffffffffffff1614610f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f889061428c565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b610fb6612197565b73ffffffffffffffffffffffffffffffffffffffff16610fd4611978565b73ffffffffffffffffffffffffffffffffffffffff161461102a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110219061428c565b60405180910390fd5b6000611034611978565b73ffffffffffffffffffffffffffffffffffffffff164760405161105790613f91565b60006040518083038185875af1925050503d8060008114611094576040519150601f19603f3d011682016040523d82523d6000602084013e611099565b606091505b50509050806110a757600080fd5b50565b6110c583838360405180602001604052806000815250611af6565b505050565b606060006110d7836117b2565b905060008167ffffffffffffffff81111561111b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156111495781602001602082028036833780820191505090505b50905060005b828110156111b9576111618582610d9b565b82828151811061119a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806111b190614718565b91505061114f565b508092505050919050565b6111cc612197565b73ffffffffffffffffffffffffffffffffffffffff166111ea611978565b73ffffffffffffffffffffffffffffffffffffffff1614611240576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112379061428c565b60405180910390fd5b80600f8190555050565b6000811161128d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112849061416c565b60405180910390fd5b6000611297610d10565b905060105481106112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d4906142ac565b60405180910390fd5b60105482826112ec91906144ea565b111561132d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113249061434c565b60405180910390fd5b611335611978565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146114f757601260009054906101000a900460ff16156113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae9061424c565b60405180910390fd5b601260029054906101000a900460ff1615611415576113d583610e40565b611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140b9061432c565b60405180910390fd5b5b601154611421846117b2565b10611461576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114589061406c565b60405180910390fd5b6011548211156114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d9061420c565b60405180910390fd5b81600f546114b49190614571565b3410156114f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ed906142ec565b60405180910390fd5b5b6000611503600b612609565b905061150f600b61209f565b6115198482612617565b50505050565b6000611529610d10565b821061156a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115619061438c565b60405180910390fd5b600882815481106115a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601260019054906101000a900460ff1681565b6115d1612197565b73ffffffffffffffffffffffffffffffffffffffff166115ef611978565b73ffffffffffffffffffffffffffffffffffffffff1614611645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163c9061428c565b60405180910390fd5b80600c908051906020019061165b9291906133f2565b5050565b601260009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561171b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611712906141ec565b60405180910390fd5b80915050919050565b600c8054611731906146b5565b80601f016020809104026020016040519081016040528092919081815260200182805461175d906146b5565b80156117aa5780601f1061177f576101008083540402835291602001916117aa565b820191906000526020600020905b81548152906001019060200180831161178d57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a906141cc565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611872612197565b73ffffffffffffffffffffffffffffffffffffffff16611890611978565b73ffffffffffffffffffffffffffffffffffffffff16146118e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dd9061428c565b60405180910390fd5b6118f06000612635565b565b6118fa612197565b73ffffffffffffffffffffffffffffffffffffffff16611918611978565b73ffffffffffffffffffffffffffffffffffffffff161461196e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119659061428c565b60405180910390fd5b8060118190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546119b1906146b5565b80601f01602080910402602001604051908101604052809291908181526020018280546119dd906146b5565b8015611a2a5780601f106119ff57610100808354040283529160200191611a2a565b820191906000526020600020905b815481529060010190602001808311611a0d57829003601f168201915b5050505050905090565b601260029054906101000a900460ff1681565b611a59611a52612197565b83836126fb565b5050565b611a65612197565b73ffffffffffffffffffffffffffffffffffffffff16611a83611978565b73ffffffffffffffffffffffffffffffffffffffff1614611ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad09061428c565b60405180910390fd5b6001601260016101000a81548160ff021916908315150217905550565b611b07611b01612197565b836122c4565b611b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3d9061436c565b60405180910390fd5b611b5284848484612868565b50505050565b60138181548110611b6857600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e8054611ba4906146b5565b80601f0160208091040260200160405190810160405280929190818152602001828054611bd0906146b5565b8015611c1d5780601f10611bf257610100808354040283529160200191611c1d565b820191906000526020600020905b815481529060010190602001808311611c0057829003601f168201915b505050505081565b6060611c308261219f565b611c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c66906142cc565b60405180910390fd5b6000611c796128c4565b905060001515601260019054906101000a900460ff1615151415611cec576000815111611cb55760405180602001604052806000815250611ce4565b600d611cc084612956565b600e604051602001611cd493929190613f60565b6040516020818303038152906040525b915050611d3c565b6000815111611d0a5760405180602001604052806000815250611d38565b80611d1484612956565b600e604051602001611d2893929190613f2f565b6040516020818303038152906040525b9150505b919050565b60105481565b611d4f612197565b73ffffffffffffffffffffffffffffffffffffffff16611d6d611978565b73ffffffffffffffffffffffffffffffffffffffff1614611dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dba9061428c565b60405180910390fd5b80600e9080519060200190611dd99291906133f2565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e79612197565b73ffffffffffffffffffffffffffffffffffffffff16611e97611978565b73ffffffffffffffffffffffffffffffffffffffff1614611eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee49061428c565b60405180910390fd5b60136000611efb9190613478565b818160139190611f0c929190613499565b505050565b611f19612197565b73ffffffffffffffffffffffffffffffffffffffff16611f37611978565b73ffffffffffffffffffffffffffffffffffffffff1614611f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f849061428c565b60405180910390fd5b80600d9080519060200190611fa39291906133f2565b5050565b611faf612197565b73ffffffffffffffffffffffffffffffffffffffff16611fcd611978565b73ffffffffffffffffffffffffffffffffffffffff1614612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a9061428c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a906140cc565b60405180910390fd5b61209c81612635565b50565b6001816000016000828254019250508190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061218057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612190575061218f82612b03565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661227e83611672565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006122cf8261219f565b61230e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123059061418c565b60405180910390fd5b600061231983611672565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061238857508373ffffffffffffffffffffffffffffffffffffffff1661237084610b6d565b73ffffffffffffffffffffffffffffffffffffffff16145b8061239957506123988185611ddd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123c282611672565b73ffffffffffffffffffffffffffffffffffffffff1614612418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240f906140ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247f9061412c565b60405180910390fd5b612493838383612b6d565b61249e60008261220b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124ee91906145cb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461254591906144ea565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612604838383612c81565b505050565b600081600001549050919050565b612631828260405180602001604052806000815250612c86565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561276a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127619061414c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161285b919061402f565b60405180910390a3505050565b6128738484846123a2565b61287f84848484612ce1565b6128be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b5906140ac565b60405180910390fd5b50505050565b6060600c80546128d3906146b5565b80601f01602080910402602001604051908101604052809291908181526020018280546128ff906146b5565b801561294c5780601f106129215761010080835404028352916020019161294c565b820191906000526020600020905b81548152906001019060200180831161292f57829003601f168201915b5050505050905090565b6060600082141561299e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612afe565b600082905060005b600082146129d05780806129b990614718565b915050600a826129c99190614540565b91506129a6565b60008167ffffffffffffffff811115612a12577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612a445781602001600182028036833780820191505090505b5090505b60008514612af757600182612a5d91906145cb565b9150600a85612a6c9190614761565b6030612a7891906144ea565b60f81b818381518110612ab4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612af09190614540565b9450612a48565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612b78838383612e78565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bbb57612bb681612e7d565b612bfa565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612bf957612bf88382612ec6565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c3d57612c3881613033565b612c7c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c7b57612c7a8282613176565b5b5b505050565b505050565b612c9083836131f5565b612c9d6000848484612ce1565b612cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd3906140ac565b60405180910390fd5b505050565b6000612d028473ffffffffffffffffffffffffffffffffffffffff166133cf565b15612e6b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d2b612197565b8786866040518563ffffffff1660e01b8152600401612d4d9493929190613fc1565b602060405180830381600087803b158015612d6757600080fd5b505af1925050508015612d9857506040513d601f19601f82011682018060405250810190612d959190613917565b60015b612e1b573d8060008114612dc8576040519150601f19603f3d011682016040523d82523d6000602084013e612dcd565b606091505b50600081511415612e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0a906140ac565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e70565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ed3846117b2565b612edd91906145cb565b9050600060076000848152602001908152602001600020549050818114612fc2576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061304791906145cb565b905060006009600084815260200190815260200160002054905060006008838154811061309d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106130e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061315a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613181836117b2565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325c9061422c565b60405180910390fd5b61326e8161219f565b156132ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a59061410c565b60405180910390fd5b6132ba60008383612b6d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461330a91906144ea565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133cb60008383612c81565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546133fe906146b5565b90600052602060002090601f0160209004810192826134205760008555613467565b82601f1061343957805160ff1916838001178555613467565b82800160010185558215613467579182015b8281111561346657825182559160200191906001019061344b565b5b5090506134749190613539565b5090565b50805460008255906000526020600020908101906134969190613539565b50565b828054828255906000526020600020908101928215613528579160200282015b8281111561352757823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906134b9565b5b5090506135359190613539565b5090565b5b8082111561355257600081600090555060010161353a565b5090565b6000613569613564846143ec565b6143c7565b90508281526020810184848401111561358157600080fd5b61358c848285614673565b509392505050565b60006135a76135a28461441d565b6143c7565b9050828152602081018484840111156135bf57600080fd5b6135ca848285614673565b509392505050565b6000813590506135e181614f84565b92915050565b60008083601f8401126135f957600080fd5b8235905067ffffffffffffffff81111561361257600080fd5b60208301915083602082028301111561362a57600080fd5b9250929050565b60008135905061364081614f9b565b92915050565b60008135905061365581614fb2565b92915050565b60008151905061366a81614fb2565b92915050565b600082601f83011261368157600080fd5b8135613691848260208601613556565b91505092915050565b600082601f8301126136ab57600080fd5b81356136bb848260208601613594565b91505092915050565b6000813590506136d381614fc9565b92915050565b6000602082840312156136eb57600080fd5b60006136f9848285016135d2565b91505092915050565b6000806040838503121561371557600080fd5b6000613723858286016135d2565b9250506020613734858286016135d2565b9150509250929050565b60008060006060848603121561375357600080fd5b6000613761868287016135d2565b9350506020613772868287016135d2565b9250506040613783868287016136c4565b9150509250925092565b600080600080608085870312156137a357600080fd5b60006137b1878288016135d2565b94505060206137c2878288016135d2565b93505060406137d3878288016136c4565b925050606085013567ffffffffffffffff8111156137f057600080fd5b6137fc87828801613670565b91505092959194509250565b6000806040838503121561381b57600080fd5b6000613829858286016135d2565b925050602061383a85828601613631565b9150509250929050565b6000806040838503121561385757600080fd5b6000613865858286016135d2565b9250506020613876858286016136c4565b9150509250929050565b6000806020838503121561389357600080fd5b600083013567ffffffffffffffff8111156138ad57600080fd5b6138b9858286016135e7565b92509250509250929050565b6000602082840312156138d757600080fd5b60006138e584828501613631565b91505092915050565b60006020828403121561390057600080fd5b600061390e84828501613646565b91505092915050565b60006020828403121561392957600080fd5b60006139378482850161365b565b91505092915050565b60006020828403121561395257600080fd5b600082013567ffffffffffffffff81111561396c57600080fd5b6139788482850161369a565b91505092915050565b60006020828403121561399357600080fd5b60006139a1848285016136c4565b91505092915050565b60006139b68383613f11565b60208301905092915050565b6139cb816145ff565b82525050565b60006139dc82614473565b6139e681856144a1565b93506139f18361444e565b8060005b83811015613a22578151613a0988826139aa565b9750613a1483614494565b9250506001810190506139f5565b5085935050505092915050565b613a3881614611565b82525050565b6000613a498261447e565b613a5381856144b2565b9350613a63818560208601614682565b613a6c8161484e565b840191505092915050565b6000613a8282614489565b613a8c81856144ce565b9350613a9c818560208601614682565b613aa58161484e565b840191505092915050565b6000613abb82614489565b613ac581856144df565b9350613ad5818560208601614682565b80840191505092915050565b60008154613aee816146b5565b613af881866144df565b94506001821660008114613b135760018114613b2457613b57565b60ff19831686528186019350613b57565b613b2d8561445e565b60005b83811015613b4f57815481890152600182019150602081019050613b30565b838801955050505b50505092915050565b6000613b6d6034836144ce565b9150613b788261485f565b604082019050919050565b6000613b90602b836144ce565b9150613b9b826148ae565b604082019050919050565b6000613bb36032836144ce565b9150613bbe826148fd565b604082019050919050565b6000613bd66026836144ce565b9150613be18261494c565b604082019050919050565b6000613bf96025836144ce565b9150613c048261499b565b604082019050919050565b6000613c1c601c836144ce565b9150613c27826149ea565b602082019050919050565b6000613c3f6024836144ce565b9150613c4a82614a13565b604082019050919050565b6000613c626019836144ce565b9150613c6d82614a62565b602082019050919050565b6000613c85602d836144ce565b9150613c9082614a8b565b604082019050919050565b6000613ca8602c836144ce565b9150613cb382614ada565b604082019050919050565b6000613ccb6038836144ce565b9150613cd682614b29565b604082019050919050565b6000613cee602a836144ce565b9150613cf982614b78565b604082019050919050565b6000613d116029836144ce565b9150613d1c82614bc7565b604082019050919050565b6000613d346029836144ce565b9150613d3f82614c16565b604082019050919050565b6000613d576020836144ce565b9150613d6282614c65565b602082019050919050565b6000613d7a601d836144ce565b9150613d8582614c8e565b602082019050919050565b6000613d9d602c836144ce565b9150613da882614cb7565b604082019050919050565b6000613dc06020836144ce565b9150613dcb82614d06565b602082019050919050565b6000613de36021836144ce565b9150613dee82614d2f565b604082019050919050565b6000613e06602f836144ce565b9150613e1182614d7e565b604082019050919050565b6000613e296011836144ce565b9150613e3482614dcd565b602082019050919050565b6000613e4c6021836144ce565b9150613e5782614df6565b604082019050919050565b6000613e6f602f836144ce565b9150613e7a82614e45565b604082019050919050565b6000613e92602d836144ce565b9150613e9d82614e94565b604082019050919050565b6000613eb56000836144c3565b9150613ec082614ee3565b600082019050919050565b6000613ed86031836144ce565b9150613ee382614ee6565b604082019050919050565b6000613efb602c836144ce565b9150613f0682614f35565b604082019050919050565b613f1a81614669565b82525050565b613f2981614669565b82525050565b6000613f3b8286613ab0565b9150613f478285613ab0565b9150613f538284613ae1565b9150819050949350505050565b6000613f6c8286613ae1565b9150613f788285613ab0565b9150613f848284613ae1565b9150819050949350505050565b6000613f9c82613ea8565b9150819050919050565b6000602082019050613fbb60008301846139c2565b92915050565b6000608082019050613fd660008301876139c2565b613fe360208301866139c2565b613ff06040830185613f20565b81810360608301526140028184613a3e565b905095945050505050565b6000602082019050818103600083015261402781846139d1565b905092915050565b60006020820190506140446000830184613a2f565b92915050565b600060208201905081810360008301526140648184613a77565b905092915050565b6000602082019050818103600083015261408581613b60565b9050919050565b600060208201905081810360008301526140a581613b83565b9050919050565b600060208201905081810360008301526140c581613ba6565b9050919050565b600060208201905081810360008301526140e581613bc9565b9050919050565b6000602082019050818103600083015261410581613bec565b9050919050565b6000602082019050818103600083015261412581613c0f565b9050919050565b6000602082019050818103600083015261414581613c32565b9050919050565b6000602082019050818103600083015261416581613c55565b9050919050565b6000602082019050818103600083015261418581613c78565b9050919050565b600060208201905081810360008301526141a581613c9b565b9050919050565b600060208201905081810360008301526141c581613cbe565b9050919050565b600060208201905081810360008301526141e581613ce1565b9050919050565b6000602082019050818103600083015261420581613d04565b9050919050565b6000602082019050818103600083015261422581613d27565b9050919050565b6000602082019050818103600083015261424581613d4a565b9050919050565b6000602082019050818103600083015261426581613d6d565b9050919050565b6000602082019050818103600083015261428581613d90565b9050919050565b600060208201905081810360008301526142a581613db3565b9050919050565b600060208201905081810360008301526142c581613dd6565b9050919050565b600060208201905081810360008301526142e581613df9565b9050919050565b6000602082019050818103600083015261430581613e1c565b9050919050565b6000602082019050818103600083015261432581613e3f565b9050919050565b6000602082019050818103600083015261434581613e62565b9050919050565b6000602082019050818103600083015261436581613e85565b9050919050565b6000602082019050818103600083015261438581613ecb565b9050919050565b600060208201905081810360008301526143a581613eee565b9050919050565b60006020820190506143c16000830184613f20565b92915050565b60006143d16143e2565b90506143dd82826146e7565b919050565b6000604051905090565b600067ffffffffffffffff8211156144075761440661481f565b5b6144108261484e565b9050602081019050919050565b600067ffffffffffffffff8211156144385761443761481f565b5b6144418261484e565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006144f582614669565b915061450083614669565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561453557614534614792565b5b828201905092915050565b600061454b82614669565b915061455683614669565b925082614566576145656147c1565b5b828204905092915050565b600061457c82614669565b915061458783614669565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145c0576145bf614792565b5b828202905092915050565b60006145d682614669565b91506145e183614669565b9250828210156145f4576145f3614792565b5b828203905092915050565b600061460a82614649565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156146a0578082015181840152602081019050614685565b838111156146af576000848401525b50505050565b600060028204905060018216806146cd57607f821691505b602082108114156146e1576146e06147f0565b5b50919050565b6146f08261484e565b810181811067ffffffffffffffff8211171561470f5761470e61481f565b5b80604052505050565b600061472382614669565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561475657614755614792565b5b600182019050919050565b600061476c82614669565b915061477783614669565b925082614787576147866147c1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f596f752068617665206d696e74656420746865206d6178696d756d20616d6f7560008201527f6e74206f66204d7573636c652044756d6d696573000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f506c656173652073656c65637420686f77206d616e7920796f7520776f756c6460008201527f206c696b6520746f206d696e7400000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f596f752063616e6e6f74206d696e742074686973206d616e79204d7573636c6560008201527f2044756d6d6965732e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f576520617265206e6f742063757272656e746c79206d696e74696e6721000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f57652061726520616c6c206f7574206f66204d7573636c652044756d6d69657360008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f496e737566666963656e742066756e6473000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f7272792c207765277265206f6e6c79206d696e74696e6720746f2074686f60008201527f73652077686974656c6973746564210000000000000000000000000000000000602082015250565b7f576520646f206e6f7420686176652074686973206d616e79204d7573636c652060008201527f44756d6d696573206c6566742100000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b614f8d816145ff565b8114614f9857600080fd5b50565b614fa481614611565b8114614faf57600080fd5b50565b614fbb8161461d565b8114614fc657600080fd5b50565b614fd281614669565b8114614fdd57600080fd5b5056fea2646970667358221220231a4b0a63a22b284b2eea87187e4027a1de313c61cb9fd3494edddd2979c82864736f6c63430008040033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d654c6a70696b33574a38454e464b39724d79616432704653327633384565517358775a50746f5867683953772f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d55694a5974457767687274414865466b7051597159625137746f524e50764e74386436376a6335646d4d70622f00000000000000000000
Deployed Bytecode
0x6080604052600436106102515760003560e01c80635c975abb11610139578063a475b5dd116100b6578063d5abeb011161007a578063d5abeb01146108bc578063da3ef23f146108e7578063e985e9c514610910578063edec5f271461094d578063f2c4ce1e14610976578063f2fde38b1461099f57610251565b8063a475b5dd146107d7578063b88d4fde146107ee578063ba4e5c4914610817578063c668286214610854578063c87b56dd1461087f57610251565b80637f00c7a6116100fd5780637f00c7a6146107045780638da5cb5b1461072d57806395d89b41146107585780639c70b51214610783578063a22cb465146107ae57610251565b80635c975abb1461061d5780636352211e146106485780636c0360eb1461068557806370a08231146106b0578063715018a6146106ed57610251565b80632f745c59116101d2578063438b630011610196578063438b63001461050a57806344a0d68a14610547578063465e2168146105705780634f6ccce71461058c57806351830227146105c957806355f804b3146105f457610251565b80632f745c59146104345780633af32abf146104715780633c952764146104ae5780633ccfd60b146104d757806342842e0e146104e157610251565b806313faede61161021957806313faede61461034d57806318160ddd1461037857806318cae269146103a3578063239c70ae146103e057806323b872dd1461040b57610251565b806301ffc9a71461025657806302329a291461029357806306fdde03146102bc578063081812fc146102e7578063095ea7b314610324575b600080fd5b34801561026257600080fd5b5061027d600480360381019061027891906138ee565b6109c8565b60405161028a919061402f565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b591906138c5565b610a42565b005b3480156102c857600080fd5b506102d1610adb565b6040516102de919061404a565b60405180910390f35b3480156102f357600080fd5b5061030e60048036038101906103099190613981565b610b6d565b60405161031b9190613fa6565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190613844565b610bf2565b005b34801561035957600080fd5b50610362610d0a565b60405161036f91906143ac565b60405180910390f35b34801561038457600080fd5b5061038d610d10565b60405161039a91906143ac565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c591906136d9565b610d1d565b6040516103d791906143ac565b60405180910390f35b3480156103ec57600080fd5b506103f5610d35565b60405161040291906143ac565b60405180910390f35b34801561041757600080fd5b50610432600480360381019061042d919061373e565b610d3b565b005b34801561044057600080fd5b5061045b60048036038101906104569190613844565b610d9b565b60405161046891906143ac565b60405180910390f35b34801561047d57600080fd5b50610498600480360381019061049391906136d9565b610e40565b6040516104a5919061402f565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d091906138c5565b610f15565b005b6104df610fae565b005b3480156104ed57600080fd5b506105086004803603810190610503919061373e565b6110aa565b005b34801561051657600080fd5b50610531600480360381019061052c91906136d9565b6110ca565b60405161053e919061400d565b60405180910390f35b34801561055357600080fd5b5061056e60048036038101906105699190613981565b6111c4565b005b61058a60048036038101906105859190613844565b61124a565b005b34801561059857600080fd5b506105b360048036038101906105ae9190613981565b61151f565b6040516105c091906143ac565b60405180910390f35b3480156105d557600080fd5b506105de6115b6565b6040516105eb919061402f565b60405180910390f35b34801561060057600080fd5b5061061b60048036038101906106169190613940565b6115c9565b005b34801561062957600080fd5b5061063261165f565b60405161063f919061402f565b60405180910390f35b34801561065457600080fd5b5061066f600480360381019061066a9190613981565b611672565b60405161067c9190613fa6565b60405180910390f35b34801561069157600080fd5b5061069a611724565b6040516106a7919061404a565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d291906136d9565b6117b2565b6040516106e491906143ac565b60405180910390f35b3480156106f957600080fd5b5061070261186a565b005b34801561071057600080fd5b5061072b60048036038101906107269190613981565b6118f2565b005b34801561073957600080fd5b50610742611978565b60405161074f9190613fa6565b60405180910390f35b34801561076457600080fd5b5061076d6119a2565b60405161077a919061404a565b60405180910390f35b34801561078f57600080fd5b50610798611a34565b6040516107a5919061402f565b60405180910390f35b3480156107ba57600080fd5b506107d560048036038101906107d09190613808565b611a47565b005b3480156107e357600080fd5b506107ec611a5d565b005b3480156107fa57600080fd5b506108156004803603810190610810919061378d565b611af6565b005b34801561082357600080fd5b5061083e60048036038101906108399190613981565b611b58565b60405161084b9190613fa6565b60405180910390f35b34801561086057600080fd5b50610869611b97565b604051610876919061404a565b60405180910390f35b34801561088b57600080fd5b506108a660048036038101906108a19190613981565b611c25565b6040516108b3919061404a565b60405180910390f35b3480156108c857600080fd5b506108d1611d41565b6040516108de91906143ac565b60405180910390f35b3480156108f357600080fd5b5061090e60048036038101906109099190613940565b611d47565b005b34801561091c57600080fd5b5061093760048036038101906109329190613702565b611ddd565b604051610944919061402f565b60405180910390f35b34801561095957600080fd5b50610974600480360381019061096f9190613880565b611e71565b005b34801561098257600080fd5b5061099d60048036038101906109989190613940565b611f11565b005b3480156109ab57600080fd5b506109c660048036038101906109c191906136d9565b611fa7565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3b5750610a3a826120b5565b5b9050919050565b610a4a612197565b73ffffffffffffffffffffffffffffffffffffffff16610a68611978565b73ffffffffffffffffffffffffffffffffffffffff1614610abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab59061428c565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b606060008054610aea906146b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610b16906146b5565b8015610b635780601f10610b3857610100808354040283529160200191610b63565b820191906000526020600020905b815481529060010190602001808311610b4657829003601f168201915b5050505050905090565b6000610b788261219f565b610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae9061426c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bfd82611672565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c659061430c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c8d612197565b73ffffffffffffffffffffffffffffffffffffffff161480610cbc5750610cbb81610cb6612197565b611ddd565b5b610cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf2906141ac565b60405180910390fd5b610d05838361220b565b505050565b600f5481565b6000600880549050905090565b60146020528060005260406000206000915090505481565b60115481565b610d4c610d46612197565b826122c4565b610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d829061436c565b60405180910390fd5b610d968383836123a2565b505050565b6000610da6836117b2565b8210610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde9061408c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b601380549050811015610f0a578273ffffffffffffffffffffffffffffffffffffffff1660138281548110610ea6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610ef7576001915050610f10565b8080610f0290614718565b915050610e48565b50600090505b919050565b610f1d612197565b73ffffffffffffffffffffffffffffffffffffffff16610f3b611978565b73ffffffffffffffffffffffffffffffffffffffff1614610f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f889061428c565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b610fb6612197565b73ffffffffffffffffffffffffffffffffffffffff16610fd4611978565b73ffffffffffffffffffffffffffffffffffffffff161461102a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110219061428c565b60405180910390fd5b6000611034611978565b73ffffffffffffffffffffffffffffffffffffffff164760405161105790613f91565b60006040518083038185875af1925050503d8060008114611094576040519150601f19603f3d011682016040523d82523d6000602084013e611099565b606091505b50509050806110a757600080fd5b50565b6110c583838360405180602001604052806000815250611af6565b505050565b606060006110d7836117b2565b905060008167ffffffffffffffff81111561111b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156111495781602001602082028036833780820191505090505b50905060005b828110156111b9576111618582610d9b565b82828151811061119a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806111b190614718565b91505061114f565b508092505050919050565b6111cc612197565b73ffffffffffffffffffffffffffffffffffffffff166111ea611978565b73ffffffffffffffffffffffffffffffffffffffff1614611240576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112379061428c565b60405180910390fd5b80600f8190555050565b6000811161128d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112849061416c565b60405180910390fd5b6000611297610d10565b905060105481106112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d4906142ac565b60405180910390fd5b60105482826112ec91906144ea565b111561132d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113249061434c565b60405180910390fd5b611335611978565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146114f757601260009054906101000a900460ff16156113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae9061424c565b60405180910390fd5b601260029054906101000a900460ff1615611415576113d583610e40565b611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140b9061432c565b60405180910390fd5b5b601154611421846117b2565b10611461576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114589061406c565b60405180910390fd5b6011548211156114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d9061420c565b60405180910390fd5b81600f546114b49190614571565b3410156114f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ed906142ec565b60405180910390fd5b5b6000611503600b612609565b905061150f600b61209f565b6115198482612617565b50505050565b6000611529610d10565b821061156a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115619061438c565b60405180910390fd5b600882815481106115a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601260019054906101000a900460ff1681565b6115d1612197565b73ffffffffffffffffffffffffffffffffffffffff166115ef611978565b73ffffffffffffffffffffffffffffffffffffffff1614611645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163c9061428c565b60405180910390fd5b80600c908051906020019061165b9291906133f2565b5050565b601260009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561171b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611712906141ec565b60405180910390fd5b80915050919050565b600c8054611731906146b5565b80601f016020809104026020016040519081016040528092919081815260200182805461175d906146b5565b80156117aa5780601f1061177f576101008083540402835291602001916117aa565b820191906000526020600020905b81548152906001019060200180831161178d57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a906141cc565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611872612197565b73ffffffffffffffffffffffffffffffffffffffff16611890611978565b73ffffffffffffffffffffffffffffffffffffffff16146118e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dd9061428c565b60405180910390fd5b6118f06000612635565b565b6118fa612197565b73ffffffffffffffffffffffffffffffffffffffff16611918611978565b73ffffffffffffffffffffffffffffffffffffffff161461196e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119659061428c565b60405180910390fd5b8060118190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546119b1906146b5565b80601f01602080910402602001604051908101604052809291908181526020018280546119dd906146b5565b8015611a2a5780601f106119ff57610100808354040283529160200191611a2a565b820191906000526020600020905b815481529060010190602001808311611a0d57829003601f168201915b5050505050905090565b601260029054906101000a900460ff1681565b611a59611a52612197565b83836126fb565b5050565b611a65612197565b73ffffffffffffffffffffffffffffffffffffffff16611a83611978565b73ffffffffffffffffffffffffffffffffffffffff1614611ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad09061428c565b60405180910390fd5b6001601260016101000a81548160ff021916908315150217905550565b611b07611b01612197565b836122c4565b611b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3d9061436c565b60405180910390fd5b611b5284848484612868565b50505050565b60138181548110611b6857600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e8054611ba4906146b5565b80601f0160208091040260200160405190810160405280929190818152602001828054611bd0906146b5565b8015611c1d5780601f10611bf257610100808354040283529160200191611c1d565b820191906000526020600020905b815481529060010190602001808311611c0057829003601f168201915b505050505081565b6060611c308261219f565b611c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c66906142cc565b60405180910390fd5b6000611c796128c4565b905060001515601260019054906101000a900460ff1615151415611cec576000815111611cb55760405180602001604052806000815250611ce4565b600d611cc084612956565b600e604051602001611cd493929190613f60565b6040516020818303038152906040525b915050611d3c565b6000815111611d0a5760405180602001604052806000815250611d38565b80611d1484612956565b600e604051602001611d2893929190613f2f565b6040516020818303038152906040525b9150505b919050565b60105481565b611d4f612197565b73ffffffffffffffffffffffffffffffffffffffff16611d6d611978565b73ffffffffffffffffffffffffffffffffffffffff1614611dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dba9061428c565b60405180910390fd5b80600e9080519060200190611dd99291906133f2565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e79612197565b73ffffffffffffffffffffffffffffffffffffffff16611e97611978565b73ffffffffffffffffffffffffffffffffffffffff1614611eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee49061428c565b60405180910390fd5b60136000611efb9190613478565b818160139190611f0c929190613499565b505050565b611f19612197565b73ffffffffffffffffffffffffffffffffffffffff16611f37611978565b73ffffffffffffffffffffffffffffffffffffffff1614611f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f849061428c565b60405180910390fd5b80600d9080519060200190611fa39291906133f2565b5050565b611faf612197565b73ffffffffffffffffffffffffffffffffffffffff16611fcd611978565b73ffffffffffffffffffffffffffffffffffffffff1614612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a9061428c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a906140cc565b60405180910390fd5b61209c81612635565b50565b6001816000016000828254019250508190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061218057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612190575061218f82612b03565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661227e83611672565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006122cf8261219f565b61230e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123059061418c565b60405180910390fd5b600061231983611672565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061238857508373ffffffffffffffffffffffffffffffffffffffff1661237084610b6d565b73ffffffffffffffffffffffffffffffffffffffff16145b8061239957506123988185611ddd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123c282611672565b73ffffffffffffffffffffffffffffffffffffffff1614612418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240f906140ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247f9061412c565b60405180910390fd5b612493838383612b6d565b61249e60008261220b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124ee91906145cb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461254591906144ea565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612604838383612c81565b505050565b600081600001549050919050565b612631828260405180602001604052806000815250612c86565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561276a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127619061414c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161285b919061402f565b60405180910390a3505050565b6128738484846123a2565b61287f84848484612ce1565b6128be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b5906140ac565b60405180910390fd5b50505050565b6060600c80546128d3906146b5565b80601f01602080910402602001604051908101604052809291908181526020018280546128ff906146b5565b801561294c5780601f106129215761010080835404028352916020019161294c565b820191906000526020600020905b81548152906001019060200180831161292f57829003601f168201915b5050505050905090565b6060600082141561299e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612afe565b600082905060005b600082146129d05780806129b990614718565b915050600a826129c99190614540565b91506129a6565b60008167ffffffffffffffff811115612a12577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612a445781602001600182028036833780820191505090505b5090505b60008514612af757600182612a5d91906145cb565b9150600a85612a6c9190614761565b6030612a7891906144ea565b60f81b818381518110612ab4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612af09190614540565b9450612a48565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612b78838383612e78565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bbb57612bb681612e7d565b612bfa565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612bf957612bf88382612ec6565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c3d57612c3881613033565b612c7c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c7b57612c7a8282613176565b5b5b505050565b505050565b612c9083836131f5565b612c9d6000848484612ce1565b612cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd3906140ac565b60405180910390fd5b505050565b6000612d028473ffffffffffffffffffffffffffffffffffffffff166133cf565b15612e6b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d2b612197565b8786866040518563ffffffff1660e01b8152600401612d4d9493929190613fc1565b602060405180830381600087803b158015612d6757600080fd5b505af1925050508015612d9857506040513d601f19601f82011682018060405250810190612d959190613917565b60015b612e1b573d8060008114612dc8576040519150601f19603f3d011682016040523d82523d6000602084013e612dcd565b606091505b50600081511415612e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0a906140ac565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e70565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ed3846117b2565b612edd91906145cb565b9050600060076000848152602001908152602001600020549050818114612fc2576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061304791906145cb565b905060006009600084815260200190815260200160002054905060006008838154811061309d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106130e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061315a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613181836117b2565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325c9061422c565b60405180910390fd5b61326e8161219f565b156132ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a59061410c565b60405180910390fd5b6132ba60008383612b6d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461330a91906144ea565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133cb60008383612c81565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546133fe906146b5565b90600052602060002090601f0160209004810192826134205760008555613467565b82601f1061343957805160ff1916838001178555613467565b82800160010185558215613467579182015b8281111561346657825182559160200191906001019061344b565b5b5090506134749190613539565b5090565b50805460008255906000526020600020908101906134969190613539565b50565b828054828255906000526020600020908101928215613528579160200282015b8281111561352757823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906134b9565b5b5090506135359190613539565b5090565b5b8082111561355257600081600090555060010161353a565b5090565b6000613569613564846143ec565b6143c7565b90508281526020810184848401111561358157600080fd5b61358c848285614673565b509392505050565b60006135a76135a28461441d565b6143c7565b9050828152602081018484840111156135bf57600080fd5b6135ca848285614673565b509392505050565b6000813590506135e181614f84565b92915050565b60008083601f8401126135f957600080fd5b8235905067ffffffffffffffff81111561361257600080fd5b60208301915083602082028301111561362a57600080fd5b9250929050565b60008135905061364081614f9b565b92915050565b60008135905061365581614fb2565b92915050565b60008151905061366a81614fb2565b92915050565b600082601f83011261368157600080fd5b8135613691848260208601613556565b91505092915050565b600082601f8301126136ab57600080fd5b81356136bb848260208601613594565b91505092915050565b6000813590506136d381614fc9565b92915050565b6000602082840312156136eb57600080fd5b60006136f9848285016135d2565b91505092915050565b6000806040838503121561371557600080fd5b6000613723858286016135d2565b9250506020613734858286016135d2565b9150509250929050565b60008060006060848603121561375357600080fd5b6000613761868287016135d2565b9350506020613772868287016135d2565b9250506040613783868287016136c4565b9150509250925092565b600080600080608085870312156137a357600080fd5b60006137b1878288016135d2565b94505060206137c2878288016135d2565b93505060406137d3878288016136c4565b925050606085013567ffffffffffffffff8111156137f057600080fd5b6137fc87828801613670565b91505092959194509250565b6000806040838503121561381b57600080fd5b6000613829858286016135d2565b925050602061383a85828601613631565b9150509250929050565b6000806040838503121561385757600080fd5b6000613865858286016135d2565b9250506020613876858286016136c4565b9150509250929050565b6000806020838503121561389357600080fd5b600083013567ffffffffffffffff8111156138ad57600080fd5b6138b9858286016135e7565b92509250509250929050565b6000602082840312156138d757600080fd5b60006138e584828501613631565b91505092915050565b60006020828403121561390057600080fd5b600061390e84828501613646565b91505092915050565b60006020828403121561392957600080fd5b60006139378482850161365b565b91505092915050565b60006020828403121561395257600080fd5b600082013567ffffffffffffffff81111561396c57600080fd5b6139788482850161369a565b91505092915050565b60006020828403121561399357600080fd5b60006139a1848285016136c4565b91505092915050565b60006139b68383613f11565b60208301905092915050565b6139cb816145ff565b82525050565b60006139dc82614473565b6139e681856144a1565b93506139f18361444e565b8060005b83811015613a22578151613a0988826139aa565b9750613a1483614494565b9250506001810190506139f5565b5085935050505092915050565b613a3881614611565b82525050565b6000613a498261447e565b613a5381856144b2565b9350613a63818560208601614682565b613a6c8161484e565b840191505092915050565b6000613a8282614489565b613a8c81856144ce565b9350613a9c818560208601614682565b613aa58161484e565b840191505092915050565b6000613abb82614489565b613ac581856144df565b9350613ad5818560208601614682565b80840191505092915050565b60008154613aee816146b5565b613af881866144df565b94506001821660008114613b135760018114613b2457613b57565b60ff19831686528186019350613b57565b613b2d8561445e565b60005b83811015613b4f57815481890152600182019150602081019050613b30565b838801955050505b50505092915050565b6000613b6d6034836144ce565b9150613b788261485f565b604082019050919050565b6000613b90602b836144ce565b9150613b9b826148ae565b604082019050919050565b6000613bb36032836144ce565b9150613bbe826148fd565b604082019050919050565b6000613bd66026836144ce565b9150613be18261494c565b604082019050919050565b6000613bf96025836144ce565b9150613c048261499b565b604082019050919050565b6000613c1c601c836144ce565b9150613c27826149ea565b602082019050919050565b6000613c3f6024836144ce565b9150613c4a82614a13565b604082019050919050565b6000613c626019836144ce565b9150613c6d82614a62565b602082019050919050565b6000613c85602d836144ce565b9150613c9082614a8b565b604082019050919050565b6000613ca8602c836144ce565b9150613cb382614ada565b604082019050919050565b6000613ccb6038836144ce565b9150613cd682614b29565b604082019050919050565b6000613cee602a836144ce565b9150613cf982614b78565b604082019050919050565b6000613d116029836144ce565b9150613d1c82614bc7565b604082019050919050565b6000613d346029836144ce565b9150613d3f82614c16565b604082019050919050565b6000613d576020836144ce565b9150613d6282614c65565b602082019050919050565b6000613d7a601d836144ce565b9150613d8582614c8e565b602082019050919050565b6000613d9d602c836144ce565b9150613da882614cb7565b604082019050919050565b6000613dc06020836144ce565b9150613dcb82614d06565b602082019050919050565b6000613de36021836144ce565b9150613dee82614d2f565b604082019050919050565b6000613e06602f836144ce565b9150613e1182614d7e565b604082019050919050565b6000613e296011836144ce565b9150613e3482614dcd565b602082019050919050565b6000613e4c6021836144ce565b9150613e5782614df6565b604082019050919050565b6000613e6f602f836144ce565b9150613e7a82614e45565b604082019050919050565b6000613e92602d836144ce565b9150613e9d82614e94565b604082019050919050565b6000613eb56000836144c3565b9150613ec082614ee3565b600082019050919050565b6000613ed86031836144ce565b9150613ee382614ee6565b604082019050919050565b6000613efb602c836144ce565b9150613f0682614f35565b604082019050919050565b613f1a81614669565b82525050565b613f2981614669565b82525050565b6000613f3b8286613ab0565b9150613f478285613ab0565b9150613f538284613ae1565b9150819050949350505050565b6000613f6c8286613ae1565b9150613f788285613ab0565b9150613f848284613ae1565b9150819050949350505050565b6000613f9c82613ea8565b9150819050919050565b6000602082019050613fbb60008301846139c2565b92915050565b6000608082019050613fd660008301876139c2565b613fe360208301866139c2565b613ff06040830185613f20565b81810360608301526140028184613a3e565b905095945050505050565b6000602082019050818103600083015261402781846139d1565b905092915050565b60006020820190506140446000830184613a2f565b92915050565b600060208201905081810360008301526140648184613a77565b905092915050565b6000602082019050818103600083015261408581613b60565b9050919050565b600060208201905081810360008301526140a581613b83565b9050919050565b600060208201905081810360008301526140c581613ba6565b9050919050565b600060208201905081810360008301526140e581613bc9565b9050919050565b6000602082019050818103600083015261410581613bec565b9050919050565b6000602082019050818103600083015261412581613c0f565b9050919050565b6000602082019050818103600083015261414581613c32565b9050919050565b6000602082019050818103600083015261416581613c55565b9050919050565b6000602082019050818103600083015261418581613c78565b9050919050565b600060208201905081810360008301526141a581613c9b565b9050919050565b600060208201905081810360008301526141c581613cbe565b9050919050565b600060208201905081810360008301526141e581613ce1565b9050919050565b6000602082019050818103600083015261420581613d04565b9050919050565b6000602082019050818103600083015261422581613d27565b9050919050565b6000602082019050818103600083015261424581613d4a565b9050919050565b6000602082019050818103600083015261426581613d6d565b9050919050565b6000602082019050818103600083015261428581613d90565b9050919050565b600060208201905081810360008301526142a581613db3565b9050919050565b600060208201905081810360008301526142c581613dd6565b9050919050565b600060208201905081810360008301526142e581613df9565b9050919050565b6000602082019050818103600083015261430581613e1c565b9050919050565b6000602082019050818103600083015261432581613e3f565b9050919050565b6000602082019050818103600083015261434581613e62565b9050919050565b6000602082019050818103600083015261436581613e85565b9050919050565b6000602082019050818103600083015261438581613ecb565b9050919050565b600060208201905081810360008301526143a581613eee565b9050919050565b60006020820190506143c16000830184613f20565b92915050565b60006143d16143e2565b90506143dd82826146e7565b919050565b6000604051905090565b600067ffffffffffffffff8211156144075761440661481f565b5b6144108261484e565b9050602081019050919050565b600067ffffffffffffffff8211156144385761443761481f565b5b6144418261484e565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006144f582614669565b915061450083614669565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561453557614534614792565b5b828201905092915050565b600061454b82614669565b915061455683614669565b925082614566576145656147c1565b5b828204905092915050565b600061457c82614669565b915061458783614669565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145c0576145bf614792565b5b828202905092915050565b60006145d682614669565b91506145e183614669565b9250828210156145f4576145f3614792565b5b828203905092915050565b600061460a82614649565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156146a0578082015181840152602081019050614685565b838111156146af576000848401525b50505050565b600060028204905060018216806146cd57607f821691505b602082108114156146e1576146e06147f0565b5b50919050565b6146f08261484e565b810181811067ffffffffffffffff8211171561470f5761470e61481f565b5b80604052505050565b600061472382614669565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561475657614755614792565b5b600182019050919050565b600061476c82614669565b915061477783614669565b925082614787576147866147c1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f596f752068617665206d696e74656420746865206d6178696d756d20616d6f7560008201527f6e74206f66204d7573636c652044756d6d696573000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f506c656173652073656c65637420686f77206d616e7920796f7520776f756c6460008201527f206c696b6520746f206d696e7400000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f596f752063616e6e6f74206d696e742074686973206d616e79204d7573636c6560008201527f2044756d6d6965732e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f576520617265206e6f742063757272656e746c79206d696e74696e6721000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f57652061726520616c6c206f7574206f66204d7573636c652044756d6d69657360008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f496e737566666963656e742066756e6473000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f7272792c207765277265206f6e6c79206d696e74696e6720746f2074686f60008201527f73652077686974656c6973746564210000000000000000000000000000000000602082015250565b7f576520646f206e6f7420686176652074686973206d616e79204d7573636c652060008201527f44756d6d696573206c6566742100000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b614f8d816145ff565b8114614f9857600080fd5b50565b614fa481614611565b8114614faf57600080fd5b50565b614fbb8161461d565b8114614fc657600080fd5b50565b614fd281614669565b8114614fdd57600080fd5b5056fea2646970667358221220231a4b0a63a22b284b2eea87187e4027a1de313c61cb9fd3494edddd2979c82864736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d654c6a70696b33574a38454e464b39724d79616432704653327633384565517358775a50746f5867683953772f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d55694a5974457767687274414865466b7051597159625137746f524e50764e74386436376a6335646d4d70622f00000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmeLjpik3WJ8ENFK9rMyad2pFS2v38EeQsXwZPtoXgh9Sw/
Arg [1] : _initNotRevealedUri (string): ipfs://QmUiJYtEwghrtAHeFkpQYqYbQ7toRNPvNt8d67jc5dmMpb/
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d654c6a70696b33574a38454e464b39724d796164327046
Arg [4] : 53327633384565517358775a50746f5867683953772f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [6] : 697066733a2f2f516d55694a5974457767687274414865466b70515971596251
Arg [7] : 37746f524e50764e74386436376a6335646d4d70622f00000000000000000000
Loading...
Loading
Loading...
Loading

Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $3,871.31 | 0.5 | $1,935.65 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.