ERC-721
Overview
Max Total Supply
285 FNA
Holders
74
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
4 FNALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Fauna
Compiler Version
v0.8.16+commit.07a7930e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity >=0.8.16 <0.9.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract Fauna is ERC721, ReentrancyGuard, Ownable { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private supply; mapping(address => bool) public whitelist; mapping(address => uint256) public preMinted; mapping(address => uint256) public publicMinted; string public uriPrefix = "ipfs://"; string public uriSuffix = ".json"; string public hiddenMetadataUri; string public uriContract = "ipfs://QmfJg1gMxLnh2TJeeoiaLzmAR6GPaSD5kBZLMgrnQRnH8p"; uint256 public price = 0.069 ether; uint256 public maxSupply = 444; uint256 public preMintTxLimit = 2; uint256 public publicMintTxLimit = 5; uint256 public maxPreMintAmount = 2; uint256 public maxPublicMintAmount = 5; bool public preMintPaused = true; bool public paused = true; bool public revealed = false; address[] public internalAccounts = [ 0x831Fc358124D5899B731472Ebe2a4BF1cD6C3e1e, 0xAE0C0E1E098a1c5F711A78AfeC0286CCd79169bc, 0xd01161a8C437ee941E80415d74E1b3311356F44b ]; constructor() ERC721("Fauna", "FNA") { setHiddenMetadataUri("ipfs://QmQgmiKstiWbff47HUAzdcnoAMp2zuR9Dh4oL97nrdNEiF"); for (uint256 i = 0; i < internalAccounts.length; i++) { address _receiver = internalAccounts[i]; for (uint256 j= 0; j < 8; j++) { supply.increment(); _safeMint(_receiver, supply.current()); } } } modifier publicMintCompliance(uint256 _mintAmount) { uint256 requestedAmount = supply.current() + _mintAmount; require(_mintAmount > 0 && _mintAmount <= publicMintTxLimit, "You have exceeded the limit of mints per transaction"); require(publicMinted[msg.sender] + _mintAmount <= maxPublicMintAmount, "You have already minted your limit"); require(requestedAmount <= maxSupply, "SOLD OUT"); require(!paused, "Minting is not currently allowed!"); require(msg.value >= price * _mintAmount, "You did not send enough ETH"); _; } modifier preMintCompliance(uint256 _mintAmount) { uint256 requestedAmount = supply.current() + _mintAmount; require(_mintAmount > 0 && _mintAmount <= preMintTxLimit, "You have exceeded the limit of mints per transaction"); require(preMinted[msg.sender] + _mintAmount <= maxPreMintAmount, "This transaction exceeds your whitelist mint limit"); require(requestedAmount <= maxSupply, "SOLD OUT"); require(!preMintPaused, "Minting is not currently allowed!"); require(msg.value >= price * _mintAmount, "You did not send enough ETH"); _; } modifier airDropCompliance(uint256 _mintAmount) { uint256 requestedAmount = supply.current() + _mintAmount; require(requestedAmount <= maxSupply, "SOLD OUT"); _; } function preMint( uint256 _mintAmount) public payable preMintCompliance(_mintAmount) nonReentrant { require(whitelist[msg.sender], "You are not on the list"); preMinted[msg.sender] += _mintAmount; _mintLoop(msg.sender, _mintAmount); } function mint(uint256 _mintAmount) public payable publicMintCompliance(_mintAmount) nonReentrant { publicMinted[msg.sender] += _mintAmount; _mintLoop(msg.sender, _mintAmount); } function airDrop(uint256 _mintAmount, address _receiver) public airDropCompliance(_mintAmount) onlyOwner nonReentrant { _mintLoop(_receiver, _mintAmount); } function _mintLoop(address _receiver, uint256 _mintAmount) internal { for (uint256 i = 0; i < _mintAmount; i++) { supply.increment(); _safeMint(_receiver, supply.current()); } } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function totalSupply() public view returns (uint256) { return supply.current(); } function checkPreMintAvailableToMe() public view returns (uint256) { if(!whitelist[msg.sender]){ return 0; }else{ return (maxPreMintAmount - preMinted[msg.sender]); } } function checkPublicMintAvailableToMe() public view returns (uint256) { return (maxPublicMintAmount - publicMinted[msg.sender]); } function setPreMintTxLimit(uint256 _preMintTxLimit) public onlyOwner { preMintTxLimit = _preMintTxLimit; } function setPublicMintTxLimit(uint256 _publicMintTxLimit) public onlyOwner { publicMintTxLimit = _publicMintTxLimit; } function setMaxPreMintAmount(uint256 _maxPreMintAmount) public onlyOwner { maxPreMintAmount = _maxPreMintAmount; } function setMaxPublicMintAmount(uint256 _maxPublicMintAmount) public onlyOwner { maxPublicMintAmount = _maxPublicMintAmount; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setPreMintPaused(bool _state) public onlyOwner { preMintPaused = _state; } function setPaused(bool _state) public onlyOwner { paused = _state; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } function contractURI() public view returns (string memory) { return uriContract; } function setContractURI(string memory _contractURI) public onlyOwner { uriContract = _contractURI; } function createWhiteList(address[] calldata _users) public onlyOwner{ for(uint256 i = 0; i < _users.length; i++){ whitelist[_users[i]] = true; } } function withdraw() public onlyOwner nonReentrant{ uint256 withdrawAmount = (address(this).balance * 333 / 1000); (bool dev, ) = payable(0x831Fc358124D5899B731472Ebe2a4BF1cD6C3e1e).call{value: withdrawAmount}(""); require(dev); (bool artist, ) = payable(0xAE0C0E1E098a1c5F711A78AfeC0286CCd79169bc).call{value: withdrawAmount}(""); require(artist); (bool marketing, ) = payable(0xd01161a8C437ee941E80415d74E1b3311356F44b).call{value: address(this).balance}(""); require(marketing); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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: address zero is not a valid owner"); 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: invalid token ID"); 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) { _requireMinted(tokenId); 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 overridden 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 token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); 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: caller is not token 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: caller is not token 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) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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 an {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 an {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 Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @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 { /// @solidity memory-safe-assembly 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 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 v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/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.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkPreMintAvailableToMe","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkPublicMintAvailableToMe","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"createWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"internalAccounts","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":[],"name":"maxPreMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicMintAmount","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":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"preMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preMintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preMintTxLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintTxLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPreMintAmount","type":"uint256"}],"name":"setMaxPreMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPublicMintAmount","type":"uint256"}],"name":"setMaxPublicMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPreMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preMintTxLimit","type":"uint256"}],"name":"setPreMintTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicMintTxLimit","type":"uint256"}],"name":"setPublicMintTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriContract","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600781526020017f697066733a2f2f00000000000000000000000000000000000000000000000000815250600c90816200004a919062000db4565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d908162000091919062000db4565b506040518060600160405280603581526020016200620b60359139600f9081620000bc919062000db4565b5066f52322698080006010556101bc60115560026012556005601355600260145560056015556001601660006101000a81548160ff0219169083151502179055506001601660016101000a81548160ff0219169083151502179055506000601660026101000a81548160ff021916908315150217905550604051806060016040528073831fc358124d5899b731472ebe2a4bf1cd6c3e1e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173ae0c0e1e098a1c5f711a78afec0286ccd79169bc73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173d01161a8c437ee941e80415d74e1b3311356f44b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681525060179060036200022092919062000a8c565b503480156200022e57600080fd5b506040518060400160405280600581526020017f4661756e610000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f464e4100000000000000000000000000000000000000000000000000000000008152508160009081620002ac919062000db4565b508060019081620002be919062000db4565b5050506001600681905550620002e9620002dd620003eb60201b60201c565b620003f360201b60201c565b620003136040518060600160405280603581526020016200624060359139620004b960201b60201c565b60005b601780549050811015620003e4576000601782815481106200033d576200033c62000e9b565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060005b6008811015620003cc576200038e6008620004de60201b620025641760201c565b620003b682620003aa6008620004f460201b6200257a1760201c565b6200050260201b60201c565b8080620003c39062000ef9565b9150506200036d565b50508080620003db9062000ef9565b91505062000316565b5062001358565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004c96200052860201b60201c565b80600e9081620004da919062000db4565b5050565b6001816000016000828254019250508190555050565b600081600001549050919050565b62000524828260405180602001604052806000815250620005b960201b60201c565b5050565b62000538620003eb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200055e6200062760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620005b7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005ae9062000fa7565b60405180910390fd5b565b620005cb83836200065160201b60201c565b620005e060008484846200084a60201b60201c565b62000622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000619906200103f565b60405180910390fd5b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620006c3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006ba90620010b1565b60405180910390fd5b620006d481620009f360201b60201c565b1562000717576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200070e9062001123565b60405180910390fd5b6200072b6000838362000a5f60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200077d919062001145565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620008466000838362000a6460201b60201c565b5050565b6000620008788473ffffffffffffffffffffffffffffffffffffffff1662000a6960201b620025881760201c565b15620009e6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620008aa620003eb60201b60201c565b8786866040518563ffffffff1660e01b8152600401620008ce949392919062001270565b6020604051808303816000875af19250505080156200090d57506040513d601f19601f820116820180604052508101906200090a919062001326565b60015b62000995573d806000811462000940576040519150601f19603f3d011682016040523d82523d6000602084013e62000945565b606091505b5060008151036200098d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000984906200103f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620009eb565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805482825590600052602060002090810192821562000b08579160200282015b8281111562000b075782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000aad565b5b50905062000b17919062000b1b565b5090565b5b8082111562000b3657600081600090555060010162000b1c565b5090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000bbc57607f821691505b60208210810362000bd25762000bd162000b74565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c3c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bfd565b62000c48868362000bfd565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c9562000c8f62000c898462000c60565b62000c6a565b62000c60565b9050919050565b6000819050919050565b62000cb18362000c74565b62000cc962000cc08262000c9c565b84845462000c0a565b825550505050565b600090565b62000ce062000cd1565b62000ced81848462000ca6565b505050565b5b8181101562000d155762000d0960008262000cd6565b60018101905062000cf3565b5050565b601f82111562000d645762000d2e8162000bd8565b62000d398462000bed565b8101602085101562000d49578190505b62000d6162000d588562000bed565b83018262000cf2565b50505b505050565b600082821c905092915050565b600062000d896000198460080262000d69565b1980831691505092915050565b600062000da4838362000d76565b9150826002028217905092915050565b62000dbf8262000b3a565b67ffffffffffffffff81111562000ddb5762000dda62000b45565b5b62000de7825462000ba3565b62000df482828562000d19565b600060209050601f83116001811462000e2c576000841562000e17578287015190505b62000e23858262000d96565b86555062000e93565b601f19841662000e3c8662000bd8565b60005b8281101562000e665784890151825560018201915060208501945060208101905062000e3f565b8683101562000e86578489015162000e82601f89168262000d76565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f068262000c60565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362000f3b5762000f3a62000eca565b5b600182019050919050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000f8f60208362000f46565b915062000f9c8262000f57565b602082019050919050565b6000602082019050818103600083015262000fc28162000f80565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006200102760328362000f46565b9150620010348262000fc9565b604082019050919050565b600060208201905081810360008301526200105a8162001018565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006200109960208362000f46565b9150620010a68262001061565b602082019050919050565b60006020820190508181036000830152620010cc816200108a565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006200110b601c8362000f46565b91506200111882620010d3565b602082019050919050565b600060208201905081810360008301526200113e81620010fc565b9050919050565b6000620011528262000c60565b91506200115f8362000c60565b92508282019050808211156200117a576200117962000eca565b5b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620011ad8262001180565b9050919050565b620011bf81620011a0565b82525050565b620011d08162000c60565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562001212578082015181840152602081019050620011f5565b60008484015250505050565b6000601f19601f8301169050919050565b60006200123c82620011d6565b620012488185620011e1565b93506200125a818560208601620011f2565b62001265816200121e565b840191505092915050565b6000608082019050620012876000830187620011b4565b620012966020830186620011b4565b620012a56040830185620011c5565b8181036060830152620012b981846200122f565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6200130081620012c9565b81146200130c57600080fd5b50565b6000815190506200132081620012f5565b92915050565b6000602082840312156200133f576200133e620012c4565b5b60006200134f848285016200130f565b91505092915050565b614ea380620013686000396000f3fe6080604052600436106103355760003560e01c806381764cf8116101ab578063aed38015116100f7578063e0a8085311610095578063e985e9c51161006f578063e985e9c514610bec578063ea457d0f14610c29578063f2fde38b14610c52578063fe86deca14610c7b57610335565b8063e0a8085314610b6d578063e32b1bf414610b96578063e8a3d48514610bc157610335565b8063c87b56dd116100d1578063c87b56dd14610ab1578063ce77fcc114610aee578063d5abeb0114610b19578063d8bd5b0914610b4457610335565b8063aed3801514610a34578063b47fbd1714610a5d578063b88d4fde14610a8857610335565b806395d89b4111610164578063a035b1fe1161013e578063a035b1fe14610999578063a0712d68146109c4578063a22cb465146109e0578063a45ba8e714610a0957610335565b806395d89b41146108f4578063963c41771461091f5780639b19251a1461095c57610335565b806381764cf8146107f35780638aa37268146108305780638ad433ac1461085b5780638da5cb5b146108775780639212960a146108a2578063938e3d7b146108cb57610335565b806342842e0e1161028557806362b99ad41161022357806370a08231116101fd57806370a082311461074d578063715018a61461078a57806379fcb984146107a15780637ec4a659146107ca57610335565b806362b99ad4146106ba5780636352211e146106e557806368abfea91461072257610335565b80634fdd43cb1161025f5780634fdd43cb1461061057806351830227146106395780635503a0e8146106645780635c975abb1461068f57610335565b806342842e0e1461057f578063438b6300146105a85780634df3c52f146105e557610335565b80631015805b116102f257806318160ddd116102cc57806318160ddd146104eb57806323b872dd146105165780633ccfd60b1461053f5780633ee212f51461055657610335565b80631015805b1461045c57806316ba10e01461049957806316c38b3c146104c257610335565b806301ffc9a71461033a57806303d8acef1461037757806306fdde03146103a2578063081812fc146103cd578063095ea7b31461040a5780630e82b63d14610433575b600080fd5b34801561034657600080fd5b50610361600480360381019061035c9190613415565b610ca6565b60405161036e919061345d565b60405180910390f35b34801561038357600080fd5b5061038c610d88565b6040516103999190613491565b60405180910390f35b3480156103ae57600080fd5b506103b7610d8e565b6040516103c4919061353c565b60405180910390f35b3480156103d957600080fd5b506103f460048036038101906103ef919061358a565b610e20565b60405161040191906135f8565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c919061363f565b610e66565b005b34801561043f57600080fd5b5061045a6004803603810190610455919061358a565b610f7d565b005b34801561046857600080fd5b50610483600480360381019061047e919061367f565b610f8f565b6040516104909190613491565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb91906137e1565b610fa7565b005b3480156104ce57600080fd5b506104e960048036038101906104e49190613856565b610fc2565b005b3480156104f757600080fd5b50610500610fe7565b60405161050d9190613491565b60405180910390f35b34801561052257600080fd5b5061053d60048036038101906105389190613883565b610ff8565b005b34801561054b57600080fd5b50610554611058565b005b34801561056257600080fd5b5061057d6004803603810190610578919061358a565b611278565b005b34801561058b57600080fd5b506105a660048036038101906105a19190613883565b61128a565b005b3480156105b457600080fd5b506105cf60048036038101906105ca919061367f565b6112aa565b6040516105dc9190613994565b60405180910390f35b3480156105f157600080fd5b506105fa6113b4565b6040516106079190613491565b60405180910390f35b34801561061c57600080fd5b50610637600480360381019061063291906137e1565b6113ba565b005b34801561064557600080fd5b5061064e6113d5565b60405161065b919061345d565b60405180910390f35b34801561067057600080fd5b506106796113e8565b604051610686919061353c565b60405180910390f35b34801561069b57600080fd5b506106a4611476565b6040516106b1919061345d565b60405180910390f35b3480156106c657600080fd5b506106cf611489565b6040516106dc919061353c565b60405180910390f35b3480156106f157600080fd5b5061070c6004803603810190610707919061358a565b611517565b60405161071991906135f8565b60405180910390f35b34801561072e57600080fd5b506107376115c8565b604051610744919061345d565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f919061367f565b6115db565b6040516107819190613491565b60405180910390f35b34801561079657600080fd5b5061079f611692565b005b3480156107ad57600080fd5b506107c860048036038101906107c3919061358a565b6116a6565b005b3480156107d657600080fd5b506107f160048036038101906107ec91906137e1565b6116b8565b005b3480156107ff57600080fd5b5061081a6004803603810190610815919061358a565b6116d3565b60405161082791906135f8565b60405180910390f35b34801561083c57600080fd5b50610845611712565b604051610852919061353c565b60405180910390f35b6108756004803603810190610870919061358a565b6117a0565b005b34801561088357600080fd5b5061088c611ac5565b60405161089991906135f8565b60405180910390f35b3480156108ae57600080fd5b506108c960048036038101906108c49190613a16565b611aef565b005b3480156108d757600080fd5b506108f260048036038101906108ed91906137e1565b611b9c565b005b34801561090057600080fd5b50610909611bb7565b604051610916919061353c565b60405180910390f35b34801561092b57600080fd5b506109466004803603810190610941919061367f565b611c49565b6040516109539190613491565b60405180910390f35b34801561096857600080fd5b50610983600480360381019061097e919061367f565b611c61565b604051610990919061345d565b60405180910390f35b3480156109a557600080fd5b506109ae611c81565b6040516109bb9190613491565b60405180910390f35b6109de60048036038101906109d9919061358a565b611c87565b005b3480156109ec57600080fd5b50610a076004803603810190610a029190613a63565b611f20565b005b348015610a1557600080fd5b50610a1e611f36565b604051610a2b919061353c565b60405180910390f35b348015610a4057600080fd5b50610a5b6004803603810190610a569190613aa3565b611fc4565b005b348015610a6957600080fd5b50610a72612090565b604051610a7f9190613491565b60405180910390f35b348015610a9457600080fd5b50610aaf6004803603810190610aaa9190613b84565b612096565b005b348015610abd57600080fd5b50610ad86004803603810190610ad3919061358a565b6120f8565b604051610ae5919061353c565b60405180910390f35b348015610afa57600080fd5b50610b03612250565b604051610b109190613491565b60405180910390f35b348015610b2557600080fd5b50610b2e6122a4565b604051610b3b9190613491565b60405180910390f35b348015610b5057600080fd5b50610b6b6004803603810190610b66919061358a565b6122aa565b005b348015610b7957600080fd5b50610b946004803603810190610b8f9190613856565b6122bc565b005b348015610ba257600080fd5b50610bab6122e1565b604051610bb89190613491565b60405180910390f35b348015610bcd57600080fd5b50610bd6612390565b604051610be3919061353c565b60405180910390f35b348015610bf857600080fd5b50610c136004803603810190610c0e9190613c07565b612422565b604051610c20919061345d565b60405180910390f35b348015610c3557600080fd5b50610c506004803603810190610c4b9190613856565b6124b6565b005b348015610c5e57600080fd5b50610c796004803603810190610c74919061367f565b6124db565b005b348015610c8757600080fd5b50610c9061255e565b604051610c9d9190613491565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d7157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d815750610d80826125ab565b5b9050919050565b60155481565b606060008054610d9d90613c76565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc990613c76565b8015610e165780601f10610deb57610100808354040283529160200191610e16565b820191906000526020600020905b815481529060010190602001808311610df957829003601f168201915b5050505050905090565b6000610e2b82612615565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e7182611517565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed890613d19565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f00612660565b73ffffffffffffffffffffffffffffffffffffffff161480610f2f5750610f2e81610f29612660565b612422565b5b610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6590613dab565b60405180910390fd5b610f788383612668565b505050565b610f85612721565b8060138190555050565b600b6020528060005260406000206000915090505481565b610faf612721565b80600d9081610fbe9190613f77565b5050565b610fca612721565b80601660016101000a81548160ff02191690831515021790555050565b6000610ff3600861257a565b905090565b611009611003612660565b8261279f565b611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f906140bb565b60405180910390fd5b611053838383612834565b505050565b611060612721565b6002600654036110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c90614127565b60405180910390fd5b600260068190555060006103e861014d476110c09190614176565b6110ca91906141ff565b9050600073831fc358124d5899b731472ebe2a4bf1cd6c3e1e73ffffffffffffffffffffffffffffffffffffffff168260405161110690614261565b60006040518083038185875af1925050503d8060008114611143576040519150601f19603f3d011682016040523d82523d6000602084013e611148565b606091505b505090508061115657600080fd5b600073ae0c0e1e098a1c5f711a78afec0286ccd79169bc73ffffffffffffffffffffffffffffffffffffffff168360405161119090614261565b60006040518083038185875af1925050503d80600081146111cd576040519150601f19603f3d011682016040523d82523d6000602084013e6111d2565b606091505b50509050806111e057600080fd5b600073d01161a8c437ee941e80415d74e1b3311356f44b73ffffffffffffffffffffffffffffffffffffffff164760405161121a90614261565b60006040518083038185875af1925050503d8060008114611257576040519150601f19603f3d011682016040523d82523d6000602084013e61125c565b606091505b505090508061126a57600080fd5b505050506001600681905550565b611280612721565b8060128190555050565b6112a583838360405180602001604052806000815250612096565b505050565b606060006112b7836115db565b905060008167ffffffffffffffff8111156112d5576112d46136b6565b5b6040519080825280602002602001820160405280156113035781602001602082028036833780820191505090505b50905060006001905060005b838110801561132057506011548211155b156113a857600061133083611517565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611394578284838151811061137957611378614276565b5b6020026020010181815250508180611390906142a5565b9250505b828061139f906142a5565b9350505061130f565b82945050505050919050565b60125481565b6113c2612721565b80600e90816113d19190613f77565b5050565b601660029054906101000a900460ff1681565b600d80546113f590613c76565b80601f016020809104026020016040519081016040528092919081815260200182805461142190613c76565b801561146e5780601f106114435761010080835404028352916020019161146e565b820191906000526020600020905b81548152906001019060200180831161145157829003601f168201915b505050505081565b601660019054906101000a900460ff1681565b600c805461149690613c76565b80601f01602080910402602001604051908101604052809291908181526020018280546114c290613c76565b801561150f5780601f106114e45761010080835404028352916020019161150f565b820191906000526020600020905b8154815290600101906020018083116114f257829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b690614339565b60405180910390fd5b80915050919050565b601660009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361164b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611642906143cb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61169a612721565b6116a46000612a9a565b565b6116ae612721565b8060158190555050565b6116c0612721565b80600c90816116cf9190613f77565b5050565b601781815481106116e357600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f805461171f90613c76565b80601f016020809104026020016040519081016040528092919081815260200182805461174b90613c76565b80156117985780601f1061176d57610100808354040283529160200191611798565b820191906000526020600020905b81548152906001019060200180831161177b57829003601f168201915b505050505081565b806000816117ae600861257a565b6117b891906143eb565b90506000821180156117cc57506012548211155b61180b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180290614491565b60405180910390fd5b60145482600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461185991906143eb565b111561189a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189190614523565b60405180910390fd5b6011548111156118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d69061458f565b60405180910390fd5b601660009054906101000a900460ff161561192f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192690614621565b60405180910390fd5b8160105461193d9190614176565b34101561197f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119769061468d565b60405180910390fd5b6002600654036119c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bb90614127565b60405180910390fd5b6002600681905550600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f906146f9565b60405180910390fd5b82600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aa791906143eb565b92505081905550611ab83384612b60565b6001600681905550505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611af7612721565b60005b82829050811015611b9757600160096000858585818110611b1e57611b1d614276565b5b9050602002016020810190611b33919061367f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611b8f906142a5565b915050611afa565b505050565b611ba4612721565b80600f9081611bb39190613f77565b5050565b606060018054611bc690613c76565b80601f0160208091040260200160405190810160405280929190818152602001828054611bf290613c76565b8015611c3f5780601f10611c1457610100808354040283529160200191611c3f565b820191906000526020600020905b815481529060010190602001808311611c2257829003601f168201915b5050505050905090565b600a6020528060005260406000206000915090505481565b60096020528060005260406000206000915054906101000a900460ff1681565b60105481565b80600081611c95600861257a565b611c9f91906143eb565b9050600082118015611cb357506013548211155b611cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce990614491565b60405180910390fd5b60155482600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d4091906143eb565b1115611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d789061478b565b60405180910390fd5b601154811115611dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbd9061458f565b60405180910390fd5b601660019054906101000a900460ff1615611e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0d90614621565b60405180910390fd5b81601054611e249190614176565b341015611e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5d9061468d565b60405180910390fd5b600260065403611eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea290614127565b60405180910390fd5b600260068190555082600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f0291906143eb565b92505081905550611f133384612b60565b6001600681905550505050565b611f32611f2b612660565b8383612ba0565b5050565b600e8054611f4390613c76565b80601f0160208091040260200160405190810160405280929190818152602001828054611f6f90613c76565b8015611fbc5780601f10611f9157610100808354040283529160200191611fbc565b820191906000526020600020905b815481529060010190602001808311611f9f57829003601f168201915b505050505081565b81600081611fd2600861257a565b611fdc91906143eb565b9050601154811115612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a9061458f565b60405180910390fd5b61202b612721565b600260065403612070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206790614127565b60405180910390fd5b60026006819055506120828385612b60565b600160068190555050505050565b60145481565b6120a76120a1612660565b8361279f565b6120e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dd906140bb565b60405180910390fd5b6120f284848484612d0c565b50505050565b606061210382612d68565b612142576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121399061481d565b60405180910390fd5b60001515601660029054906101000a900460ff161515036121ef57600e805461216a90613c76565b80601f016020809104026020016040519081016040528092919081815260200182805461219690613c76565b80156121e35780601f106121b8576101008083540402835291602001916121e3565b820191906000526020600020905b8154815290600101906020018083116121c657829003601f168201915b5050505050905061224b565b60006121f9612dd4565b905060008151116122195760405180602001604052806000815250612247565b8061222384612e66565b600d604051602001612237939291906148fc565b6040516020818303038152906040525b9150505b919050565b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460155461229f919061492d565b905090565b60115481565b6122b2612721565b8060148190555050565b6122c4612721565b80601660026101000a81548160ff02191690831515021790555050565b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661233d576000905061238d565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460145461238a919061492d565b90505b90565b6060600f805461239f90613c76565b80601f01602080910402602001604051908101604052809291908181526020018280546123cb90613c76565b80156124185780601f106123ed57610100808354040283529160200191612418565b820191906000526020600020905b8154815290600101906020018083116123fb57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124be612721565b80601660006101000a81548160ff02191690831515021790555050565b6124e3612721565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612552576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612549906149d3565b60405180910390fd5b61255b81612a9a565b50565b60135481565b6001816000016000828254019250508190555050565b600081600001549050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61261e81612d68565b61265d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265490614339565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126db83611517565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612729612660565b73ffffffffffffffffffffffffffffffffffffffff16612747611ac5565b73ffffffffffffffffffffffffffffffffffffffff161461279d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279490614a3f565b60405180910390fd5b565b6000806127ab83611517565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127ed57506127ec8185612422565b5b8061282b57508373ffffffffffffffffffffffffffffffffffffffff1661281384610e20565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661285482611517565b73ffffffffffffffffffffffffffffffffffffffff16146128aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a190614ad1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612919576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291090614b63565b60405180910390fd5b612924838383612fc6565b61292f600082612668565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461297f919061492d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129d691906143eb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a95838383612fcb565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015612b9b57612b756008612564565b612b8883612b83600861257a565b612fd0565b8080612b93906142a5565b915050612b63565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0590614bcf565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612cff919061345d565b60405180910390a3505050565b612d17848484612834565b612d2384848484612fee565b612d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5990614c61565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600c8054612de390613c76565b80601f0160208091040260200160405190810160405280929190818152602001828054612e0f90613c76565b8015612e5c5780601f10612e3157610100808354040283529160200191612e5c565b820191906000526020600020905b815481529060010190602001808311612e3f57829003601f168201915b5050505050905090565b606060008203612ead576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fc1565b600082905060005b60008214612edf578080612ec8906142a5565b915050600a82612ed891906141ff565b9150612eb5565b60008167ffffffffffffffff811115612efb57612efa6136b6565b5b6040519080825280601f01601f191660200182016040528015612f2d5781602001600182028036833780820191505090505b5090505b60008514612fba57600182612f46919061492d565b9150600a85612f559190614c81565b6030612f6191906143eb565b60f81b818381518110612f7757612f76614276565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fb391906141ff565b9450612f31565b8093505050505b919050565b505050565b505050565b612fea828260405180602001604052806000815250613175565b5050565b600061300f8473ffffffffffffffffffffffffffffffffffffffff16612588565b15613168578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613038612660565b8786866040518563ffffffff1660e01b815260040161305a9493929190614d07565b6020604051808303816000875af192505050801561309657506040513d601f19601f820116820180604052508101906130939190614d68565b60015b613118573d80600081146130c6576040519150601f19603f3d011682016040523d82523d6000602084013e6130cb565b606091505b506000815103613110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310790614c61565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061316d565b600190505b949350505050565b61317f83836131d0565b61318c6000848484612fee565b6131cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c290614c61565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361323f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323690614de1565b60405180910390fd5b61324881612d68565b15613288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327f90614e4d565b60405180910390fd5b61329460008383612fc6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132e491906143eb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133a560008383612fcb565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133f2816133bd565b81146133fd57600080fd5b50565b60008135905061340f816133e9565b92915050565b60006020828403121561342b5761342a6133b3565b5b600061343984828501613400565b91505092915050565b60008115159050919050565b61345781613442565b82525050565b6000602082019050613472600083018461344e565b92915050565b6000819050919050565b61348b81613478565b82525050565b60006020820190506134a66000830184613482565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134e65780820151818401526020810190506134cb565b60008484015250505050565b6000601f19601f8301169050919050565b600061350e826134ac565b61351881856134b7565b93506135288185602086016134c8565b613531816134f2565b840191505092915050565b600060208201905081810360008301526135568184613503565b905092915050565b61356781613478565b811461357257600080fd5b50565b6000813590506135848161355e565b92915050565b6000602082840312156135a05761359f6133b3565b5b60006135ae84828501613575565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006135e2826135b7565b9050919050565b6135f2816135d7565b82525050565b600060208201905061360d60008301846135e9565b92915050565b61361c816135d7565b811461362757600080fd5b50565b60008135905061363981613613565b92915050565b60008060408385031215613656576136556133b3565b5b60006136648582860161362a565b925050602061367585828601613575565b9150509250929050565b600060208284031215613695576136946133b3565b5b60006136a38482850161362a565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136ee826134f2565b810181811067ffffffffffffffff8211171561370d5761370c6136b6565b5b80604052505050565b60006137206133a9565b905061372c82826136e5565b919050565b600067ffffffffffffffff82111561374c5761374b6136b6565b5b613755826134f2565b9050602081019050919050565b82818337600083830152505050565b600061378461377f84613731565b613716565b9050828152602081018484840111156137a05761379f6136b1565b5b6137ab848285613762565b509392505050565b600082601f8301126137c8576137c76136ac565b5b81356137d8848260208601613771565b91505092915050565b6000602082840312156137f7576137f66133b3565b5b600082013567ffffffffffffffff811115613815576138146133b8565b5b613821848285016137b3565b91505092915050565b61383381613442565b811461383e57600080fd5b50565b6000813590506138508161382a565b92915050565b60006020828403121561386c5761386b6133b3565b5b600061387a84828501613841565b91505092915050565b60008060006060848603121561389c5761389b6133b3565b5b60006138aa8682870161362a565b93505060206138bb8682870161362a565b92505060406138cc86828701613575565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61390b81613478565b82525050565b600061391d8383613902565b60208301905092915050565b6000602082019050919050565b6000613941826138d6565b61394b81856138e1565b9350613956836138f2565b8060005b8381101561398757815161396e8882613911565b975061397983613929565b92505060018101905061395a565b5085935050505092915050565b600060208201905081810360008301526139ae8184613936565b905092915050565b600080fd5b600080fd5b60008083601f8401126139d6576139d56136ac565b5b8235905067ffffffffffffffff8111156139f3576139f26139b6565b5b602083019150836020820283011115613a0f57613a0e6139bb565b5b9250929050565b60008060208385031215613a2d57613a2c6133b3565b5b600083013567ffffffffffffffff811115613a4b57613a4a6133b8565b5b613a57858286016139c0565b92509250509250929050565b60008060408385031215613a7a57613a796133b3565b5b6000613a888582860161362a565b9250506020613a9985828601613841565b9150509250929050565b60008060408385031215613aba57613ab96133b3565b5b6000613ac885828601613575565b9250506020613ad98582860161362a565b9150509250929050565b600067ffffffffffffffff821115613afe57613afd6136b6565b5b613b07826134f2565b9050602081019050919050565b6000613b27613b2284613ae3565b613716565b905082815260208101848484011115613b4357613b426136b1565b5b613b4e848285613762565b509392505050565b600082601f830112613b6b57613b6a6136ac565b5b8135613b7b848260208601613b14565b91505092915050565b60008060008060808587031215613b9e57613b9d6133b3565b5b6000613bac8782880161362a565b9450506020613bbd8782880161362a565b9350506040613bce87828801613575565b925050606085013567ffffffffffffffff811115613bef57613bee6133b8565b5b613bfb87828801613b56565b91505092959194509250565b60008060408385031215613c1e57613c1d6133b3565b5b6000613c2c8582860161362a565b9250506020613c3d8582860161362a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c8e57607f821691505b602082108103613ca157613ca0613c47565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d036021836134b7565b9150613d0e82613ca7565b604082019050919050565b60006020820190508181036000830152613d3281613cf6565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000613d95603e836134b7565b9150613da082613d39565b604082019050919050565b60006020820190508181036000830152613dc481613d88565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613e2d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613df0565b613e378683613df0565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613e74613e6f613e6a84613478565b613e4f565b613478565b9050919050565b6000819050919050565b613e8e83613e59565b613ea2613e9a82613e7b565b848454613dfd565b825550505050565b600090565b613eb7613eaa565b613ec2818484613e85565b505050565b5b81811015613ee657613edb600082613eaf565b600181019050613ec8565b5050565b601f821115613f2b57613efc81613dcb565b613f0584613de0565b81016020851015613f14578190505b613f28613f2085613de0565b830182613ec7565b50505b505050565b600082821c905092915050565b6000613f4e60001984600802613f30565b1980831691505092915050565b6000613f678383613f3d565b9150826002028217905092915050565b613f80826134ac565b67ffffffffffffffff811115613f9957613f986136b6565b5b613fa38254613c76565b613fae828285613eea565b600060209050601f831160018114613fe15760008415613fcf578287015190505b613fd98582613f5b565b865550614041565b601f198416613fef86613dcb565b60005b8281101561401757848901518255600182019150602085019450602081019050613ff2565b868310156140345784890151614030601f891682613f3d565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b60006140a5602e836134b7565b91506140b082614049565b604082019050919050565b600060208201905081810360008301526140d481614098565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614111601f836134b7565b915061411c826140db565b602082019050919050565b6000602082019050818103600083015261414081614104565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061418182613478565b915061418c83613478565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141c5576141c4614147565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061420a82613478565b915061421583613478565b925082614225576142246141d0565b5b828204905092915050565b600081905092915050565b50565b600061424b600083614230565b91506142568261423b565b600082019050919050565b600061426c8261423e565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006142b082613478565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036142e2576142e1614147565b5b600182019050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006143236018836134b7565b915061432e826142ed565b602082019050919050565b6000602082019050818103600083015261435281614316565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006143b56029836134b7565b91506143c082614359565b604082019050919050565b600060208201905081810360008301526143e4816143a8565b9050919050565b60006143f682613478565b915061440183613478565b925082820190508082111561441957614418614147565b5b92915050565b7f596f75206861766520657863656564656420746865206c696d6974206f66206d60008201527f696e747320706572207472616e73616374696f6e000000000000000000000000602082015250565b600061447b6034836134b7565b91506144868261441f565b604082019050919050565b600060208201905081810360008301526144aa8161446e565b9050919050565b7f54686973207472616e73616374696f6e206578636565647320796f757220776860008201527f6974656c697374206d696e74206c696d69740000000000000000000000000000602082015250565b600061450d6032836134b7565b9150614518826144b1565b604082019050919050565b6000602082019050818103600083015261453c81614500565b9050919050565b7f534f4c44204f5554000000000000000000000000000000000000000000000000600082015250565b60006145796008836134b7565b915061458482614543565b602082019050919050565b600060208201905081810360008301526145a88161456c565b9050919050565b7f4d696e74696e67206973206e6f742063757272656e746c7920616c6c6f77656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b600061460b6021836134b7565b9150614616826145af565b604082019050919050565b6000602082019050818103600083015261463a816145fe565b9050919050565b7f596f7520646964206e6f742073656e6420656e6f756768204554480000000000600082015250565b6000614677601b836134b7565b915061468282614641565b602082019050919050565b600060208201905081810360008301526146a68161466a565b9050919050565b7f596f7520617265206e6f74206f6e20746865206c697374000000000000000000600082015250565b60006146e36017836134b7565b91506146ee826146ad565b602082019050919050565b60006020820190508181036000830152614712816146d6565b9050919050565b7f596f75206861766520616c7265616479206d696e74656420796f7572206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b60006147756022836134b7565b915061478082614719565b604082019050919050565b600060208201905081810360008301526147a481614768565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614807602f836134b7565b9150614812826147ab565b604082019050919050565b60006020820190508181036000830152614836816147fa565b9050919050565b600081905092915050565b6000614853826134ac565b61485d818561483d565b935061486d8185602086016134c8565b80840191505092915050565b6000815461488681613c76565b614890818661483d565b945060018216600081146148ab57600181146148c0576148f3565b60ff19831686528115158202860193506148f3565b6148c985613dcb565b60005b838110156148eb578154818901526001820191506020810190506148cc565b838801955050505b50505092915050565b60006149088286614848565b91506149148285614848565b91506149208284614879565b9150819050949350505050565b600061493882613478565b915061494383613478565b925082820390508181111561495b5761495a614147565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149bd6026836134b7565b91506149c882614961565b604082019050919050565b600060208201905081810360008301526149ec816149b0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a296020836134b7565b9150614a34826149f3565b602082019050919050565b60006020820190508181036000830152614a5881614a1c565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614abb6025836134b7565b9150614ac682614a5f565b604082019050919050565b60006020820190508181036000830152614aea81614aae565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b4d6024836134b7565b9150614b5882614af1565b604082019050919050565b60006020820190508181036000830152614b7c81614b40565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614bb96019836134b7565b9150614bc482614b83565b602082019050919050565b60006020820190508181036000830152614be881614bac565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614c4b6032836134b7565b9150614c5682614bef565b604082019050919050565b60006020820190508181036000830152614c7a81614c3e565b9050919050565b6000614c8c82613478565b9150614c9783613478565b925082614ca757614ca66141d0565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614cd982614cb2565b614ce38185614cbd565b9350614cf38185602086016134c8565b614cfc816134f2565b840191505092915050565b6000608082019050614d1c60008301876135e9565b614d2960208301866135e9565b614d366040830185613482565b8181036060830152614d488184614cce565b905095945050505050565b600081519050614d62816133e9565b92915050565b600060208284031215614d7e57614d7d6133b3565b5b6000614d8c84828501614d53565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614dcb6020836134b7565b9150614dd682614d95565b602082019050919050565b60006020820190508181036000830152614dfa81614dbe565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614e37601c836134b7565b9150614e4282614e01565b602082019050919050565b60006020820190508181036000830152614e6681614e2a565b905091905056fea26469706673582212203f99aced5d9afd591f008d5ec0f892564bc6e911bf492e0cc21593936175faa164736f6c63430008100033697066733a2f2f516d664a6731674d784c6e6832544a65656f69614c7a6d4152364750615344356b425a4c4d67726e51526e483870697066733a2f2f516d51676d694b7374695762666634374855417a64636e6f414d70327a7552394468346f4c39376e72644e456946
Deployed Bytecode
0x6080604052600436106103355760003560e01c806381764cf8116101ab578063aed38015116100f7578063e0a8085311610095578063e985e9c51161006f578063e985e9c514610bec578063ea457d0f14610c29578063f2fde38b14610c52578063fe86deca14610c7b57610335565b8063e0a8085314610b6d578063e32b1bf414610b96578063e8a3d48514610bc157610335565b8063c87b56dd116100d1578063c87b56dd14610ab1578063ce77fcc114610aee578063d5abeb0114610b19578063d8bd5b0914610b4457610335565b8063aed3801514610a34578063b47fbd1714610a5d578063b88d4fde14610a8857610335565b806395d89b4111610164578063a035b1fe1161013e578063a035b1fe14610999578063a0712d68146109c4578063a22cb465146109e0578063a45ba8e714610a0957610335565b806395d89b41146108f4578063963c41771461091f5780639b19251a1461095c57610335565b806381764cf8146107f35780638aa37268146108305780638ad433ac1461085b5780638da5cb5b146108775780639212960a146108a2578063938e3d7b146108cb57610335565b806342842e0e1161028557806362b99ad41161022357806370a08231116101fd57806370a082311461074d578063715018a61461078a57806379fcb984146107a15780637ec4a659146107ca57610335565b806362b99ad4146106ba5780636352211e146106e557806368abfea91461072257610335565b80634fdd43cb1161025f5780634fdd43cb1461061057806351830227146106395780635503a0e8146106645780635c975abb1461068f57610335565b806342842e0e1461057f578063438b6300146105a85780634df3c52f146105e557610335565b80631015805b116102f257806318160ddd116102cc57806318160ddd146104eb57806323b872dd146105165780633ccfd60b1461053f5780633ee212f51461055657610335565b80631015805b1461045c57806316ba10e01461049957806316c38b3c146104c257610335565b806301ffc9a71461033a57806303d8acef1461037757806306fdde03146103a2578063081812fc146103cd578063095ea7b31461040a5780630e82b63d14610433575b600080fd5b34801561034657600080fd5b50610361600480360381019061035c9190613415565b610ca6565b60405161036e919061345d565b60405180910390f35b34801561038357600080fd5b5061038c610d88565b6040516103999190613491565b60405180910390f35b3480156103ae57600080fd5b506103b7610d8e565b6040516103c4919061353c565b60405180910390f35b3480156103d957600080fd5b506103f460048036038101906103ef919061358a565b610e20565b60405161040191906135f8565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c919061363f565b610e66565b005b34801561043f57600080fd5b5061045a6004803603810190610455919061358a565b610f7d565b005b34801561046857600080fd5b50610483600480360381019061047e919061367f565b610f8f565b6040516104909190613491565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb91906137e1565b610fa7565b005b3480156104ce57600080fd5b506104e960048036038101906104e49190613856565b610fc2565b005b3480156104f757600080fd5b50610500610fe7565b60405161050d9190613491565b60405180910390f35b34801561052257600080fd5b5061053d60048036038101906105389190613883565b610ff8565b005b34801561054b57600080fd5b50610554611058565b005b34801561056257600080fd5b5061057d6004803603810190610578919061358a565b611278565b005b34801561058b57600080fd5b506105a660048036038101906105a19190613883565b61128a565b005b3480156105b457600080fd5b506105cf60048036038101906105ca919061367f565b6112aa565b6040516105dc9190613994565b60405180910390f35b3480156105f157600080fd5b506105fa6113b4565b6040516106079190613491565b60405180910390f35b34801561061c57600080fd5b50610637600480360381019061063291906137e1565b6113ba565b005b34801561064557600080fd5b5061064e6113d5565b60405161065b919061345d565b60405180910390f35b34801561067057600080fd5b506106796113e8565b604051610686919061353c565b60405180910390f35b34801561069b57600080fd5b506106a4611476565b6040516106b1919061345d565b60405180910390f35b3480156106c657600080fd5b506106cf611489565b6040516106dc919061353c565b60405180910390f35b3480156106f157600080fd5b5061070c6004803603810190610707919061358a565b611517565b60405161071991906135f8565b60405180910390f35b34801561072e57600080fd5b506107376115c8565b604051610744919061345d565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f919061367f565b6115db565b6040516107819190613491565b60405180910390f35b34801561079657600080fd5b5061079f611692565b005b3480156107ad57600080fd5b506107c860048036038101906107c3919061358a565b6116a6565b005b3480156107d657600080fd5b506107f160048036038101906107ec91906137e1565b6116b8565b005b3480156107ff57600080fd5b5061081a6004803603810190610815919061358a565b6116d3565b60405161082791906135f8565b60405180910390f35b34801561083c57600080fd5b50610845611712565b604051610852919061353c565b60405180910390f35b6108756004803603810190610870919061358a565b6117a0565b005b34801561088357600080fd5b5061088c611ac5565b60405161089991906135f8565b60405180910390f35b3480156108ae57600080fd5b506108c960048036038101906108c49190613a16565b611aef565b005b3480156108d757600080fd5b506108f260048036038101906108ed91906137e1565b611b9c565b005b34801561090057600080fd5b50610909611bb7565b604051610916919061353c565b60405180910390f35b34801561092b57600080fd5b506109466004803603810190610941919061367f565b611c49565b6040516109539190613491565b60405180910390f35b34801561096857600080fd5b50610983600480360381019061097e919061367f565b611c61565b604051610990919061345d565b60405180910390f35b3480156109a557600080fd5b506109ae611c81565b6040516109bb9190613491565b60405180910390f35b6109de60048036038101906109d9919061358a565b611c87565b005b3480156109ec57600080fd5b50610a076004803603810190610a029190613a63565b611f20565b005b348015610a1557600080fd5b50610a1e611f36565b604051610a2b919061353c565b60405180910390f35b348015610a4057600080fd5b50610a5b6004803603810190610a569190613aa3565b611fc4565b005b348015610a6957600080fd5b50610a72612090565b604051610a7f9190613491565b60405180910390f35b348015610a9457600080fd5b50610aaf6004803603810190610aaa9190613b84565b612096565b005b348015610abd57600080fd5b50610ad86004803603810190610ad3919061358a565b6120f8565b604051610ae5919061353c565b60405180910390f35b348015610afa57600080fd5b50610b03612250565b604051610b109190613491565b60405180910390f35b348015610b2557600080fd5b50610b2e6122a4565b604051610b3b9190613491565b60405180910390f35b348015610b5057600080fd5b50610b6b6004803603810190610b66919061358a565b6122aa565b005b348015610b7957600080fd5b50610b946004803603810190610b8f9190613856565b6122bc565b005b348015610ba257600080fd5b50610bab6122e1565b604051610bb89190613491565b60405180910390f35b348015610bcd57600080fd5b50610bd6612390565b604051610be3919061353c565b60405180910390f35b348015610bf857600080fd5b50610c136004803603810190610c0e9190613c07565b612422565b604051610c20919061345d565b60405180910390f35b348015610c3557600080fd5b50610c506004803603810190610c4b9190613856565b6124b6565b005b348015610c5e57600080fd5b50610c796004803603810190610c74919061367f565b6124db565b005b348015610c8757600080fd5b50610c9061255e565b604051610c9d9190613491565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d7157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d815750610d80826125ab565b5b9050919050565b60155481565b606060008054610d9d90613c76565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc990613c76565b8015610e165780601f10610deb57610100808354040283529160200191610e16565b820191906000526020600020905b815481529060010190602001808311610df957829003601f168201915b5050505050905090565b6000610e2b82612615565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e7182611517565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed890613d19565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f00612660565b73ffffffffffffffffffffffffffffffffffffffff161480610f2f5750610f2e81610f29612660565b612422565b5b610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6590613dab565b60405180910390fd5b610f788383612668565b505050565b610f85612721565b8060138190555050565b600b6020528060005260406000206000915090505481565b610faf612721565b80600d9081610fbe9190613f77565b5050565b610fca612721565b80601660016101000a81548160ff02191690831515021790555050565b6000610ff3600861257a565b905090565b611009611003612660565b8261279f565b611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f906140bb565b60405180910390fd5b611053838383612834565b505050565b611060612721565b6002600654036110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c90614127565b60405180910390fd5b600260068190555060006103e861014d476110c09190614176565b6110ca91906141ff565b9050600073831fc358124d5899b731472ebe2a4bf1cd6c3e1e73ffffffffffffffffffffffffffffffffffffffff168260405161110690614261565b60006040518083038185875af1925050503d8060008114611143576040519150601f19603f3d011682016040523d82523d6000602084013e611148565b606091505b505090508061115657600080fd5b600073ae0c0e1e098a1c5f711a78afec0286ccd79169bc73ffffffffffffffffffffffffffffffffffffffff168360405161119090614261565b60006040518083038185875af1925050503d80600081146111cd576040519150601f19603f3d011682016040523d82523d6000602084013e6111d2565b606091505b50509050806111e057600080fd5b600073d01161a8c437ee941e80415d74e1b3311356f44b73ffffffffffffffffffffffffffffffffffffffff164760405161121a90614261565b60006040518083038185875af1925050503d8060008114611257576040519150601f19603f3d011682016040523d82523d6000602084013e61125c565b606091505b505090508061126a57600080fd5b505050506001600681905550565b611280612721565b8060128190555050565b6112a583838360405180602001604052806000815250612096565b505050565b606060006112b7836115db565b905060008167ffffffffffffffff8111156112d5576112d46136b6565b5b6040519080825280602002602001820160405280156113035781602001602082028036833780820191505090505b50905060006001905060005b838110801561132057506011548211155b156113a857600061133083611517565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611394578284838151811061137957611378614276565b5b6020026020010181815250508180611390906142a5565b9250505b828061139f906142a5565b9350505061130f565b82945050505050919050565b60125481565b6113c2612721565b80600e90816113d19190613f77565b5050565b601660029054906101000a900460ff1681565b600d80546113f590613c76565b80601f016020809104026020016040519081016040528092919081815260200182805461142190613c76565b801561146e5780601f106114435761010080835404028352916020019161146e565b820191906000526020600020905b81548152906001019060200180831161145157829003601f168201915b505050505081565b601660019054906101000a900460ff1681565b600c805461149690613c76565b80601f01602080910402602001604051908101604052809291908181526020018280546114c290613c76565b801561150f5780601f106114e45761010080835404028352916020019161150f565b820191906000526020600020905b8154815290600101906020018083116114f257829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b690614339565b60405180910390fd5b80915050919050565b601660009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361164b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611642906143cb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61169a612721565b6116a46000612a9a565b565b6116ae612721565b8060158190555050565b6116c0612721565b80600c90816116cf9190613f77565b5050565b601781815481106116e357600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f805461171f90613c76565b80601f016020809104026020016040519081016040528092919081815260200182805461174b90613c76565b80156117985780601f1061176d57610100808354040283529160200191611798565b820191906000526020600020905b81548152906001019060200180831161177b57829003601f168201915b505050505081565b806000816117ae600861257a565b6117b891906143eb565b90506000821180156117cc57506012548211155b61180b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180290614491565b60405180910390fd5b60145482600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461185991906143eb565b111561189a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189190614523565b60405180910390fd5b6011548111156118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d69061458f565b60405180910390fd5b601660009054906101000a900460ff161561192f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192690614621565b60405180910390fd5b8160105461193d9190614176565b34101561197f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119769061468d565b60405180910390fd5b6002600654036119c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bb90614127565b60405180910390fd5b6002600681905550600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f906146f9565b60405180910390fd5b82600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aa791906143eb565b92505081905550611ab83384612b60565b6001600681905550505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611af7612721565b60005b82829050811015611b9757600160096000858585818110611b1e57611b1d614276565b5b9050602002016020810190611b33919061367f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611b8f906142a5565b915050611afa565b505050565b611ba4612721565b80600f9081611bb39190613f77565b5050565b606060018054611bc690613c76565b80601f0160208091040260200160405190810160405280929190818152602001828054611bf290613c76565b8015611c3f5780601f10611c1457610100808354040283529160200191611c3f565b820191906000526020600020905b815481529060010190602001808311611c2257829003601f168201915b5050505050905090565b600a6020528060005260406000206000915090505481565b60096020528060005260406000206000915054906101000a900460ff1681565b60105481565b80600081611c95600861257a565b611c9f91906143eb565b9050600082118015611cb357506013548211155b611cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce990614491565b60405180910390fd5b60155482600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d4091906143eb565b1115611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d789061478b565b60405180910390fd5b601154811115611dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbd9061458f565b60405180910390fd5b601660019054906101000a900460ff1615611e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0d90614621565b60405180910390fd5b81601054611e249190614176565b341015611e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5d9061468d565b60405180910390fd5b600260065403611eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea290614127565b60405180910390fd5b600260068190555082600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f0291906143eb565b92505081905550611f133384612b60565b6001600681905550505050565b611f32611f2b612660565b8383612ba0565b5050565b600e8054611f4390613c76565b80601f0160208091040260200160405190810160405280929190818152602001828054611f6f90613c76565b8015611fbc5780601f10611f9157610100808354040283529160200191611fbc565b820191906000526020600020905b815481529060010190602001808311611f9f57829003601f168201915b505050505081565b81600081611fd2600861257a565b611fdc91906143eb565b9050601154811115612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a9061458f565b60405180910390fd5b61202b612721565b600260065403612070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206790614127565b60405180910390fd5b60026006819055506120828385612b60565b600160068190555050505050565b60145481565b6120a76120a1612660565b8361279f565b6120e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dd906140bb565b60405180910390fd5b6120f284848484612d0c565b50505050565b606061210382612d68565b612142576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121399061481d565b60405180910390fd5b60001515601660029054906101000a900460ff161515036121ef57600e805461216a90613c76565b80601f016020809104026020016040519081016040528092919081815260200182805461219690613c76565b80156121e35780601f106121b8576101008083540402835291602001916121e3565b820191906000526020600020905b8154815290600101906020018083116121c657829003601f168201915b5050505050905061224b565b60006121f9612dd4565b905060008151116122195760405180602001604052806000815250612247565b8061222384612e66565b600d604051602001612237939291906148fc565b6040516020818303038152906040525b9150505b919050565b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460155461229f919061492d565b905090565b60115481565b6122b2612721565b8060148190555050565b6122c4612721565b80601660026101000a81548160ff02191690831515021790555050565b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661233d576000905061238d565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460145461238a919061492d565b90505b90565b6060600f805461239f90613c76565b80601f01602080910402602001604051908101604052809291908181526020018280546123cb90613c76565b80156124185780601f106123ed57610100808354040283529160200191612418565b820191906000526020600020905b8154815290600101906020018083116123fb57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124be612721565b80601660006101000a81548160ff02191690831515021790555050565b6124e3612721565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612552576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612549906149d3565b60405180910390fd5b61255b81612a9a565b50565b60135481565b6001816000016000828254019250508190555050565b600081600001549050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61261e81612d68565b61265d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265490614339565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126db83611517565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612729612660565b73ffffffffffffffffffffffffffffffffffffffff16612747611ac5565b73ffffffffffffffffffffffffffffffffffffffff161461279d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279490614a3f565b60405180910390fd5b565b6000806127ab83611517565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127ed57506127ec8185612422565b5b8061282b57508373ffffffffffffffffffffffffffffffffffffffff1661281384610e20565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661285482611517565b73ffffffffffffffffffffffffffffffffffffffff16146128aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a190614ad1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612919576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291090614b63565b60405180910390fd5b612924838383612fc6565b61292f600082612668565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461297f919061492d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129d691906143eb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a95838383612fcb565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015612b9b57612b756008612564565b612b8883612b83600861257a565b612fd0565b8080612b93906142a5565b915050612b63565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0590614bcf565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612cff919061345d565b60405180910390a3505050565b612d17848484612834565b612d2384848484612fee565b612d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5990614c61565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600c8054612de390613c76565b80601f0160208091040260200160405190810160405280929190818152602001828054612e0f90613c76565b8015612e5c5780601f10612e3157610100808354040283529160200191612e5c565b820191906000526020600020905b815481529060010190602001808311612e3f57829003601f168201915b5050505050905090565b606060008203612ead576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fc1565b600082905060005b60008214612edf578080612ec8906142a5565b915050600a82612ed891906141ff565b9150612eb5565b60008167ffffffffffffffff811115612efb57612efa6136b6565b5b6040519080825280601f01601f191660200182016040528015612f2d5781602001600182028036833780820191505090505b5090505b60008514612fba57600182612f46919061492d565b9150600a85612f559190614c81565b6030612f6191906143eb565b60f81b818381518110612f7757612f76614276565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fb391906141ff565b9450612f31565b8093505050505b919050565b505050565b505050565b612fea828260405180602001604052806000815250613175565b5050565b600061300f8473ffffffffffffffffffffffffffffffffffffffff16612588565b15613168578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613038612660565b8786866040518563ffffffff1660e01b815260040161305a9493929190614d07565b6020604051808303816000875af192505050801561309657506040513d601f19601f820116820180604052508101906130939190614d68565b60015b613118573d80600081146130c6576040519150601f19603f3d011682016040523d82523d6000602084013e6130cb565b606091505b506000815103613110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310790614c61565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061316d565b600190505b949350505050565b61317f83836131d0565b61318c6000848484612fee565b6131cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c290614c61565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361323f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323690614de1565b60405180910390fd5b61324881612d68565b15613288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327f90614e4d565b60405180910390fd5b61329460008383612fc6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132e491906143eb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133a560008383612fcb565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133f2816133bd565b81146133fd57600080fd5b50565b60008135905061340f816133e9565b92915050565b60006020828403121561342b5761342a6133b3565b5b600061343984828501613400565b91505092915050565b60008115159050919050565b61345781613442565b82525050565b6000602082019050613472600083018461344e565b92915050565b6000819050919050565b61348b81613478565b82525050565b60006020820190506134a66000830184613482565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134e65780820151818401526020810190506134cb565b60008484015250505050565b6000601f19601f8301169050919050565b600061350e826134ac565b61351881856134b7565b93506135288185602086016134c8565b613531816134f2565b840191505092915050565b600060208201905081810360008301526135568184613503565b905092915050565b61356781613478565b811461357257600080fd5b50565b6000813590506135848161355e565b92915050565b6000602082840312156135a05761359f6133b3565b5b60006135ae84828501613575565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006135e2826135b7565b9050919050565b6135f2816135d7565b82525050565b600060208201905061360d60008301846135e9565b92915050565b61361c816135d7565b811461362757600080fd5b50565b60008135905061363981613613565b92915050565b60008060408385031215613656576136556133b3565b5b60006136648582860161362a565b925050602061367585828601613575565b9150509250929050565b600060208284031215613695576136946133b3565b5b60006136a38482850161362a565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136ee826134f2565b810181811067ffffffffffffffff8211171561370d5761370c6136b6565b5b80604052505050565b60006137206133a9565b905061372c82826136e5565b919050565b600067ffffffffffffffff82111561374c5761374b6136b6565b5b613755826134f2565b9050602081019050919050565b82818337600083830152505050565b600061378461377f84613731565b613716565b9050828152602081018484840111156137a05761379f6136b1565b5b6137ab848285613762565b509392505050565b600082601f8301126137c8576137c76136ac565b5b81356137d8848260208601613771565b91505092915050565b6000602082840312156137f7576137f66133b3565b5b600082013567ffffffffffffffff811115613815576138146133b8565b5b613821848285016137b3565b91505092915050565b61383381613442565b811461383e57600080fd5b50565b6000813590506138508161382a565b92915050565b60006020828403121561386c5761386b6133b3565b5b600061387a84828501613841565b91505092915050565b60008060006060848603121561389c5761389b6133b3565b5b60006138aa8682870161362a565b93505060206138bb8682870161362a565b92505060406138cc86828701613575565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61390b81613478565b82525050565b600061391d8383613902565b60208301905092915050565b6000602082019050919050565b6000613941826138d6565b61394b81856138e1565b9350613956836138f2565b8060005b8381101561398757815161396e8882613911565b975061397983613929565b92505060018101905061395a565b5085935050505092915050565b600060208201905081810360008301526139ae8184613936565b905092915050565b600080fd5b600080fd5b60008083601f8401126139d6576139d56136ac565b5b8235905067ffffffffffffffff8111156139f3576139f26139b6565b5b602083019150836020820283011115613a0f57613a0e6139bb565b5b9250929050565b60008060208385031215613a2d57613a2c6133b3565b5b600083013567ffffffffffffffff811115613a4b57613a4a6133b8565b5b613a57858286016139c0565b92509250509250929050565b60008060408385031215613a7a57613a796133b3565b5b6000613a888582860161362a565b9250506020613a9985828601613841565b9150509250929050565b60008060408385031215613aba57613ab96133b3565b5b6000613ac885828601613575565b9250506020613ad98582860161362a565b9150509250929050565b600067ffffffffffffffff821115613afe57613afd6136b6565b5b613b07826134f2565b9050602081019050919050565b6000613b27613b2284613ae3565b613716565b905082815260208101848484011115613b4357613b426136b1565b5b613b4e848285613762565b509392505050565b600082601f830112613b6b57613b6a6136ac565b5b8135613b7b848260208601613b14565b91505092915050565b60008060008060808587031215613b9e57613b9d6133b3565b5b6000613bac8782880161362a565b9450506020613bbd8782880161362a565b9350506040613bce87828801613575565b925050606085013567ffffffffffffffff811115613bef57613bee6133b8565b5b613bfb87828801613b56565b91505092959194509250565b60008060408385031215613c1e57613c1d6133b3565b5b6000613c2c8582860161362a565b9250506020613c3d8582860161362a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c8e57607f821691505b602082108103613ca157613ca0613c47565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d036021836134b7565b9150613d0e82613ca7565b604082019050919050565b60006020820190508181036000830152613d3281613cf6565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000613d95603e836134b7565b9150613da082613d39565b604082019050919050565b60006020820190508181036000830152613dc481613d88565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613e2d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613df0565b613e378683613df0565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613e74613e6f613e6a84613478565b613e4f565b613478565b9050919050565b6000819050919050565b613e8e83613e59565b613ea2613e9a82613e7b565b848454613dfd565b825550505050565b600090565b613eb7613eaa565b613ec2818484613e85565b505050565b5b81811015613ee657613edb600082613eaf565b600181019050613ec8565b5050565b601f821115613f2b57613efc81613dcb565b613f0584613de0565b81016020851015613f14578190505b613f28613f2085613de0565b830182613ec7565b50505b505050565b600082821c905092915050565b6000613f4e60001984600802613f30565b1980831691505092915050565b6000613f678383613f3d565b9150826002028217905092915050565b613f80826134ac565b67ffffffffffffffff811115613f9957613f986136b6565b5b613fa38254613c76565b613fae828285613eea565b600060209050601f831160018114613fe15760008415613fcf578287015190505b613fd98582613f5b565b865550614041565b601f198416613fef86613dcb565b60005b8281101561401757848901518255600182019150602085019450602081019050613ff2565b868310156140345784890151614030601f891682613f3d565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b60006140a5602e836134b7565b91506140b082614049565b604082019050919050565b600060208201905081810360008301526140d481614098565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614111601f836134b7565b915061411c826140db565b602082019050919050565b6000602082019050818103600083015261414081614104565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061418182613478565b915061418c83613478565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141c5576141c4614147565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061420a82613478565b915061421583613478565b925082614225576142246141d0565b5b828204905092915050565b600081905092915050565b50565b600061424b600083614230565b91506142568261423b565b600082019050919050565b600061426c8261423e565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006142b082613478565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036142e2576142e1614147565b5b600182019050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006143236018836134b7565b915061432e826142ed565b602082019050919050565b6000602082019050818103600083015261435281614316565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006143b56029836134b7565b91506143c082614359565b604082019050919050565b600060208201905081810360008301526143e4816143a8565b9050919050565b60006143f682613478565b915061440183613478565b925082820190508082111561441957614418614147565b5b92915050565b7f596f75206861766520657863656564656420746865206c696d6974206f66206d60008201527f696e747320706572207472616e73616374696f6e000000000000000000000000602082015250565b600061447b6034836134b7565b91506144868261441f565b604082019050919050565b600060208201905081810360008301526144aa8161446e565b9050919050565b7f54686973207472616e73616374696f6e206578636565647320796f757220776860008201527f6974656c697374206d696e74206c696d69740000000000000000000000000000602082015250565b600061450d6032836134b7565b9150614518826144b1565b604082019050919050565b6000602082019050818103600083015261453c81614500565b9050919050565b7f534f4c44204f5554000000000000000000000000000000000000000000000000600082015250565b60006145796008836134b7565b915061458482614543565b602082019050919050565b600060208201905081810360008301526145a88161456c565b9050919050565b7f4d696e74696e67206973206e6f742063757272656e746c7920616c6c6f77656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b600061460b6021836134b7565b9150614616826145af565b604082019050919050565b6000602082019050818103600083015261463a816145fe565b9050919050565b7f596f7520646964206e6f742073656e6420656e6f756768204554480000000000600082015250565b6000614677601b836134b7565b915061468282614641565b602082019050919050565b600060208201905081810360008301526146a68161466a565b9050919050565b7f596f7520617265206e6f74206f6e20746865206c697374000000000000000000600082015250565b60006146e36017836134b7565b91506146ee826146ad565b602082019050919050565b60006020820190508181036000830152614712816146d6565b9050919050565b7f596f75206861766520616c7265616479206d696e74656420796f7572206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b60006147756022836134b7565b915061478082614719565b604082019050919050565b600060208201905081810360008301526147a481614768565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614807602f836134b7565b9150614812826147ab565b604082019050919050565b60006020820190508181036000830152614836816147fa565b9050919050565b600081905092915050565b6000614853826134ac565b61485d818561483d565b935061486d8185602086016134c8565b80840191505092915050565b6000815461488681613c76565b614890818661483d565b945060018216600081146148ab57600181146148c0576148f3565b60ff19831686528115158202860193506148f3565b6148c985613dcb565b60005b838110156148eb578154818901526001820191506020810190506148cc565b838801955050505b50505092915050565b60006149088286614848565b91506149148285614848565b91506149208284614879565b9150819050949350505050565b600061493882613478565b915061494383613478565b925082820390508181111561495b5761495a614147565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149bd6026836134b7565b91506149c882614961565b604082019050919050565b600060208201905081810360008301526149ec816149b0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a296020836134b7565b9150614a34826149f3565b602082019050919050565b60006020820190508181036000830152614a5881614a1c565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614abb6025836134b7565b9150614ac682614a5f565b604082019050919050565b60006020820190508181036000830152614aea81614aae565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b4d6024836134b7565b9150614b5882614af1565b604082019050919050565b60006020820190508181036000830152614b7c81614b40565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614bb96019836134b7565b9150614bc482614b83565b602082019050919050565b60006020820190508181036000830152614be881614bac565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614c4b6032836134b7565b9150614c5682614bef565b604082019050919050565b60006020820190508181036000830152614c7a81614c3e565b9050919050565b6000614c8c82613478565b9150614c9783613478565b925082614ca757614ca66141d0565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614cd982614cb2565b614ce38185614cbd565b9350614cf38185602086016134c8565b614cfc816134f2565b840191505092915050565b6000608082019050614d1c60008301876135e9565b614d2960208301866135e9565b614d366040830185613482565b8181036060830152614d488184614cce565b905095945050505050565b600081519050614d62816133e9565b92915050565b600060208284031215614d7e57614d7d6133b3565b5b6000614d8c84828501614d53565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614dcb6020836134b7565b9150614dd682614d95565b602082019050919050565b60006020820190508181036000830152614dfa81614dbe565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614e37601c836134b7565b9150614e4282614e01565b602082019050919050565b60006020820190508181036000830152614e6681614e2a565b905091905056fea26469706673582212203f99aced5d9afd591f008d5ec0f892564bc6e911bf492e0cc21593936175faa164736f6c63430008100033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.