Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
26 FLOOT
Holders
20
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 FLOOTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FuckLootV2
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract FuckLootV2 is ERC721, ERC721Enumerable, ERC721URIStorage, Ownable { event GetFucked (address indexed buyer, uint256 startWith, uint256 batch); address payable public mainWallet; address payable public faucetWallet; uint256 public totalMinted; uint256 public burnCount; uint256 public totalCount = 10000; uint256 public maxBatch = 50; uint256 public price = 1 * 10 ** 18; uint256 public initialReserve = 21; uint256 private nftsReserved; string public baseURI; bool private started; string name_ = 'FUCKLOOT'; string symbol_ = 'FLOOT'; string baseURI_ = 'ipfs://QmQfwVxi1rFSxrXNW7VGVFJ1AXDmb6TRmgbdvu7De3G7AU/'; constructor() ERC721(name_, symbol_) { baseURI = baseURI_; mainWallet = payable(msg.sender); faucetWallet = payable(msg.sender); } function setBaseURI(string memory _newURI) public onlyOwner { baseURI = _newURI; } function changePrice(uint256 _newPrice) public onlyOwner { price = _newPrice; } function setTokenURI(uint256 _tokenId, string memory _tokenURI) public onlyOwner { _setTokenURI(_tokenId, _tokenURI); } function setStart(bool _start) public onlyOwner { started = _start; } function distributeFunds() public payable onlyOwner{ uint256 contract_balance = address(this).balance; require(payable(mainWallet).send( (contract_balance * 500) / 1000)); (bool sent, ) = payable(faucetWallet).call{value: ((contract_balance * 500) / 1000)}(""); require(sent); } function mintReservedNFTs(address[] memory to) public onlyOwner { //Check this to make sure its how we want to reserve some of the initial supply require(nftsReserved <= initialReserve, "Exceeds reserve supply"); require(to.length == initialReserve); for (uint256 i = 0; i < initialReserve; i++) { nftsReserved++; totalMinted++; _safeMint(to[i], totalMinted); } } function changeMainWallet(address payable _newWallet) external onlyOwner { mainWallet = _newWallet; } function changeFaucetWallet(address payable _newWallet) external onlyOwner { faucetWallet = _newWallet; } function distroDust() public onlyOwner { uint256 contract_balance = address(this).balance; require(payable(mainWallet).send(contract_balance)); } function getFucked(uint256 _batchCount) payable public { require(started, "Sale has not started"); require(_batchCount > 0 && _batchCount <= maxBatch, "Batch purchase limit exceeded"); require(totalMinted + _batchCount + burnCount <= totalCount, "Not enough inventory"); require(msg.value == _batchCount * price, "Invalid value sent"); emit GetFucked(_msgSender(), totalMinted, _batchCount); for(uint256 i=0; i < _batchCount; i++){ totalMinted++; _safeMint(_msgSender(), totalMinted); } uint256 contract_balance = address(this).balance; require(payable(mainWallet).send( (contract_balance * 500) / 1000)); (bool sent, ) = payable(faucetWallet).call{value: ((contract_balance * 500) / 1000)}(""); require(sent); } function walletInventory(address _owner) external view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); uint256[] memory tokensId = new uint256[](tokenCount); for (uint256 i = 0; i < tokenCount; i++) { tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } /** * Override isApprovedForAll to auto-approve OS's proxy contract */ function isApprovedForAll( address _owner, address _operator ) public override view returns (bool isOperator) { // if OpenSea's ERC721 Proxy Address is detected, auto-return true if (_operator == address(0xa5409ec958C83C3f309868babACA7c86DCB077c1 )) { // OpenSea approval return true; } // otherwise, use the default ERC721.isApprovedForAll() return ERC721.isApprovedForAll(_owner, _operator); } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function burn(uint256 tokenId) public { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) { super._burn(tokenId); burnCount++; } function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) { return super.tokenURI(tokenId); } function _baseURI() internal view virtual override returns (string memory){ return baseURI; } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @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); } /** * @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 of token that is not own"); 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); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @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 override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "../../../utils/Context.sol"; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } }
// SPDX-License-Identifier: MIT 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT 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 pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT 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 pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT 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 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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "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":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"startWith","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"batch","type":"uint256"}],"name":"GetFucked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_newWallet","type":"address"}],"name":"changeFaucetWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_newWallet","type":"address"}],"name":"changeMainWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"distributeFunds","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"distroDust","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"faucetWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_batchCount","type":"uint256"}],"name":"getFucked","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"initialReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isOperator","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"}],"name":"mintReservedNFTs","outputs":[],"stateMutability":"nonpayable","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_start","type":"bool"}],"name":"setStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletInventory","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526127106010556032601155670de0b6b3a764000060125560156013556040518060400160405280600881526020017f4655434b4c4f4f54000000000000000000000000000000000000000000000000815250601790805190602001906200006d929190620003ec565b506040518060400160405280600581526020017f464c4f4f5400000000000000000000000000000000000000000000000000000081525060189080519060200190620000bb929190620003ec565b50604051806060016040528060368152602001620058266036913960199080519060200190620000ed929190620003ec565b50348015620000fb57600080fd5b50601780546200010b9062000534565b80601f0160208091040260200160405190810160405280929190818152602001828054620001399062000534565b80156200018a5780601f106200015e576101008083540402835291602001916200018a565b820191906000526020600020905b8154815290600101906020018083116200016c57829003601f168201915b5050505050601880546200019e9062000534565b80601f0160208091040260200160405190810160405280929190818152602001828054620001cc9062000534565b80156200021d5780601f10620001f1576101008083540402835291602001916200021d565b820191906000526020600020905b815481529060010190602001808311620001ff57829003601f168201915b505050505081600090805190602001906200023a929190620003ec565b50806001908051906020019062000253929190620003ec565b505050620002766200026a6200031e60201b60201c565b6200032660201b60201c565b60196015908054620002889062000534565b620002959291906200047d565b5033600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000599565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003fa9062000534565b90600052602060002090601f0160209004810192826200041e57600085556200046a565b82601f106200043957805160ff19168380011785556200046a565b828001600101855582156200046a579182015b82811115620004695782518255916020019190600101906200044c565b5b50905062000479919062000515565b5090565b8280546200048b9062000534565b90600052602060002090601f016020900481019282620004af576000855562000502565b82601f10620004c2578054855562000502565b828001600101855582156200050257600052602060002091601f016020900482015b8281111562000501578254825591600101919060010190620004e4565b5b50905062000511919062000515565b5090565b5b808211156200053057600081600090555060010162000516565b5090565b600060028204905060018216806200054d57607f821691505b602082108114156200056457620005636200056a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61527d80620005a96000396000f3fe60806040526004361061023b5760003560e01c806367765b871161012e578063a2309ff8116100ab578063c87b56dd1161006f578063c87b56dd1461082f578063cf0261ef1461086c578063e6fd298214610895578063e985e9c5146108c0578063f2fde38b146108fd5761023b565b8063a2309ff81461076b578063a2b40d1914610796578063adc41c4b146107bf578063b13985ab146107ea578063b88d4fde146108065761023b565b80638da5cb5b116100f25780638da5cb5b146106aa57806395d89b41146106d55780639670cf3914610700578063a035b1fe14610717578063a22cb465146107425761023b565b806367765b87146105d757806368e24327146106025780636c0360eb1461062b57806370a0823114610656578063715018a6146106935761023b565b80633a6a4d2e116101bc57806342966c681161018057806342966c68146104e05780634f6ccce714610509578063524773ce1461054657806355f804b3146105715780636352211e1461059a5761023b565b80633a6a4d2e1461041e5780633e97db0d146104285780633f3c11361461045157806342842e0e1461048e578063428aa84f146104b75761023b565b806318160ddd1161020357806318160ddd1461033757806323b62b751461036257806323b872dd1461038d5780632f745c59146103b657806334eafb11146103f35761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e5578063162094c41461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613b0a565b610926565b6040516102749190614228565b60405180910390f35b34801561028957600080fd5b50610292610938565b60405161029f9190614243565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613bad565b6109ca565b6040516102dc9190614184565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613a54565b610a4f565b005b34801561031a57600080fd5b5061033560048036038101906103309190613bda565b610b67565b005b34801561034357600080fd5b5061034c610bf1565b60405161035991906145a5565b60405180910390f35b34801561036e57600080fd5b50610377610bfe565b604051610384919061419f565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af919061393e565b610c24565b005b3480156103c257600080fd5b506103dd60048036038101906103d89190613a54565b610c84565b6040516103ea91906145a5565b60405180910390f35b3480156103ff57600080fd5b50610408610d29565b60405161041591906145a5565b60405180910390f35b610426610d2f565b005b34801561043457600080fd5b5061044f600480360381019061044a91906138d1565b610ee0565b005b34801561045d57600080fd5b50610478600480360381019061047391906138a4565b610fa0565b6040516104859190614206565b60405180910390f35b34801561049a57600080fd5b506104b560048036038101906104b0919061393e565b61104e565b005b3480156104c357600080fd5b506104de60048036038101906104d991906138d1565b61106e565b005b3480156104ec57600080fd5b5061050760048036038101906105029190613bad565b61112e565b005b34801561051557600080fd5b50610530600480360381019061052b9190613bad565b61118a565b60405161053d91906145a5565b60405180910390f35b34801561055257600080fd5b5061055b6111fb565b60405161056891906145a5565b60405180910390f35b34801561057d57600080fd5b5061059860048036038101906105939190613b64565b611201565b005b3480156105a657600080fd5b506105c160048036038101906105bc9190613bad565b611297565b6040516105ce9190614184565b60405180910390f35b3480156105e357600080fd5b506105ec611349565b6040516105f991906145a5565b60405180910390f35b34801561060e57600080fd5b5061062960048036038101906106249190613add565b61134f565b005b34801561063757600080fd5b506106406113e8565b60405161064d9190614243565b60405180910390f35b34801561066257600080fd5b5061067d600480360381019061067891906138a4565b611476565b60405161068a91906145a5565b60405180910390f35b34801561069f57600080fd5b506106a861152e565b005b3480156106b657600080fd5b506106bf6115b6565b6040516106cc9190614184565b60405180910390f35b3480156106e157600080fd5b506106ea6115e0565b6040516106f79190614243565b60405180910390f35b34801561070c57600080fd5b50610715611672565b005b34801561072357600080fd5b5061072c611756565b60405161073991906145a5565b60405180910390f35b34801561074e57600080fd5b5061076960048036038101906107649190613a14565b61175c565b005b34801561077757600080fd5b506107806118dd565b60405161078d91906145a5565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b89190613bad565b6118e3565b005b3480156107cb57600080fd5b506107d4611969565b6040516107e1919061419f565b60405180910390f35b61080460048036038101906107ff9190613bad565b61198f565b005b34801561081257600080fd5b5061082d60048036038101906108289190613991565b611cb6565b005b34801561083b57600080fd5b5061085660048036038101906108519190613bad565b611d18565b6040516108639190614243565b60405180910390f35b34801561087857600080fd5b50610893600480360381019061088e9190613a94565b611d2a565b005b3480156108a157600080fd5b506108aa611e76565b6040516108b791906145a5565b60405180910390f35b3480156108cc57600080fd5b506108e760048036038101906108e291906138fe565b611e7c565b6040516108f49190614228565b60405180910390f35b34801561090957600080fd5b50610924600480360381019061091f91906138a4565b611ee2565b005b600061093182611fda565b9050919050565b60606000805461094790614900565b80601f016020809104026020016040519081016040528092919081815260200182805461097390614900565b80156109c05780601f10610995576101008083540402835291602001916109c0565b820191906000526020600020905b8154815290600101906020018083116109a357829003601f168201915b5050505050905090565b60006109d582612054565b610a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0b90614485565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a5a82611297565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac290614505565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aea6120c0565b73ffffffffffffffffffffffffffffffffffffffff161480610b195750610b1881610b136120c0565b611e7c565b5b610b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4f906143a5565b60405180910390fd5b610b6283836120c8565b505050565b610b6f6120c0565b73ffffffffffffffffffffffffffffffffffffffff16610b8d6115b6565b73ffffffffffffffffffffffffffffffffffffffff1614610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda906144a5565b60405180910390fd5b610bed8282612181565b5050565b6000600880549050905090565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c35610c2f6120c0565b826121f5565b610c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6b90614525565b60405180910390fd5b610c7f8383836122d3565b505050565b6000610c8f83611476565b8210610cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc790614265565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60105481565b610d376120c0565b73ffffffffffffffffffffffffffffffffffffffff16610d556115b6565b73ffffffffffffffffffffffffffffffffffffffff1614610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da2906144a5565b60405180910390fd5b6000479050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e86101f484610dfd91906147aa565b610e079190614779565b9081150290604051600060405180830381858888f19350505050610e2a57600080fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166103e86101f484610e7691906147aa565b610e809190614779565b604051610e8c9061416f565b60006040518083038185875af1925050503d8060008114610ec9576040519150601f19603f3d011682016040523d82523d6000602084013e610ece565b606091505b5050905080610edc57600080fd5b5050565b610ee86120c0565b73ffffffffffffffffffffffffffffffffffffffff16610f066115b6565b73ffffffffffffffffffffffffffffffffffffffff1614610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f53906144a5565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606000610fad83611476565b905060008167ffffffffffffffff811115610fcb57610fca614ac8565b5b604051908082528060200260200182016040528015610ff95781602001602082028036833780820191505090505b50905060005b82811015611043576110118582610c84565b82828151811061102457611023614a99565b5b602002602001018181525050808061103b90614963565b915050610fff565b508092505050919050565b61106983838360405180602001604052806000815250611cb6565b505050565b6110766120c0565b73ffffffffffffffffffffffffffffffffffffffff166110946115b6565b73ffffffffffffffffffffffffffffffffffffffff16146110ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e1906144a5565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61113f6111396120c0565b826121f5565b61117e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117590614585565b60405180910390fd5b6111878161252f565b50565b6000611194610bf1565b82106111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc90614545565b60405180910390fd5b600882815481106111e9576111e8614a99565b5b90600052602060002001549050919050565b600f5481565b6112096120c0565b73ffffffffffffffffffffffffffffffffffffffff166112276115b6565b73ffffffffffffffffffffffffffffffffffffffff161461127d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611274906144a5565b60405180910390fd5b80601590805190602001906112939291906135c5565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133790614405565b60405180910390fd5b80915050919050565b60115481565b6113576120c0565b73ffffffffffffffffffffffffffffffffffffffff166113756115b6565b73ffffffffffffffffffffffffffffffffffffffff16146113cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c2906144a5565b60405180910390fd5b80601660006101000a81548160ff02191690831515021790555050565b601580546113f590614900565b80601f016020809104026020016040519081016040528092919081815260200182805461142190614900565b801561146e5780601f106114435761010080835404028352916020019161146e565b820191906000526020600020905b81548152906001019060200180831161145157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114de906143e5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115366120c0565b73ffffffffffffffffffffffffffffffffffffffff166115546115b6565b73ffffffffffffffffffffffffffffffffffffffff16146115aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a1906144a5565b60405180910390fd5b6115b46000612553565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546115ef90614900565b80601f016020809104026020016040519081016040528092919081815260200182805461161b90614900565b80156116685780601f1061163d57610100808354040283529160200191611668565b820191906000526020600020905b81548152906001019060200180831161164b57829003601f168201915b5050505050905090565b61167a6120c0565b73ffffffffffffffffffffffffffffffffffffffff166116986115b6565b73ffffffffffffffffffffffffffffffffffffffff16146116ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e5906144a5565b60405180910390fd5b6000479050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061175357600080fd5b50565b60125481565b6117646120c0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c990614345565b60405180910390fd5b80600560006117df6120c0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661188c6120c0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118d19190614228565b60405180910390a35050565b600e5481565b6118eb6120c0565b73ffffffffffffffffffffffffffffffffffffffff166119096115b6565b73ffffffffffffffffffffffffffffffffffffffff161461195f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611956906144a5565b60405180910390fd5b8060128190555050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601660009054906101000a900460ff166119de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d590614565565b60405180910390fd5b6000811180156119f057506011548111155b611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2690614305565b60405180910390fd5b601054600f5482600e54611a439190614723565b611a4d9190614723565b1115611a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a85906142a5565b60405180910390fd5b60125481611a9c91906147aa565b3414611add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad490614385565b60405180910390fd5b611ae56120c0565b73ffffffffffffffffffffffffffffffffffffffff167fdd07fe617c8fb3763e11ceaa94360026249e8963e556231bc0590b9b03827edc600e5483604051611b2e9291906145c0565b60405180910390a260005b81811015611b7f57600e6000815480929190611b5490614963565b9190505550611b6c611b646120c0565b600e54612619565b8080611b7790614963565b915050611b39565b506000479050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e86101f484611bd291906147aa565b611bdc9190614779565b9081150290604051600060405180830381858888f19350505050611bff57600080fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166103e86101f484611c4b91906147aa565b611c559190614779565b604051611c619061416f565b60006040518083038185875af1925050503d8060008114611c9e576040519150601f19603f3d011682016040523d82523d6000602084013e611ca3565b606091505b5050905080611cb157600080fd5b505050565b611cc7611cc16120c0565b836121f5565b611d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfd90614525565b60405180910390fd5b611d1284848484612637565b50505050565b6060611d2382612693565b9050919050565b611d326120c0565b73ffffffffffffffffffffffffffffffffffffffff16611d506115b6565b73ffffffffffffffffffffffffffffffffffffffff1614611da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9d906144a5565b60405180910390fd5b6013546014541115611ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de4906143c5565b60405180910390fd5b601354815114611dfc57600080fd5b60005b601354811015611e725760146000815480929190611e1c90614963565b9190505550600e6000815480929190611e3490614963565b9190505550611e5f828281518110611e4f57611e4e614a99565b5b6020026020010151600e54612619565b8080611e6a90614963565b915050611dff565b5050565b60135481565b600073a5409ec958c83c3f309868babaca7c86dcb077c173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ecf5760019050611edc565b611ed983836127e5565b90505b92915050565b611eea6120c0565b73ffffffffffffffffffffffffffffffffffffffff16611f086115b6565b73ffffffffffffffffffffffffffffffffffffffff1614611f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f55906144a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc5906142c5565b60405180910390fd5b611fd781612553565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061204d575061204c82612879565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661213b83611297565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61218a82612054565b6121c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c090614425565b60405180910390fd5b80600a600084815260200190815260200160002090805190602001906121f09291906135c5565b505050565b600061220082612054565b61223f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223690614365565b60405180910390fd5b600061224a83611297565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806122b957508373ffffffffffffffffffffffffffffffffffffffff166122a1846109ca565b73ffffffffffffffffffffffffffffffffffffffff16145b806122ca57506122c98185611e7c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122f382611297565b73ffffffffffffffffffffffffffffffffffffffff1614612349576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612340906144c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b090614325565b60405180910390fd5b6123c483838361295b565b6123cf6000826120c8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461241f9190614804565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124769190614723565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6125388161296b565b600f600081548092919061254b90614963565b919050555050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126338282604051806020016040528060008152506129be565b5050565b6126428484846122d3565b61264e84848484612a19565b61268d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268490614285565b60405180910390fd5b50505050565b606061269e82612054565b6126dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d490614465565b60405180910390fd5b6000600a600084815260200190815260200160002080546126fd90614900565b80601f016020809104026020016040519081016040528092919081815260200182805461272990614900565b80156127765780601f1061274b57610100808354040283529160200191612776565b820191906000526020600020905b81548152906001019060200180831161275957829003601f168201915b505050505090506000612787612bb0565b905060008151141561279d5781925050506127e0565b6000825111156127d25780826040516020016127ba92919061414b565b604051602081830303815290604052925050506127e0565b6127db84612c42565b925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061294457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612954575061295382612ce9565b5b9050919050565b612966838383612d53565b505050565b61297481612e67565b6000600a6000838152602001908152602001600020805461299490614900565b9050146129bb57600a600082815260200190815260200160002060006129ba919061364b565b5b50565b6129c88383612f78565b6129d56000848484612a19565b612a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0b90614285565b60405180910390fd5b505050565b6000612a3a8473ffffffffffffffffffffffffffffffffffffffff16613146565b15612ba3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a636120c0565b8786866040518563ffffffff1660e01b8152600401612a8594939291906141ba565b602060405180830381600087803b158015612a9f57600080fd5b505af1925050508015612ad057506040513d601f19601f82011682018060405250810190612acd9190613b37565b60015b612b53573d8060008114612b00576040519150601f19603f3d011682016040523d82523d6000602084013e612b05565b606091505b50600081511415612b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4290614285565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ba8565b600190505b949350505050565b606060158054612bbf90614900565b80601f0160208091040260200160405190810160405280929190818152602001828054612beb90614900565b8015612c385780601f10612c0d57610100808354040283529160200191612c38565b820191906000526020600020905b815481529060010190602001808311612c1b57829003601f168201915b5050505050905090565b6060612c4d82612054565b612c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c83906144e5565b60405180910390fd5b6000612c96612bb0565b90506000815111612cb65760405180602001604052806000815250612ce1565b80612cc084613159565b604051602001612cd192919061414b565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612d5e8383836132ba565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612da157612d9c816132bf565b612de0565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612ddf57612dde8382613308565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e2357612e1e81613475565b612e62565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612e6157612e608282613546565b5b5b505050565b6000612e7282611297565b9050612e808160008461295b565b612e8b6000836120c8565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612edb9190614804565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fdf90614445565b60405180910390fd5b612ff181612054565b15613031576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613028906142e5565b60405180910390fd5b61303d6000838361295b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461308d9190614723565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b606060008214156131a1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132b5565b600082905060005b600082146131d35780806131bc90614963565b915050600a826131cc9190614779565b91506131a9565b60008167ffffffffffffffff8111156131ef576131ee614ac8565b5b6040519080825280601f01601f1916602001820160405280156132215781602001600182028036833780820191505090505b5090505b600085146132ae5760018261323a9190614804565b9150600a8561324991906149ac565b60306132559190614723565b60f81b81838151811061326b5761326a614a99565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132a79190614779565b9450613225565b8093505050505b919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161331584611476565b61331f9190614804565b9050600060076000848152602001908152602001600020549050818114613404576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134899190614804565b90506000600960008481526020019081526020016000205490506000600883815481106134b9576134b8614a99565b5b9060005260206000200154905080600883815481106134db576134da614a99565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061352a57613529614a6a565b5b6001900381819060005260206000200160009055905550505050565b600061355183611476565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546135d190614900565b90600052602060002090601f0160209004810192826135f3576000855561363a565b82601f1061360c57805160ff191683800117855561363a565b8280016001018555821561363a579182015b8281111561363957825182559160200191906001019061361e565b5b509050613647919061368b565b5090565b50805461365790614900565b6000825580601f106136695750613688565b601f016020900490600052602060002090810190613687919061368b565b5b50565b5b808211156136a457600081600090555060010161368c565b5090565b60006136bb6136b68461460e565b6145e9565b905080838252602082019050828560208602820111156136de576136dd614afc565b5b60005b8581101561370e57816136f4888261379c565b8452602084019350602083019250506001810190506136e1565b5050509392505050565b600061372b6137268461463a565b6145e9565b90508281526020810184848401111561374757613746614b01565b5b6137528482856148be565b509392505050565b600061376d6137688461466b565b6145e9565b90508281526020810184848401111561378957613788614b01565b5b6137948482856148be565b509392505050565b6000813590506137ab816151d4565b92915050565b6000813590506137c0816151eb565b92915050565b600082601f8301126137db576137da614af7565b5b81356137eb8482602086016136a8565b91505092915050565b60008135905061380381615202565b92915050565b60008135905061381881615219565b92915050565b60008151905061382d81615219565b92915050565b600082601f83011261384857613847614af7565b5b8135613858848260208601613718565b91505092915050565b600082601f83011261387657613875614af7565b5b813561388684826020860161375a565b91505092915050565b60008135905061389e81615230565b92915050565b6000602082840312156138ba576138b9614b0b565b5b60006138c88482850161379c565b91505092915050565b6000602082840312156138e7576138e6614b0b565b5b60006138f5848285016137b1565b91505092915050565b6000806040838503121561391557613914614b0b565b5b60006139238582860161379c565b92505060206139348582860161379c565b9150509250929050565b60008060006060848603121561395757613956614b0b565b5b60006139658682870161379c565b93505060206139768682870161379c565b92505060406139878682870161388f565b9150509250925092565b600080600080608085870312156139ab576139aa614b0b565b5b60006139b98782880161379c565b94505060206139ca8782880161379c565b93505060406139db8782880161388f565b925050606085013567ffffffffffffffff8111156139fc576139fb614b06565b5b613a0887828801613833565b91505092959194509250565b60008060408385031215613a2b57613a2a614b0b565b5b6000613a398582860161379c565b9250506020613a4a858286016137f4565b9150509250929050565b60008060408385031215613a6b57613a6a614b0b565b5b6000613a798582860161379c565b9250506020613a8a8582860161388f565b9150509250929050565b600060208284031215613aaa57613aa9614b0b565b5b600082013567ffffffffffffffff811115613ac857613ac7614b06565b5b613ad4848285016137c6565b91505092915050565b600060208284031215613af357613af2614b0b565b5b6000613b01848285016137f4565b91505092915050565b600060208284031215613b2057613b1f614b0b565b5b6000613b2e84828501613809565b91505092915050565b600060208284031215613b4d57613b4c614b0b565b5b6000613b5b8482850161381e565b91505092915050565b600060208284031215613b7a57613b79614b0b565b5b600082013567ffffffffffffffff811115613b9857613b97614b06565b5b613ba484828501613861565b91505092915050565b600060208284031215613bc357613bc2614b0b565b5b6000613bd18482850161388f565b91505092915050565b60008060408385031215613bf157613bf0614b0b565b5b6000613bff8582860161388f565b925050602083013567ffffffffffffffff811115613c2057613c1f614b06565b5b613c2c85828601613861565b9150509250929050565b6000613c42838361412d565b60208301905092915050565b613c578161484a565b82525050565b613c6681614838565b82525050565b6000613c77826146ac565b613c8181856146da565b9350613c8c8361469c565b8060005b83811015613cbd578151613ca48882613c36565b9750613caf836146cd565b925050600181019050613c90565b5085935050505092915050565b613cd38161485c565b82525050565b6000613ce4826146b7565b613cee81856146eb565b9350613cfe8185602086016148cd565b613d0781614b10565b840191505092915050565b6000613d1d826146c2565b613d278185614707565b9350613d378185602086016148cd565b613d4081614b10565b840191505092915050565b6000613d56826146c2565b613d608185614718565b9350613d708185602086016148cd565b80840191505092915050565b6000613d89602b83614707565b9150613d9482614b21565b604082019050919050565b6000613dac603283614707565b9150613db782614b70565b604082019050919050565b6000613dcf601483614707565b9150613dda82614bbf565b602082019050919050565b6000613df2602683614707565b9150613dfd82614be8565b604082019050919050565b6000613e15601c83614707565b9150613e2082614c37565b602082019050919050565b6000613e38601d83614707565b9150613e4382614c60565b602082019050919050565b6000613e5b602483614707565b9150613e6682614c89565b604082019050919050565b6000613e7e601983614707565b9150613e8982614cd8565b602082019050919050565b6000613ea1602c83614707565b9150613eac82614d01565b604082019050919050565b6000613ec4601283614707565b9150613ecf82614d50565b602082019050919050565b6000613ee7603883614707565b9150613ef282614d79565b604082019050919050565b6000613f0a601683614707565b9150613f1582614dc8565b602082019050919050565b6000613f2d602a83614707565b9150613f3882614df1565b604082019050919050565b6000613f50602983614707565b9150613f5b82614e40565b604082019050919050565b6000613f73602e83614707565b9150613f7e82614e8f565b604082019050919050565b6000613f96602083614707565b9150613fa182614ede565b602082019050919050565b6000613fb9603183614707565b9150613fc482614f07565b604082019050919050565b6000613fdc602c83614707565b9150613fe782614f56565b604082019050919050565b6000613fff602083614707565b915061400a82614fa5565b602082019050919050565b6000614022602983614707565b915061402d82614fce565b604082019050919050565b6000614045602f83614707565b91506140508261501d565b604082019050919050565b6000614068602183614707565b91506140738261506c565b604082019050919050565b600061408b6000836146fc565b9150614096826150bb565b600082019050919050565b60006140ae603183614707565b91506140b9826150be565b604082019050919050565b60006140d1602c83614707565b91506140dc8261510d565b604082019050919050565b60006140f4601483614707565b91506140ff8261515c565b602082019050919050565b6000614117603083614707565b915061412282615185565b604082019050919050565b614136816148b4565b82525050565b614145816148b4565b82525050565b60006141578285613d4b565b91506141638284613d4b565b91508190509392505050565b600061417a8261407e565b9150819050919050565b60006020820190506141996000830184613c5d565b92915050565b60006020820190506141b46000830184613c4e565b92915050565b60006080820190506141cf6000830187613c5d565b6141dc6020830186613c5d565b6141e9604083018561413c565b81810360608301526141fb8184613cd9565b905095945050505050565b600060208201905081810360008301526142208184613c6c565b905092915050565b600060208201905061423d6000830184613cca565b92915050565b6000602082019050818103600083015261425d8184613d12565b905092915050565b6000602082019050818103600083015261427e81613d7c565b9050919050565b6000602082019050818103600083015261429e81613d9f565b9050919050565b600060208201905081810360008301526142be81613dc2565b9050919050565b600060208201905081810360008301526142de81613de5565b9050919050565b600060208201905081810360008301526142fe81613e08565b9050919050565b6000602082019050818103600083015261431e81613e2b565b9050919050565b6000602082019050818103600083015261433e81613e4e565b9050919050565b6000602082019050818103600083015261435e81613e71565b9050919050565b6000602082019050818103600083015261437e81613e94565b9050919050565b6000602082019050818103600083015261439e81613eb7565b9050919050565b600060208201905081810360008301526143be81613eda565b9050919050565b600060208201905081810360008301526143de81613efd565b9050919050565b600060208201905081810360008301526143fe81613f20565b9050919050565b6000602082019050818103600083015261441e81613f43565b9050919050565b6000602082019050818103600083015261443e81613f66565b9050919050565b6000602082019050818103600083015261445e81613f89565b9050919050565b6000602082019050818103600083015261447e81613fac565b9050919050565b6000602082019050818103600083015261449e81613fcf565b9050919050565b600060208201905081810360008301526144be81613ff2565b9050919050565b600060208201905081810360008301526144de81614015565b9050919050565b600060208201905081810360008301526144fe81614038565b9050919050565b6000602082019050818103600083015261451e8161405b565b9050919050565b6000602082019050818103600083015261453e816140a1565b9050919050565b6000602082019050818103600083015261455e816140c4565b9050919050565b6000602082019050818103600083015261457e816140e7565b9050919050565b6000602082019050818103600083015261459e8161410a565b9050919050565b60006020820190506145ba600083018461413c565b92915050565b60006040820190506145d5600083018561413c565b6145e2602083018461413c565b9392505050565b60006145f3614604565b90506145ff8282614932565b919050565b6000604051905090565b600067ffffffffffffffff82111561462957614628614ac8565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561465557614654614ac8565b5b61465e82614b10565b9050602081019050919050565b600067ffffffffffffffff82111561468657614685614ac8565b5b61468f82614b10565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061472e826148b4565b9150614739836148b4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561476e5761476d6149dd565b5b828201905092915050565b6000614784826148b4565b915061478f836148b4565b92508261479f5761479e614a0c565b5b828204905092915050565b60006147b5826148b4565b91506147c0836148b4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147f9576147f86149dd565b5b828202905092915050565b600061480f826148b4565b915061481a836148b4565b92508282101561482d5761482c6149dd565b5b828203905092915050565b600061484382614894565b9050919050565b600061485582614894565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156148eb5780820151818401526020810190506148d0565b838111156148fa576000848401525b50505050565b6000600282049050600182168061491857607f821691505b6020821081141561492c5761492b614a3b565b5b50919050565b61493b82614b10565b810181811067ffffffffffffffff8211171561495a57614959614ac8565b5b80604052505050565b600061496e826148b4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149a1576149a06149dd565b5b600182019050919050565b60006149b7826148b4565b91506149c2836148b4565b9250826149d2576149d1614a0c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820696e76656e746f7279000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4261746368207075726368617365206c696d6974206578636565646564000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e76616c69642076616c75652073656e740000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f45786365656473207265736572766520737570706c7900000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f53616c6520686173206e6f742073746172746564000000000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b6151dd81614838565b81146151e857600080fd5b50565b6151f48161484a565b81146151ff57600080fd5b50565b61520b8161485c565b811461521657600080fd5b50565b61522281614868565b811461522d57600080fd5b50565b615239816148b4565b811461524457600080fd5b5056fea26469706673582212206068e76453099c9f39a7435ee24a1f279aecd9f8b0da3ad7b782223c8d9d06ec64736f6c63430008070033697066733a2f2f516d516677567869317246537872584e5737564756464a314158446d623654526d676264767537446533473741552f
Deployed Bytecode
0x60806040526004361061023b5760003560e01c806367765b871161012e578063a2309ff8116100ab578063c87b56dd1161006f578063c87b56dd1461082f578063cf0261ef1461086c578063e6fd298214610895578063e985e9c5146108c0578063f2fde38b146108fd5761023b565b8063a2309ff81461076b578063a2b40d1914610796578063adc41c4b146107bf578063b13985ab146107ea578063b88d4fde146108065761023b565b80638da5cb5b116100f25780638da5cb5b146106aa57806395d89b41146106d55780639670cf3914610700578063a035b1fe14610717578063a22cb465146107425761023b565b806367765b87146105d757806368e24327146106025780636c0360eb1461062b57806370a0823114610656578063715018a6146106935761023b565b80633a6a4d2e116101bc57806342966c681161018057806342966c68146104e05780634f6ccce714610509578063524773ce1461054657806355f804b3146105715780636352211e1461059a5761023b565b80633a6a4d2e1461041e5780633e97db0d146104285780633f3c11361461045157806342842e0e1461048e578063428aa84f146104b75761023b565b806318160ddd1161020357806318160ddd1461033757806323b62b751461036257806323b872dd1461038d5780632f745c59146103b657806334eafb11146103f35761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e5578063162094c41461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613b0a565b610926565b6040516102749190614228565b60405180910390f35b34801561028957600080fd5b50610292610938565b60405161029f9190614243565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613bad565b6109ca565b6040516102dc9190614184565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613a54565b610a4f565b005b34801561031a57600080fd5b5061033560048036038101906103309190613bda565b610b67565b005b34801561034357600080fd5b5061034c610bf1565b60405161035991906145a5565b60405180910390f35b34801561036e57600080fd5b50610377610bfe565b604051610384919061419f565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af919061393e565b610c24565b005b3480156103c257600080fd5b506103dd60048036038101906103d89190613a54565b610c84565b6040516103ea91906145a5565b60405180910390f35b3480156103ff57600080fd5b50610408610d29565b60405161041591906145a5565b60405180910390f35b610426610d2f565b005b34801561043457600080fd5b5061044f600480360381019061044a91906138d1565b610ee0565b005b34801561045d57600080fd5b50610478600480360381019061047391906138a4565b610fa0565b6040516104859190614206565b60405180910390f35b34801561049a57600080fd5b506104b560048036038101906104b0919061393e565b61104e565b005b3480156104c357600080fd5b506104de60048036038101906104d991906138d1565b61106e565b005b3480156104ec57600080fd5b5061050760048036038101906105029190613bad565b61112e565b005b34801561051557600080fd5b50610530600480360381019061052b9190613bad565b61118a565b60405161053d91906145a5565b60405180910390f35b34801561055257600080fd5b5061055b6111fb565b60405161056891906145a5565b60405180910390f35b34801561057d57600080fd5b5061059860048036038101906105939190613b64565b611201565b005b3480156105a657600080fd5b506105c160048036038101906105bc9190613bad565b611297565b6040516105ce9190614184565b60405180910390f35b3480156105e357600080fd5b506105ec611349565b6040516105f991906145a5565b60405180910390f35b34801561060e57600080fd5b5061062960048036038101906106249190613add565b61134f565b005b34801561063757600080fd5b506106406113e8565b60405161064d9190614243565b60405180910390f35b34801561066257600080fd5b5061067d600480360381019061067891906138a4565b611476565b60405161068a91906145a5565b60405180910390f35b34801561069f57600080fd5b506106a861152e565b005b3480156106b657600080fd5b506106bf6115b6565b6040516106cc9190614184565b60405180910390f35b3480156106e157600080fd5b506106ea6115e0565b6040516106f79190614243565b60405180910390f35b34801561070c57600080fd5b50610715611672565b005b34801561072357600080fd5b5061072c611756565b60405161073991906145a5565b60405180910390f35b34801561074e57600080fd5b5061076960048036038101906107649190613a14565b61175c565b005b34801561077757600080fd5b506107806118dd565b60405161078d91906145a5565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b89190613bad565b6118e3565b005b3480156107cb57600080fd5b506107d4611969565b6040516107e1919061419f565b60405180910390f35b61080460048036038101906107ff9190613bad565b61198f565b005b34801561081257600080fd5b5061082d60048036038101906108289190613991565b611cb6565b005b34801561083b57600080fd5b5061085660048036038101906108519190613bad565b611d18565b6040516108639190614243565b60405180910390f35b34801561087857600080fd5b50610893600480360381019061088e9190613a94565b611d2a565b005b3480156108a157600080fd5b506108aa611e76565b6040516108b791906145a5565b60405180910390f35b3480156108cc57600080fd5b506108e760048036038101906108e291906138fe565b611e7c565b6040516108f49190614228565b60405180910390f35b34801561090957600080fd5b50610924600480360381019061091f91906138a4565b611ee2565b005b600061093182611fda565b9050919050565b60606000805461094790614900565b80601f016020809104026020016040519081016040528092919081815260200182805461097390614900565b80156109c05780601f10610995576101008083540402835291602001916109c0565b820191906000526020600020905b8154815290600101906020018083116109a357829003601f168201915b5050505050905090565b60006109d582612054565b610a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0b90614485565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a5a82611297565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac290614505565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aea6120c0565b73ffffffffffffffffffffffffffffffffffffffff161480610b195750610b1881610b136120c0565b611e7c565b5b610b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4f906143a5565b60405180910390fd5b610b6283836120c8565b505050565b610b6f6120c0565b73ffffffffffffffffffffffffffffffffffffffff16610b8d6115b6565b73ffffffffffffffffffffffffffffffffffffffff1614610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda906144a5565b60405180910390fd5b610bed8282612181565b5050565b6000600880549050905090565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c35610c2f6120c0565b826121f5565b610c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6b90614525565b60405180910390fd5b610c7f8383836122d3565b505050565b6000610c8f83611476565b8210610cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc790614265565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60105481565b610d376120c0565b73ffffffffffffffffffffffffffffffffffffffff16610d556115b6565b73ffffffffffffffffffffffffffffffffffffffff1614610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da2906144a5565b60405180910390fd5b6000479050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e86101f484610dfd91906147aa565b610e079190614779565b9081150290604051600060405180830381858888f19350505050610e2a57600080fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166103e86101f484610e7691906147aa565b610e809190614779565b604051610e8c9061416f565b60006040518083038185875af1925050503d8060008114610ec9576040519150601f19603f3d011682016040523d82523d6000602084013e610ece565b606091505b5050905080610edc57600080fd5b5050565b610ee86120c0565b73ffffffffffffffffffffffffffffffffffffffff16610f066115b6565b73ffffffffffffffffffffffffffffffffffffffff1614610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f53906144a5565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606000610fad83611476565b905060008167ffffffffffffffff811115610fcb57610fca614ac8565b5b604051908082528060200260200182016040528015610ff95781602001602082028036833780820191505090505b50905060005b82811015611043576110118582610c84565b82828151811061102457611023614a99565b5b602002602001018181525050808061103b90614963565b915050610fff565b508092505050919050565b61106983838360405180602001604052806000815250611cb6565b505050565b6110766120c0565b73ffffffffffffffffffffffffffffffffffffffff166110946115b6565b73ffffffffffffffffffffffffffffffffffffffff16146110ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e1906144a5565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61113f6111396120c0565b826121f5565b61117e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117590614585565b60405180910390fd5b6111878161252f565b50565b6000611194610bf1565b82106111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc90614545565b60405180910390fd5b600882815481106111e9576111e8614a99565b5b90600052602060002001549050919050565b600f5481565b6112096120c0565b73ffffffffffffffffffffffffffffffffffffffff166112276115b6565b73ffffffffffffffffffffffffffffffffffffffff161461127d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611274906144a5565b60405180910390fd5b80601590805190602001906112939291906135c5565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133790614405565b60405180910390fd5b80915050919050565b60115481565b6113576120c0565b73ffffffffffffffffffffffffffffffffffffffff166113756115b6565b73ffffffffffffffffffffffffffffffffffffffff16146113cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c2906144a5565b60405180910390fd5b80601660006101000a81548160ff02191690831515021790555050565b601580546113f590614900565b80601f016020809104026020016040519081016040528092919081815260200182805461142190614900565b801561146e5780601f106114435761010080835404028352916020019161146e565b820191906000526020600020905b81548152906001019060200180831161145157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114de906143e5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115366120c0565b73ffffffffffffffffffffffffffffffffffffffff166115546115b6565b73ffffffffffffffffffffffffffffffffffffffff16146115aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a1906144a5565b60405180910390fd5b6115b46000612553565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546115ef90614900565b80601f016020809104026020016040519081016040528092919081815260200182805461161b90614900565b80156116685780601f1061163d57610100808354040283529160200191611668565b820191906000526020600020905b81548152906001019060200180831161164b57829003601f168201915b5050505050905090565b61167a6120c0565b73ffffffffffffffffffffffffffffffffffffffff166116986115b6565b73ffffffffffffffffffffffffffffffffffffffff16146116ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e5906144a5565b60405180910390fd5b6000479050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061175357600080fd5b50565b60125481565b6117646120c0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c990614345565b60405180910390fd5b80600560006117df6120c0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661188c6120c0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118d19190614228565b60405180910390a35050565b600e5481565b6118eb6120c0565b73ffffffffffffffffffffffffffffffffffffffff166119096115b6565b73ffffffffffffffffffffffffffffffffffffffff161461195f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611956906144a5565b60405180910390fd5b8060128190555050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601660009054906101000a900460ff166119de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d590614565565b60405180910390fd5b6000811180156119f057506011548111155b611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2690614305565b60405180910390fd5b601054600f5482600e54611a439190614723565b611a4d9190614723565b1115611a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a85906142a5565b60405180910390fd5b60125481611a9c91906147aa565b3414611add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad490614385565b60405180910390fd5b611ae56120c0565b73ffffffffffffffffffffffffffffffffffffffff167fdd07fe617c8fb3763e11ceaa94360026249e8963e556231bc0590b9b03827edc600e5483604051611b2e9291906145c0565b60405180910390a260005b81811015611b7f57600e6000815480929190611b5490614963565b9190505550611b6c611b646120c0565b600e54612619565b8080611b7790614963565b915050611b39565b506000479050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e86101f484611bd291906147aa565b611bdc9190614779565b9081150290604051600060405180830381858888f19350505050611bff57600080fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166103e86101f484611c4b91906147aa565b611c559190614779565b604051611c619061416f565b60006040518083038185875af1925050503d8060008114611c9e576040519150601f19603f3d011682016040523d82523d6000602084013e611ca3565b606091505b5050905080611cb157600080fd5b505050565b611cc7611cc16120c0565b836121f5565b611d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfd90614525565b60405180910390fd5b611d1284848484612637565b50505050565b6060611d2382612693565b9050919050565b611d326120c0565b73ffffffffffffffffffffffffffffffffffffffff16611d506115b6565b73ffffffffffffffffffffffffffffffffffffffff1614611da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9d906144a5565b60405180910390fd5b6013546014541115611ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de4906143c5565b60405180910390fd5b601354815114611dfc57600080fd5b60005b601354811015611e725760146000815480929190611e1c90614963565b9190505550600e6000815480929190611e3490614963565b9190505550611e5f828281518110611e4f57611e4e614a99565b5b6020026020010151600e54612619565b8080611e6a90614963565b915050611dff565b5050565b60135481565b600073a5409ec958c83c3f309868babaca7c86dcb077c173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ecf5760019050611edc565b611ed983836127e5565b90505b92915050565b611eea6120c0565b73ffffffffffffffffffffffffffffffffffffffff16611f086115b6565b73ffffffffffffffffffffffffffffffffffffffff1614611f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f55906144a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc5906142c5565b60405180910390fd5b611fd781612553565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061204d575061204c82612879565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661213b83611297565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61218a82612054565b6121c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c090614425565b60405180910390fd5b80600a600084815260200190815260200160002090805190602001906121f09291906135c5565b505050565b600061220082612054565b61223f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223690614365565b60405180910390fd5b600061224a83611297565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806122b957508373ffffffffffffffffffffffffffffffffffffffff166122a1846109ca565b73ffffffffffffffffffffffffffffffffffffffff16145b806122ca57506122c98185611e7c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122f382611297565b73ffffffffffffffffffffffffffffffffffffffff1614612349576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612340906144c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b090614325565b60405180910390fd5b6123c483838361295b565b6123cf6000826120c8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461241f9190614804565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124769190614723565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6125388161296b565b600f600081548092919061254b90614963565b919050555050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126338282604051806020016040528060008152506129be565b5050565b6126428484846122d3565b61264e84848484612a19565b61268d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268490614285565b60405180910390fd5b50505050565b606061269e82612054565b6126dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d490614465565b60405180910390fd5b6000600a600084815260200190815260200160002080546126fd90614900565b80601f016020809104026020016040519081016040528092919081815260200182805461272990614900565b80156127765780601f1061274b57610100808354040283529160200191612776565b820191906000526020600020905b81548152906001019060200180831161275957829003601f168201915b505050505090506000612787612bb0565b905060008151141561279d5781925050506127e0565b6000825111156127d25780826040516020016127ba92919061414b565b604051602081830303815290604052925050506127e0565b6127db84612c42565b925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061294457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612954575061295382612ce9565b5b9050919050565b612966838383612d53565b505050565b61297481612e67565b6000600a6000838152602001908152602001600020805461299490614900565b9050146129bb57600a600082815260200190815260200160002060006129ba919061364b565b5b50565b6129c88383612f78565b6129d56000848484612a19565b612a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0b90614285565b60405180910390fd5b505050565b6000612a3a8473ffffffffffffffffffffffffffffffffffffffff16613146565b15612ba3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a636120c0565b8786866040518563ffffffff1660e01b8152600401612a8594939291906141ba565b602060405180830381600087803b158015612a9f57600080fd5b505af1925050508015612ad057506040513d601f19601f82011682018060405250810190612acd9190613b37565b60015b612b53573d8060008114612b00576040519150601f19603f3d011682016040523d82523d6000602084013e612b05565b606091505b50600081511415612b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4290614285565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ba8565b600190505b949350505050565b606060158054612bbf90614900565b80601f0160208091040260200160405190810160405280929190818152602001828054612beb90614900565b8015612c385780601f10612c0d57610100808354040283529160200191612c38565b820191906000526020600020905b815481529060010190602001808311612c1b57829003601f168201915b5050505050905090565b6060612c4d82612054565b612c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c83906144e5565b60405180910390fd5b6000612c96612bb0565b90506000815111612cb65760405180602001604052806000815250612ce1565b80612cc084613159565b604051602001612cd192919061414b565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612d5e8383836132ba565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612da157612d9c816132bf565b612de0565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612ddf57612dde8382613308565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e2357612e1e81613475565b612e62565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612e6157612e608282613546565b5b5b505050565b6000612e7282611297565b9050612e808160008461295b565b612e8b6000836120c8565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612edb9190614804565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fdf90614445565b60405180910390fd5b612ff181612054565b15613031576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613028906142e5565b60405180910390fd5b61303d6000838361295b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461308d9190614723565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b606060008214156131a1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132b5565b600082905060005b600082146131d35780806131bc90614963565b915050600a826131cc9190614779565b91506131a9565b60008167ffffffffffffffff8111156131ef576131ee614ac8565b5b6040519080825280601f01601f1916602001820160405280156132215781602001600182028036833780820191505090505b5090505b600085146132ae5760018261323a9190614804565b9150600a8561324991906149ac565b60306132559190614723565b60f81b81838151811061326b5761326a614a99565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132a79190614779565b9450613225565b8093505050505b919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161331584611476565b61331f9190614804565b9050600060076000848152602001908152602001600020549050818114613404576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134899190614804565b90506000600960008481526020019081526020016000205490506000600883815481106134b9576134b8614a99565b5b9060005260206000200154905080600883815481106134db576134da614a99565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061352a57613529614a6a565b5b6001900381819060005260206000200160009055905550505050565b600061355183611476565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546135d190614900565b90600052602060002090601f0160209004810192826135f3576000855561363a565b82601f1061360c57805160ff191683800117855561363a565b8280016001018555821561363a579182015b8281111561363957825182559160200191906001019061361e565b5b509050613647919061368b565b5090565b50805461365790614900565b6000825580601f106136695750613688565b601f016020900490600052602060002090810190613687919061368b565b5b50565b5b808211156136a457600081600090555060010161368c565b5090565b60006136bb6136b68461460e565b6145e9565b905080838252602082019050828560208602820111156136de576136dd614afc565b5b60005b8581101561370e57816136f4888261379c565b8452602084019350602083019250506001810190506136e1565b5050509392505050565b600061372b6137268461463a565b6145e9565b90508281526020810184848401111561374757613746614b01565b5b6137528482856148be565b509392505050565b600061376d6137688461466b565b6145e9565b90508281526020810184848401111561378957613788614b01565b5b6137948482856148be565b509392505050565b6000813590506137ab816151d4565b92915050565b6000813590506137c0816151eb565b92915050565b600082601f8301126137db576137da614af7565b5b81356137eb8482602086016136a8565b91505092915050565b60008135905061380381615202565b92915050565b60008135905061381881615219565b92915050565b60008151905061382d81615219565b92915050565b600082601f83011261384857613847614af7565b5b8135613858848260208601613718565b91505092915050565b600082601f83011261387657613875614af7565b5b813561388684826020860161375a565b91505092915050565b60008135905061389e81615230565b92915050565b6000602082840312156138ba576138b9614b0b565b5b60006138c88482850161379c565b91505092915050565b6000602082840312156138e7576138e6614b0b565b5b60006138f5848285016137b1565b91505092915050565b6000806040838503121561391557613914614b0b565b5b60006139238582860161379c565b92505060206139348582860161379c565b9150509250929050565b60008060006060848603121561395757613956614b0b565b5b60006139658682870161379c565b93505060206139768682870161379c565b92505060406139878682870161388f565b9150509250925092565b600080600080608085870312156139ab576139aa614b0b565b5b60006139b98782880161379c565b94505060206139ca8782880161379c565b93505060406139db8782880161388f565b925050606085013567ffffffffffffffff8111156139fc576139fb614b06565b5b613a0887828801613833565b91505092959194509250565b60008060408385031215613a2b57613a2a614b0b565b5b6000613a398582860161379c565b9250506020613a4a858286016137f4565b9150509250929050565b60008060408385031215613a6b57613a6a614b0b565b5b6000613a798582860161379c565b9250506020613a8a8582860161388f565b9150509250929050565b600060208284031215613aaa57613aa9614b0b565b5b600082013567ffffffffffffffff811115613ac857613ac7614b06565b5b613ad4848285016137c6565b91505092915050565b600060208284031215613af357613af2614b0b565b5b6000613b01848285016137f4565b91505092915050565b600060208284031215613b2057613b1f614b0b565b5b6000613b2e84828501613809565b91505092915050565b600060208284031215613b4d57613b4c614b0b565b5b6000613b5b8482850161381e565b91505092915050565b600060208284031215613b7a57613b79614b0b565b5b600082013567ffffffffffffffff811115613b9857613b97614b06565b5b613ba484828501613861565b91505092915050565b600060208284031215613bc357613bc2614b0b565b5b6000613bd18482850161388f565b91505092915050565b60008060408385031215613bf157613bf0614b0b565b5b6000613bff8582860161388f565b925050602083013567ffffffffffffffff811115613c2057613c1f614b06565b5b613c2c85828601613861565b9150509250929050565b6000613c42838361412d565b60208301905092915050565b613c578161484a565b82525050565b613c6681614838565b82525050565b6000613c77826146ac565b613c8181856146da565b9350613c8c8361469c565b8060005b83811015613cbd578151613ca48882613c36565b9750613caf836146cd565b925050600181019050613c90565b5085935050505092915050565b613cd38161485c565b82525050565b6000613ce4826146b7565b613cee81856146eb565b9350613cfe8185602086016148cd565b613d0781614b10565b840191505092915050565b6000613d1d826146c2565b613d278185614707565b9350613d378185602086016148cd565b613d4081614b10565b840191505092915050565b6000613d56826146c2565b613d608185614718565b9350613d708185602086016148cd565b80840191505092915050565b6000613d89602b83614707565b9150613d9482614b21565b604082019050919050565b6000613dac603283614707565b9150613db782614b70565b604082019050919050565b6000613dcf601483614707565b9150613dda82614bbf565b602082019050919050565b6000613df2602683614707565b9150613dfd82614be8565b604082019050919050565b6000613e15601c83614707565b9150613e2082614c37565b602082019050919050565b6000613e38601d83614707565b9150613e4382614c60565b602082019050919050565b6000613e5b602483614707565b9150613e6682614c89565b604082019050919050565b6000613e7e601983614707565b9150613e8982614cd8565b602082019050919050565b6000613ea1602c83614707565b9150613eac82614d01565b604082019050919050565b6000613ec4601283614707565b9150613ecf82614d50565b602082019050919050565b6000613ee7603883614707565b9150613ef282614d79565b604082019050919050565b6000613f0a601683614707565b9150613f1582614dc8565b602082019050919050565b6000613f2d602a83614707565b9150613f3882614df1565b604082019050919050565b6000613f50602983614707565b9150613f5b82614e40565b604082019050919050565b6000613f73602e83614707565b9150613f7e82614e8f565b604082019050919050565b6000613f96602083614707565b9150613fa182614ede565b602082019050919050565b6000613fb9603183614707565b9150613fc482614f07565b604082019050919050565b6000613fdc602c83614707565b9150613fe782614f56565b604082019050919050565b6000613fff602083614707565b915061400a82614fa5565b602082019050919050565b6000614022602983614707565b915061402d82614fce565b604082019050919050565b6000614045602f83614707565b91506140508261501d565b604082019050919050565b6000614068602183614707565b91506140738261506c565b604082019050919050565b600061408b6000836146fc565b9150614096826150bb565b600082019050919050565b60006140ae603183614707565b91506140b9826150be565b604082019050919050565b60006140d1602c83614707565b91506140dc8261510d565b604082019050919050565b60006140f4601483614707565b91506140ff8261515c565b602082019050919050565b6000614117603083614707565b915061412282615185565b604082019050919050565b614136816148b4565b82525050565b614145816148b4565b82525050565b60006141578285613d4b565b91506141638284613d4b565b91508190509392505050565b600061417a8261407e565b9150819050919050565b60006020820190506141996000830184613c5d565b92915050565b60006020820190506141b46000830184613c4e565b92915050565b60006080820190506141cf6000830187613c5d565b6141dc6020830186613c5d565b6141e9604083018561413c565b81810360608301526141fb8184613cd9565b905095945050505050565b600060208201905081810360008301526142208184613c6c565b905092915050565b600060208201905061423d6000830184613cca565b92915050565b6000602082019050818103600083015261425d8184613d12565b905092915050565b6000602082019050818103600083015261427e81613d7c565b9050919050565b6000602082019050818103600083015261429e81613d9f565b9050919050565b600060208201905081810360008301526142be81613dc2565b9050919050565b600060208201905081810360008301526142de81613de5565b9050919050565b600060208201905081810360008301526142fe81613e08565b9050919050565b6000602082019050818103600083015261431e81613e2b565b9050919050565b6000602082019050818103600083015261433e81613e4e565b9050919050565b6000602082019050818103600083015261435e81613e71565b9050919050565b6000602082019050818103600083015261437e81613e94565b9050919050565b6000602082019050818103600083015261439e81613eb7565b9050919050565b600060208201905081810360008301526143be81613eda565b9050919050565b600060208201905081810360008301526143de81613efd565b9050919050565b600060208201905081810360008301526143fe81613f20565b9050919050565b6000602082019050818103600083015261441e81613f43565b9050919050565b6000602082019050818103600083015261443e81613f66565b9050919050565b6000602082019050818103600083015261445e81613f89565b9050919050565b6000602082019050818103600083015261447e81613fac565b9050919050565b6000602082019050818103600083015261449e81613fcf565b9050919050565b600060208201905081810360008301526144be81613ff2565b9050919050565b600060208201905081810360008301526144de81614015565b9050919050565b600060208201905081810360008301526144fe81614038565b9050919050565b6000602082019050818103600083015261451e8161405b565b9050919050565b6000602082019050818103600083015261453e816140a1565b9050919050565b6000602082019050818103600083015261455e816140c4565b9050919050565b6000602082019050818103600083015261457e816140e7565b9050919050565b6000602082019050818103600083015261459e8161410a565b9050919050565b60006020820190506145ba600083018461413c565b92915050565b60006040820190506145d5600083018561413c565b6145e2602083018461413c565b9392505050565b60006145f3614604565b90506145ff8282614932565b919050565b6000604051905090565b600067ffffffffffffffff82111561462957614628614ac8565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561465557614654614ac8565b5b61465e82614b10565b9050602081019050919050565b600067ffffffffffffffff82111561468657614685614ac8565b5b61468f82614b10565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061472e826148b4565b9150614739836148b4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561476e5761476d6149dd565b5b828201905092915050565b6000614784826148b4565b915061478f836148b4565b92508261479f5761479e614a0c565b5b828204905092915050565b60006147b5826148b4565b91506147c0836148b4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147f9576147f86149dd565b5b828202905092915050565b600061480f826148b4565b915061481a836148b4565b92508282101561482d5761482c6149dd565b5b828203905092915050565b600061484382614894565b9050919050565b600061485582614894565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156148eb5780820151818401526020810190506148d0565b838111156148fa576000848401525b50505050565b6000600282049050600182168061491857607f821691505b6020821081141561492c5761492b614a3b565b5b50919050565b61493b82614b10565b810181811067ffffffffffffffff8211171561495a57614959614ac8565b5b80604052505050565b600061496e826148b4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149a1576149a06149dd565b5b600182019050919050565b60006149b7826148b4565b91506149c2836148b4565b9250826149d2576149d1614a0c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820696e76656e746f7279000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4261746368207075726368617365206c696d6974206578636565646564000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e76616c69642076616c75652073656e740000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f45786365656473207265736572766520737570706c7900000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f53616c6520686173206e6f742073746172746564000000000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b6151dd81614838565b81146151e857600080fd5b50565b6151f48161484a565b81146151ff57600080fd5b50565b61520b8161485c565b811461521657600080fd5b50565b61522281614868565b811461522d57600080fd5b50565b615239816148b4565b811461524457600080fd5b5056fea26469706673582212206068e76453099c9f39a7435ee24a1f279aecd9f8b0da3ad7b782223c8d9d06ec64736f6c63430008070033
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.