Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 25 from a total of 3,433 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 21198849 | 7 hrs ago | IN | 0 ETH | 0.00056688 | ||||
Set Approval For... | 21164982 | 5 days ago | IN | 0 ETH | 0.00100208 | ||||
Set Approval For... | 21164121 | 5 days ago | IN | 0 ETH | 0.00069951 | ||||
Set Approval For... | 21158057 | 5 days ago | IN | 0 ETH | 0.00162294 | ||||
Transfer From | 21158035 | 5 days ago | IN | 0 ETH | 0.00211044 | ||||
Set Approval For... | 21142279 | 8 days ago | IN | 0 ETH | 0.00049354 | ||||
Set Approval For... | 21135733 | 9 days ago | IN | 0 ETH | 0.00097663 | ||||
Set Approval For... | 21119473 | 11 days ago | IN | 0 ETH | 0.00015879 | ||||
Transfer From | 21074259 | 17 days ago | IN | 0 ETH | 0.00063383 | ||||
Transfer From | 21068737 | 18 days ago | IN | 0 ETH | 0.00071179 | ||||
Set Approval For... | 21067487 | 18 days ago | IN | 0 ETH | 0.0004153 | ||||
Set Approval For... | 21067334 | 18 days ago | IN | 0 ETH | 0.00047048 | ||||
Set Approval For... | 21065689 | 18 days ago | IN | 0 ETH | 0.00087768 | ||||
Set Approval For... | 21064484 | 19 days ago | IN | 0 ETH | 0.00032311 | ||||
Set Approval For... | 21058783 | 19 days ago | IN | 0 ETH | 0.00035779 | ||||
Set Approval For... | 21056879 | 20 days ago | IN | 0 ETH | 0.00024838 | ||||
Set Approval For... | 21056238 | 20 days ago | IN | 0 ETH | 0.00053353 | ||||
Set Approval For... | 21051417 | 20 days ago | IN | 0 ETH | 0.00027792 | ||||
Set Approval For... | 21050395 | 21 days ago | IN | 0 ETH | 0.00034839 | ||||
Set Approval For... | 21044627 | 21 days ago | IN | 0 ETH | 0.00045784 | ||||
Transfer From | 21044166 | 21 days ago | IN | 0 ETH | 0.00062418 | ||||
Set Approval For... | 21039408 | 22 days ago | IN | 0 ETH | 0.0002511 | ||||
Set Approval For... | 21039407 | 22 days ago | IN | 0 ETH | 0.0002453 | ||||
Set Approval For... | 21039405 | 22 days ago | IN | 0 ETH | 0.00025275 | ||||
Set Approval For... | 21039403 | 22 days ago | IN | 0 ETH | 0.00025612 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
GenesisNFT
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Royalty.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; /// @custom:security-contact [email protected] contract GenesisNFT is ERC721, ERC721Royalty, ERC721Burnable, Ownable { using Strings for uint256; string public baseURI; bytes32 public root; modifier onlyWinner(uint256 tokenId, bytes32[] calldata proof) { require( MerkleProof.verify(proof, root, keccak256(abi.encode(msg.sender, tokenId))), "Winner mismatch" ); _; } constructor(bytes32 root_, string memory baseURI_) ERC721("TGLP Genesis", "TGLP GEN") { root = root_; baseURI = baseURI_; } function setDefaultRoyalty(address receiver, uint96 feeNumerator) external onlyOwner { _setDefaultRoyalty(receiver, feeNumerator); } function deleteDefaultRoyalty() external onlyOwner { _deleteDefaultRoyalty(); } function setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) external onlyOwner { _setTokenRoyalty(tokenId, receiver, feeNumerator); } function resetTokenRoyalty(uint256 tokenId) external onlyOwner { _resetTokenRoyalty(tokenId); } function setRoot(bytes32 root_) external onlyOwner { root = root_; } function mint(uint256 tokenId, bytes32[] calldata proof) external onlyWinner(tokenId, proof) { _safeMint(msg.sender, tokenId); } function setURI(string calldata newBaseURI) external onlyOwner { baseURI = newBaseURI; } function tokenURI(uint256 tokenId) public view override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI_ = _baseURI(); return bytes(baseURI_).length > 0 ? string(abi.encodePacked(baseURI_, tokenId.toString(), ".json")) : ""; } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Royalty) returns (bool) { return super.supportsInterface(interfaceId); } function _burn(uint256 tokenId) internal override(ERC721, ERC721Royalty) { super._burn(tokenId); } function _baseURI() internal view override returns (string memory) { return baseURI; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol) 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 // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/ERC721Royalty.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "../../common/ERC2981.sol"; import "../../../utils/introspection/ERC165.sol"; /** * @dev Extension of ERC721 with the ERC2981 NFT Royalty Standard, a standardized way to retrieve royalty payment * information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC721Royalty is ERC2981, ERC721 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC2981) returns (bool) { return super.supportsInterface(interfaceId); } /** * @dev See {ERC721-_burn}. This override additionally clears the royalty information for the token. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); _resetTokenRoyalty(tokenId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; import "../../interfaces/IERC2981.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `tokenId` must be already minted. * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "evmVersion": "istanbul", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": false, "runs": 200 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"bytes32","name":"root_","type":"bytes32"},{"internalType":"string","name":"baseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"deleteDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"resetTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root_","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200467b3803806200467b833981810160405281019062000037919062000326565b6040518060400160405280600c81526020017f54474c502047656e6573697300000000000000000000000000000000000000008152506040518060400160405280600881526020017f54474c502047454e0000000000000000000000000000000000000000000000008152508160029080519060200190620000bb929190620001ed565b508060039080519060200190620000d4929190620001ed565b505050620000f7620000eb6200011f60201b60201c565b6200012760201b60201c565b81600a81905550806009908051906020019062000116929190620001ed565b50505062000514565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001fb906200041f565b90600052602060002090601f0160209004810192826200021f57600085556200026b565b82601f106200023a57805160ff19168380011785556200026b565b828001600101855582156200026b579182015b828111156200026a5782518255916020019190600101906200024d565b5b5090506200027a91906200027e565b5090565b5b80821115620002995760008160009055506001016200027f565b5090565b6000620002b4620002ae84620003a9565b62000380565b905082815260208101848484011115620002cd57600080fd5b620002da848285620003e9565b509392505050565b600081519050620002f381620004fa565b92915050565b600082601f8301126200030b57600080fd5b81516200031d8482602086016200029d565b91505092915050565b600080604083850312156200033a57600080fd5b60006200034a85828601620002e2565b925050602083015167ffffffffffffffff8111156200036857600080fd5b6200037685828601620002f9565b9150509250929050565b60006200038c6200039f565b90506200039a828262000455565b919050565b6000604051905090565b600067ffffffffffffffff821115620003c757620003c6620004ba565b5b620003d282620004e9565b9050602081019050919050565b6000819050919050565b60005b8381101562000409578082015181840152602081019050620003ec565b8381111562000419576000848401525b50505050565b600060028204905060018216806200043857607f821691505b602082108114156200044f576200044e6200048b565b5b50919050565b6200046082620004e9565b810181811067ffffffffffffffff82111715620004825762000481620004ba565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6200050581620003df565b81146200051157600080fd5b50565b61415780620005246000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063b88d4fde11610097578063dab5f34011610071578063dab5f3401461048f578063e985e9c5146104ab578063ebf0c717146104db578063f2fde38b146104f9576101a9565b8063b88d4fde14610427578063ba41b0c614610443578063c87b56dd1461045f576101a9565b80638da5cb5b116100d35780638da5cb5b146103c557806395d89b41146103e3578063a22cb46514610401578063aa1b103f1461041d576101a9565b806370a082311461036f578063715018a61461039f5780638a616bc0146103a9576101a9565b806323b872dd1161016657806342966c681161014057806342966c68146102e95780635944c753146103055780636352211e146103215780636c0360eb14610351576101a9565b806323b872dd146102805780632a55205a1461029c57806342842e0e146102cd576101a9565b806301ffc9a7146101ae57806302fe5305146101de57806304634d8d146101fa57806306fdde0314610216578063081812fc14610234578063095ea7b314610264575b600080fd5b6101c860048036038101906101c39190612d77565b610515565b6040516101d591906133ba565b60405180910390f35b6101f860048036038101906101f39190612dc9565b610527565b005b610214600480360381019061020f9190612d12565b6105b9565b005b61021e610643565b60405161022b91906133f0565b60405180910390f35b61024e60048036038101906102499190612e0e565b6106d5565b60405161025b919061332a565b60405180910390f35b61027e60048036038101906102799190612cd6565b61075a565b005b61029a60048036038101906102959190612bd0565b610872565b005b6102b660048036038101906102b19190612ede565b6108d2565b6040516102c4929190613391565b60405180910390f35b6102e760048036038101906102e29190612bd0565b610abd565b005b61030360048036038101906102fe9190612e0e565b610add565b005b61031f600480360381019061031a9190612e37565b610b39565b005b61033b60048036038101906103369190612e0e565b610bc5565b604051610348919061332a565b60405180910390f35b610359610c77565b60405161036691906133f0565b60405180910390f35b61038960048036038101906103849190612b6b565b610d05565b60405161039691906136b2565b60405180910390f35b6103a7610dbd565b005b6103c360048036038101906103be9190612e0e565b610e45565b005b6103cd610ecd565b6040516103da919061332a565b60405180910390f35b6103eb610ef7565b6040516103f891906133f0565b60405180910390f35b61041b60048036038101906104169190612c9a565b610f89565b005b610425610f9f565b005b610441600480360381019061043c9190612c1f565b611025565b005b61045d60048036038101906104589190612e86565b611087565b005b61047960048036038101906104749190612e0e565b611151565b60405161048691906133f0565b60405180910390f35b6104a960048036038101906104a49190612d4e565b6111f8565b005b6104c560048036038101906104c09190612b94565b61127e565b6040516104d291906133ba565b60405180910390f35b6104e3611312565b6040516104f091906133d5565b60405180910390f35b610513600480360381019061050e9190612b6b565b611318565b005b600061052082611410565b9050919050565b61052f611422565b73ffffffffffffffffffffffffffffffffffffffff1661054d610ecd565b73ffffffffffffffffffffffffffffffffffffffff16146105a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059a90613592565b60405180910390fd5b8181600991906105b4929190612939565b505050565b6105c1611422565b73ffffffffffffffffffffffffffffffffffffffff166105df610ecd565b73ffffffffffffffffffffffffffffffffffffffff1614610635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062c90613592565b60405180910390fd5b61063f828261142a565b5050565b60606002805461065290613953565b80601f016020809104026020016040519081016040528092919081815260200182805461067e90613953565b80156106cb5780601f106106a0576101008083540402835291602001916106cb565b820191906000526020600020905b8154815290600101906020018083116106ae57829003601f168201915b5050505050905090565b60006106e0826115bf565b61071f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071690613572565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061076582610bc5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cd906135d2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107f5611422565b73ffffffffffffffffffffffffffffffffffffffff16148061082457506108238161081e611422565b61127e565b5b610863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085a906134f2565b60405180910390fd5b61086d838361162b565b505050565b61088361087d611422565b826116e4565b6108c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b9906135f2565b60405180910390fd5b6108cd8383836117c2565b505050565b6000806000600160008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610a685760006040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610a72611a29565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610a9e91906137ed565b610aa891906137bc565b90508160000151819350935050509250929050565b610ad883838360405180602001604052806000815250611025565b505050565b610aee610ae8611422565b826116e4565b610b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2490613672565b60405180910390fd5b610b3681611a33565b50565b610b41611422565b73ffffffffffffffffffffffffffffffffffffffff16610b5f610ecd565b73ffffffffffffffffffffffffffffffffffffffff1614610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac90613592565b60405180910390fd5b610bc0838383611a3f565b505050565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590613532565b60405180910390fd5b80915050919050565b60098054610c8490613953565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb090613953565b8015610cfd5780601f10610cd257610100808354040283529160200191610cfd565b820191906000526020600020905b815481529060010190602001808311610ce057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90613512565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dc5611422565b73ffffffffffffffffffffffffffffffffffffffff16610de3610ecd565b73ffffffffffffffffffffffffffffffffffffffff1614610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3090613592565b60405180910390fd5b610e436000611be7565b565b610e4d611422565b73ffffffffffffffffffffffffffffffffffffffff16610e6b610ecd565b73ffffffffffffffffffffffffffffffffffffffff1614610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb890613592565b60405180910390fd5b610eca81611cad565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f0690613953565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3290613953565b8015610f7f5780601f10610f5457610100808354040283529160200191610f7f565b820191906000526020600020905b815481529060010190602001808311610f6257829003601f168201915b5050505050905090565b610f9b610f94611422565b8383611d0c565b5050565b610fa7611422565b73ffffffffffffffffffffffffffffffffffffffff16610fc5610ecd565b73ffffffffffffffffffffffffffffffffffffffff161461101b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101290613592565b60405180910390fd5b611023611e79565b565b611036611030611422565b836116e4565b611075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106c906135f2565b60405180910390fd5b61108184848484611ec6565b50505050565b828282611100828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5433866040516020016110e5929190613391565b60405160208183030381529060405280519060200120611f22565b61113f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113690613652565b60405180910390fd5b6111493387611f39565b505050505050565b606061115c826115bf565b61119b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611192906135b2565b60405180910390fd5b60006111a5611f57565b905060008151116111c557604051806020016040528060008152506111f0565b806111cf84611fe9565b6040516020016111e09291906132fb565b6040516020818303038152906040525b915050919050565b611200611422565b73ffffffffffffffffffffffffffffffffffffffff1661121e610ecd565b73ffffffffffffffffffffffffffffffffffffffff1614611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90613592565b60405180910390fd5b80600a8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a5481565b611320611422565b73ffffffffffffffffffffffffffffffffffffffff1661133e610ecd565b73ffffffffffffffffffffffffffffffffffffffff1614611394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138b90613592565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fb90613432565b60405180910390fd5b61140d81611be7565b50565b600061141b82612196565b9050919050565b600033905090565b611432611a29565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148790613632565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f790613692565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff168152506000808201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661169e83610bc5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006116ef826115bf565b61172e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611725906134d2565b60405180910390fd5b600061173983610bc5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061177b575061177a818561127e565b5b806117b957508373ffffffffffffffffffffffffffffffffffffffff166117a1846106d5565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166117e282610bc5565b73ffffffffffffffffffffffffffffffffffffffff1614611838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182f90613452565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189f90613492565b60405180910390fd5b6118b3838383612278565b6118be60008261162b565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461190e9190613847565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119659190613766565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a2483838361227d565b505050565b6000612710905090565b611a3c81612282565b50565b611a47611a29565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90613632565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0c90613612565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff168152506001600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60016000828152602001908152602001600020600080820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556000820160146101000a8154906bffffffffffffffffffffffff0219169055505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d72906134b2565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e6c91906133ba565b60405180910390a3505050565b6000806000820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556000820160146101000a8154906bffffffffffffffffffffffff02191690555050565b611ed18484846117c2565b611edd84848484612297565b611f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1390613412565b60405180910390fd5b50505050565b600082611f2f858461242e565b1490509392505050565b611f538282604051806020016040528060008152506124c9565b5050565b606060098054611f6690613953565b80601f0160208091040260200160405190810160405280929190818152602001828054611f9290613953565b8015611fdf5780601f10611fb457610100808354040283529160200191611fdf565b820191906000526020600020905b815481529060010190602001808311611fc257829003601f168201915b5050505050905090565b60606000821415612031576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612191565b600082905060005b6000821461206357808061204c906139b6565b915050600a8261205c91906137bc565b9150612039565b60008167ffffffffffffffff8111156120a5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120d75781602001600182028036833780820191505090505b5090505b6000851461218a576001826120f09190613847565b9150600a856120ff91906139ff565b603061210b9190613766565b60f81b818381518110612147577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561218391906137bc565b94506120db565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061226157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612271575061227082612524565b5b9050919050565b505050565b505050565b61228b8161259e565b61229481611cad565b50565b60006122b88473ffffffffffffffffffffffffffffffffffffffff166126bb565b15612421578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122e1611422565b8786866040518563ffffffff1660e01b81526004016123039493929190613345565b602060405180830381600087803b15801561231d57600080fd5b505af192505050801561234e57506040513d601f19601f8201168201806040525081019061234b9190612da0565b60015b6123d1573d806000811461237e576040519150601f19603f3d011682016040523d82523d6000602084013e612383565b606091505b506000815114156123c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c090613412565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612426565b600190505b949350505050565b60008082905060005b84518110156124be57600085828151811061247b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905080831161249d5761249683826126de565b92506124aa565b6124a781846126de565b92505b5080806124b6906139b6565b915050612437565b508091505092915050565b6124d383836126f5565b6124e06000848484612297565b61251f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251690613412565b60405180910390fd5b505050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806125975750612596826128cf565b5b9050919050565b60006125a982610bc5565b90506125b781600084612278565b6125c260008361162b565b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126129190613847565b925050819055506004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126b78160008461227d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275c90613552565b60405180910390fd5b61276e816115bf565b156127ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a590613472565b60405180910390fd5b6127ba60008383612278565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461280a9190613766565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128cb6000838361227d565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b82805461294590613953565b90600052602060002090601f01602090048101928261296757600085556129ae565b82601f1061298057803560ff19168380011785556129ae565b828001600101855582156129ae579182015b828111156129ad578235825591602001919060010190612992565b5b5090506129bb91906129bf565b5090565b5b808211156129d85760008160009055506001016129c0565b5090565b60006129ef6129ea846136f2565b6136cd565b905082815260208101848484011115612a0757600080fd5b612a12848285613911565b509392505050565b600081359050612a2981614097565b92915050565b60008083601f840112612a4157600080fd5b8235905067ffffffffffffffff811115612a5a57600080fd5b602083019150836020820283011115612a7257600080fd5b9250929050565b600081359050612a88816140ae565b92915050565b600081359050612a9d816140c5565b92915050565b600081359050612ab2816140dc565b92915050565b600081519050612ac7816140dc565b92915050565b600082601f830112612ade57600080fd5b8135612aee8482602086016129dc565b91505092915050565b60008083601f840112612b0957600080fd5b8235905067ffffffffffffffff811115612b2257600080fd5b602083019150836001820283011115612b3a57600080fd5b9250929050565b600081359050612b50816140f3565b92915050565b600081359050612b658161410a565b92915050565b600060208284031215612b7d57600080fd5b6000612b8b84828501612a1a565b91505092915050565b60008060408385031215612ba757600080fd5b6000612bb585828601612a1a565b9250506020612bc685828601612a1a565b9150509250929050565b600080600060608486031215612be557600080fd5b6000612bf386828701612a1a565b9350506020612c0486828701612a1a565b9250506040612c1586828701612b41565b9150509250925092565b60008060008060808587031215612c3557600080fd5b6000612c4387828801612a1a565b9450506020612c5487828801612a1a565b9350506040612c6587828801612b41565b925050606085013567ffffffffffffffff811115612c8257600080fd5b612c8e87828801612acd565b91505092959194509250565b60008060408385031215612cad57600080fd5b6000612cbb85828601612a1a565b9250506020612ccc85828601612a79565b9150509250929050565b60008060408385031215612ce957600080fd5b6000612cf785828601612a1a565b9250506020612d0885828601612b41565b9150509250929050565b60008060408385031215612d2557600080fd5b6000612d3385828601612a1a565b9250506020612d4485828601612b56565b9150509250929050565b600060208284031215612d6057600080fd5b6000612d6e84828501612a8e565b91505092915050565b600060208284031215612d8957600080fd5b6000612d9784828501612aa3565b91505092915050565b600060208284031215612db257600080fd5b6000612dc084828501612ab8565b91505092915050565b60008060208385031215612ddc57600080fd5b600083013567ffffffffffffffff811115612df657600080fd5b612e0285828601612af7565b92509250509250929050565b600060208284031215612e2057600080fd5b6000612e2e84828501612b41565b91505092915050565b600080600060608486031215612e4c57600080fd5b6000612e5a86828701612b41565b9350506020612e6b86828701612a1a565b9250506040612e7c86828701612b56565b9150509250925092565b600080600060408486031215612e9b57600080fd5b6000612ea986828701612b41565b935050602084013567ffffffffffffffff811115612ec657600080fd5b612ed286828701612a2f565b92509250509250925092565b60008060408385031215612ef157600080fd5b6000612eff85828601612b41565b9250506020612f1085828601612b41565b9150509250929050565b612f238161387b565b82525050565b612f328161388d565b82525050565b612f4181613899565b82525050565b6000612f5282613723565b612f5c8185613739565b9350612f6c818560208601613920565b612f7581613aec565b840191505092915050565b6000612f8b8261372e565b612f95818561374a565b9350612fa5818560208601613920565b612fae81613aec565b840191505092915050565b6000612fc48261372e565b612fce818561375b565b9350612fde818560208601613920565b80840191505092915050565b6000612ff760328361374a565b915061300282613afd565b604082019050919050565b600061301a60268361374a565b915061302582613b4c565b604082019050919050565b600061303d60258361374a565b915061304882613b9b565b604082019050919050565b6000613060601c8361374a565b915061306b82613bea565b602082019050919050565b600061308360248361374a565b915061308e82613c13565b604082019050919050565b60006130a660198361374a565b91506130b182613c62565b602082019050919050565b60006130c9602c8361374a565b91506130d482613c8b565b604082019050919050565b60006130ec60388361374a565b91506130f782613cda565b604082019050919050565b600061310f602a8361374a565b915061311a82613d29565b604082019050919050565b600061313260298361374a565b915061313d82613d78565b604082019050919050565b600061315560208361374a565b915061316082613dc7565b602082019050919050565b6000613178602c8361374a565b915061318382613df0565b604082019050919050565b600061319b60058361375b565b91506131a682613e3f565b600582019050919050565b60006131be60208361374a565b91506131c982613e68565b602082019050919050565b60006131e1602f8361374a565b91506131ec82613e91565b604082019050919050565b600061320460218361374a565b915061320f82613ee0565b604082019050919050565b600061322760318361374a565b915061323282613f2f565b604082019050919050565b600061324a601b8361374a565b915061325582613f7e565b602082019050919050565b600061326d602a8361374a565b915061327882613fa7565b604082019050919050565b6000613290600f8361374a565b915061329b82613ff6565b602082019050919050565b60006132b360308361374a565b91506132be8261401f565b604082019050919050565b60006132d660198361374a565b91506132e18261406e565b602082019050919050565b6132f5816138ef565b82525050565b60006133078285612fb9565b91506133138284612fb9565b915061331e8261318e565b91508190509392505050565b600060208201905061333f6000830184612f1a565b92915050565b600060808201905061335a6000830187612f1a565b6133676020830186612f1a565b61337460408301856132ec565b81810360608301526133868184612f47565b905095945050505050565b60006040820190506133a66000830185612f1a565b6133b360208301846132ec565b9392505050565b60006020820190506133cf6000830184612f29565b92915050565b60006020820190506133ea6000830184612f38565b92915050565b6000602082019050818103600083015261340a8184612f80565b905092915050565b6000602082019050818103600083015261342b81612fea565b9050919050565b6000602082019050818103600083015261344b8161300d565b9050919050565b6000602082019050818103600083015261346b81613030565b9050919050565b6000602082019050818103600083015261348b81613053565b9050919050565b600060208201905081810360008301526134ab81613076565b9050919050565b600060208201905081810360008301526134cb81613099565b9050919050565b600060208201905081810360008301526134eb816130bc565b9050919050565b6000602082019050818103600083015261350b816130df565b9050919050565b6000602082019050818103600083015261352b81613102565b9050919050565b6000602082019050818103600083015261354b81613125565b9050919050565b6000602082019050818103600083015261356b81613148565b9050919050565b6000602082019050818103600083015261358b8161316b565b9050919050565b600060208201905081810360008301526135ab816131b1565b9050919050565b600060208201905081810360008301526135cb816131d4565b9050919050565b600060208201905081810360008301526135eb816131f7565b9050919050565b6000602082019050818103600083015261360b8161321a565b9050919050565b6000602082019050818103600083015261362b8161323d565b9050919050565b6000602082019050818103600083015261364b81613260565b9050919050565b6000602082019050818103600083015261366b81613283565b9050919050565b6000602082019050818103600083015261368b816132a6565b9050919050565b600060208201905081810360008301526136ab816132c9565b9050919050565b60006020820190506136c760008301846132ec565b92915050565b60006136d76136e8565b90506136e38282613985565b919050565b6000604051905090565b600067ffffffffffffffff82111561370d5761370c613abd565b5b61371682613aec565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613771826138ef565b915061377c836138ef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137b1576137b0613a30565b5b828201905092915050565b60006137c7826138ef565b91506137d2836138ef565b9250826137e2576137e1613a5f565b5b828204905092915050565b60006137f8826138ef565b9150613803836138ef565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561383c5761383b613a30565b5b828202905092915050565b6000613852826138ef565b915061385d836138ef565b9250828210156138705761386f613a30565b5b828203905092915050565b6000613886826138cf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561393e578082015181840152602081019050613923565b8381111561394d576000848401525b50505050565b6000600282049050600182168061396b57607f821691505b6020821081141561397f5761397e613a8e565b5b50919050565b61398e82613aec565b810181811067ffffffffffffffff821117156139ad576139ac613abd565b5b80604052505050565b60006139c1826138ef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139f4576139f3613a30565b5b600182019050919050565b6000613a0a826138ef565b9150613a15836138ef565b925082613a2557613a24613a5f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243323938313a20496e76616c696420706172616d65746572730000000000600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f57696e6e6572206d69736d617463680000000000000000000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6140a08161387b565b81146140ab57600080fd5b50565b6140b78161388d565b81146140c257600080fd5b50565b6140ce81613899565b81146140d957600080fd5b50565b6140e5816138a3565b81146140f057600080fd5b50565b6140fc816138ef565b811461410757600080fd5b50565b614113816138f9565b811461411e57600080fd5b5056fea26469706673582212203f16f07c9d7e28e34f695a8a4045beb2b72d4b68193ca1c94b1f8a3e23d0c9cd64736f6c63430008040033df1e16a3f3003feff5baa56fd26d278afeee6019c2e38f6fd5233da090be82c000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000044697066733a2f2f62616679626569633675773472713770636768356f6f6a36666533326a6b62657833776f69703274337277666c726e7661356b716c7a6e6a6a6b692f0a00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063b88d4fde11610097578063dab5f34011610071578063dab5f3401461048f578063e985e9c5146104ab578063ebf0c717146104db578063f2fde38b146104f9576101a9565b8063b88d4fde14610427578063ba41b0c614610443578063c87b56dd1461045f576101a9565b80638da5cb5b116100d35780638da5cb5b146103c557806395d89b41146103e3578063a22cb46514610401578063aa1b103f1461041d576101a9565b806370a082311461036f578063715018a61461039f5780638a616bc0146103a9576101a9565b806323b872dd1161016657806342966c681161014057806342966c68146102e95780635944c753146103055780636352211e146103215780636c0360eb14610351576101a9565b806323b872dd146102805780632a55205a1461029c57806342842e0e146102cd576101a9565b806301ffc9a7146101ae57806302fe5305146101de57806304634d8d146101fa57806306fdde0314610216578063081812fc14610234578063095ea7b314610264575b600080fd5b6101c860048036038101906101c39190612d77565b610515565b6040516101d591906133ba565b60405180910390f35b6101f860048036038101906101f39190612dc9565b610527565b005b610214600480360381019061020f9190612d12565b6105b9565b005b61021e610643565b60405161022b91906133f0565b60405180910390f35b61024e60048036038101906102499190612e0e565b6106d5565b60405161025b919061332a565b60405180910390f35b61027e60048036038101906102799190612cd6565b61075a565b005b61029a60048036038101906102959190612bd0565b610872565b005b6102b660048036038101906102b19190612ede565b6108d2565b6040516102c4929190613391565b60405180910390f35b6102e760048036038101906102e29190612bd0565b610abd565b005b61030360048036038101906102fe9190612e0e565b610add565b005b61031f600480360381019061031a9190612e37565b610b39565b005b61033b60048036038101906103369190612e0e565b610bc5565b604051610348919061332a565b60405180910390f35b610359610c77565b60405161036691906133f0565b60405180910390f35b61038960048036038101906103849190612b6b565b610d05565b60405161039691906136b2565b60405180910390f35b6103a7610dbd565b005b6103c360048036038101906103be9190612e0e565b610e45565b005b6103cd610ecd565b6040516103da919061332a565b60405180910390f35b6103eb610ef7565b6040516103f891906133f0565b60405180910390f35b61041b60048036038101906104169190612c9a565b610f89565b005b610425610f9f565b005b610441600480360381019061043c9190612c1f565b611025565b005b61045d60048036038101906104589190612e86565b611087565b005b61047960048036038101906104749190612e0e565b611151565b60405161048691906133f0565b60405180910390f35b6104a960048036038101906104a49190612d4e565b6111f8565b005b6104c560048036038101906104c09190612b94565b61127e565b6040516104d291906133ba565b60405180910390f35b6104e3611312565b6040516104f091906133d5565b60405180910390f35b610513600480360381019061050e9190612b6b565b611318565b005b600061052082611410565b9050919050565b61052f611422565b73ffffffffffffffffffffffffffffffffffffffff1661054d610ecd565b73ffffffffffffffffffffffffffffffffffffffff16146105a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059a90613592565b60405180910390fd5b8181600991906105b4929190612939565b505050565b6105c1611422565b73ffffffffffffffffffffffffffffffffffffffff166105df610ecd565b73ffffffffffffffffffffffffffffffffffffffff1614610635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062c90613592565b60405180910390fd5b61063f828261142a565b5050565b60606002805461065290613953565b80601f016020809104026020016040519081016040528092919081815260200182805461067e90613953565b80156106cb5780601f106106a0576101008083540402835291602001916106cb565b820191906000526020600020905b8154815290600101906020018083116106ae57829003601f168201915b5050505050905090565b60006106e0826115bf565b61071f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071690613572565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061076582610bc5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cd906135d2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107f5611422565b73ffffffffffffffffffffffffffffffffffffffff16148061082457506108238161081e611422565b61127e565b5b610863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085a906134f2565b60405180910390fd5b61086d838361162b565b505050565b61088361087d611422565b826116e4565b6108c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b9906135f2565b60405180910390fd5b6108cd8383836117c2565b505050565b6000806000600160008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610a685760006040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610a72611a29565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610a9e91906137ed565b610aa891906137bc565b90508160000151819350935050509250929050565b610ad883838360405180602001604052806000815250611025565b505050565b610aee610ae8611422565b826116e4565b610b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2490613672565b60405180910390fd5b610b3681611a33565b50565b610b41611422565b73ffffffffffffffffffffffffffffffffffffffff16610b5f610ecd565b73ffffffffffffffffffffffffffffffffffffffff1614610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac90613592565b60405180910390fd5b610bc0838383611a3f565b505050565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590613532565b60405180910390fd5b80915050919050565b60098054610c8490613953565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb090613953565b8015610cfd5780601f10610cd257610100808354040283529160200191610cfd565b820191906000526020600020905b815481529060010190602001808311610ce057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90613512565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dc5611422565b73ffffffffffffffffffffffffffffffffffffffff16610de3610ecd565b73ffffffffffffffffffffffffffffffffffffffff1614610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3090613592565b60405180910390fd5b610e436000611be7565b565b610e4d611422565b73ffffffffffffffffffffffffffffffffffffffff16610e6b610ecd565b73ffffffffffffffffffffffffffffffffffffffff1614610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb890613592565b60405180910390fd5b610eca81611cad565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f0690613953565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3290613953565b8015610f7f5780601f10610f5457610100808354040283529160200191610f7f565b820191906000526020600020905b815481529060010190602001808311610f6257829003601f168201915b5050505050905090565b610f9b610f94611422565b8383611d0c565b5050565b610fa7611422565b73ffffffffffffffffffffffffffffffffffffffff16610fc5610ecd565b73ffffffffffffffffffffffffffffffffffffffff161461101b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101290613592565b60405180910390fd5b611023611e79565b565b611036611030611422565b836116e4565b611075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106c906135f2565b60405180910390fd5b61108184848484611ec6565b50505050565b828282611100828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5433866040516020016110e5929190613391565b60405160208183030381529060405280519060200120611f22565b61113f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113690613652565b60405180910390fd5b6111493387611f39565b505050505050565b606061115c826115bf565b61119b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611192906135b2565b60405180910390fd5b60006111a5611f57565b905060008151116111c557604051806020016040528060008152506111f0565b806111cf84611fe9565b6040516020016111e09291906132fb565b6040516020818303038152906040525b915050919050565b611200611422565b73ffffffffffffffffffffffffffffffffffffffff1661121e610ecd565b73ffffffffffffffffffffffffffffffffffffffff1614611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90613592565b60405180910390fd5b80600a8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a5481565b611320611422565b73ffffffffffffffffffffffffffffffffffffffff1661133e610ecd565b73ffffffffffffffffffffffffffffffffffffffff1614611394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138b90613592565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fb90613432565b60405180910390fd5b61140d81611be7565b50565b600061141b82612196565b9050919050565b600033905090565b611432611a29565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148790613632565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f790613692565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff168152506000808201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661169e83610bc5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006116ef826115bf565b61172e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611725906134d2565b60405180910390fd5b600061173983610bc5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061177b575061177a818561127e565b5b806117b957508373ffffffffffffffffffffffffffffffffffffffff166117a1846106d5565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166117e282610bc5565b73ffffffffffffffffffffffffffffffffffffffff1614611838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182f90613452565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189f90613492565b60405180910390fd5b6118b3838383612278565b6118be60008261162b565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461190e9190613847565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119659190613766565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a2483838361227d565b505050565b6000612710905090565b611a3c81612282565b50565b611a47611a29565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90613632565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0c90613612565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff168152506001600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60016000828152602001908152602001600020600080820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556000820160146101000a8154906bffffffffffffffffffffffff0219169055505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d72906134b2565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e6c91906133ba565b60405180910390a3505050565b6000806000820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556000820160146101000a8154906bffffffffffffffffffffffff02191690555050565b611ed18484846117c2565b611edd84848484612297565b611f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1390613412565b60405180910390fd5b50505050565b600082611f2f858461242e565b1490509392505050565b611f538282604051806020016040528060008152506124c9565b5050565b606060098054611f6690613953565b80601f0160208091040260200160405190810160405280929190818152602001828054611f9290613953565b8015611fdf5780601f10611fb457610100808354040283529160200191611fdf565b820191906000526020600020905b815481529060010190602001808311611fc257829003601f168201915b5050505050905090565b60606000821415612031576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612191565b600082905060005b6000821461206357808061204c906139b6565b915050600a8261205c91906137bc565b9150612039565b60008167ffffffffffffffff8111156120a5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120d75781602001600182028036833780820191505090505b5090505b6000851461218a576001826120f09190613847565b9150600a856120ff91906139ff565b603061210b9190613766565b60f81b818381518110612147577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561218391906137bc565b94506120db565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061226157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612271575061227082612524565b5b9050919050565b505050565b505050565b61228b8161259e565b61229481611cad565b50565b60006122b88473ffffffffffffffffffffffffffffffffffffffff166126bb565b15612421578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122e1611422565b8786866040518563ffffffff1660e01b81526004016123039493929190613345565b602060405180830381600087803b15801561231d57600080fd5b505af192505050801561234e57506040513d601f19601f8201168201806040525081019061234b9190612da0565b60015b6123d1573d806000811461237e576040519150601f19603f3d011682016040523d82523d6000602084013e612383565b606091505b506000815114156123c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c090613412565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612426565b600190505b949350505050565b60008082905060005b84518110156124be57600085828151811061247b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905080831161249d5761249683826126de565b92506124aa565b6124a781846126de565b92505b5080806124b6906139b6565b915050612437565b508091505092915050565b6124d383836126f5565b6124e06000848484612297565b61251f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251690613412565b60405180910390fd5b505050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806125975750612596826128cf565b5b9050919050565b60006125a982610bc5565b90506125b781600084612278565b6125c260008361162b565b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126129190613847565b925050819055506004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126b78160008461227d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275c90613552565b60405180910390fd5b61276e816115bf565b156127ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a590613472565b60405180910390fd5b6127ba60008383612278565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461280a9190613766565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128cb6000838361227d565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b82805461294590613953565b90600052602060002090601f01602090048101928261296757600085556129ae565b82601f1061298057803560ff19168380011785556129ae565b828001600101855582156129ae579182015b828111156129ad578235825591602001919060010190612992565b5b5090506129bb91906129bf565b5090565b5b808211156129d85760008160009055506001016129c0565b5090565b60006129ef6129ea846136f2565b6136cd565b905082815260208101848484011115612a0757600080fd5b612a12848285613911565b509392505050565b600081359050612a2981614097565b92915050565b60008083601f840112612a4157600080fd5b8235905067ffffffffffffffff811115612a5a57600080fd5b602083019150836020820283011115612a7257600080fd5b9250929050565b600081359050612a88816140ae565b92915050565b600081359050612a9d816140c5565b92915050565b600081359050612ab2816140dc565b92915050565b600081519050612ac7816140dc565b92915050565b600082601f830112612ade57600080fd5b8135612aee8482602086016129dc565b91505092915050565b60008083601f840112612b0957600080fd5b8235905067ffffffffffffffff811115612b2257600080fd5b602083019150836001820283011115612b3a57600080fd5b9250929050565b600081359050612b50816140f3565b92915050565b600081359050612b658161410a565b92915050565b600060208284031215612b7d57600080fd5b6000612b8b84828501612a1a565b91505092915050565b60008060408385031215612ba757600080fd5b6000612bb585828601612a1a565b9250506020612bc685828601612a1a565b9150509250929050565b600080600060608486031215612be557600080fd5b6000612bf386828701612a1a565b9350506020612c0486828701612a1a565b9250506040612c1586828701612b41565b9150509250925092565b60008060008060808587031215612c3557600080fd5b6000612c4387828801612a1a565b9450506020612c5487828801612a1a565b9350506040612c6587828801612b41565b925050606085013567ffffffffffffffff811115612c8257600080fd5b612c8e87828801612acd565b91505092959194509250565b60008060408385031215612cad57600080fd5b6000612cbb85828601612a1a565b9250506020612ccc85828601612a79565b9150509250929050565b60008060408385031215612ce957600080fd5b6000612cf785828601612a1a565b9250506020612d0885828601612b41565b9150509250929050565b60008060408385031215612d2557600080fd5b6000612d3385828601612a1a565b9250506020612d4485828601612b56565b9150509250929050565b600060208284031215612d6057600080fd5b6000612d6e84828501612a8e565b91505092915050565b600060208284031215612d8957600080fd5b6000612d9784828501612aa3565b91505092915050565b600060208284031215612db257600080fd5b6000612dc084828501612ab8565b91505092915050565b60008060208385031215612ddc57600080fd5b600083013567ffffffffffffffff811115612df657600080fd5b612e0285828601612af7565b92509250509250929050565b600060208284031215612e2057600080fd5b6000612e2e84828501612b41565b91505092915050565b600080600060608486031215612e4c57600080fd5b6000612e5a86828701612b41565b9350506020612e6b86828701612a1a565b9250506040612e7c86828701612b56565b9150509250925092565b600080600060408486031215612e9b57600080fd5b6000612ea986828701612b41565b935050602084013567ffffffffffffffff811115612ec657600080fd5b612ed286828701612a2f565b92509250509250925092565b60008060408385031215612ef157600080fd5b6000612eff85828601612b41565b9250506020612f1085828601612b41565b9150509250929050565b612f238161387b565b82525050565b612f328161388d565b82525050565b612f4181613899565b82525050565b6000612f5282613723565b612f5c8185613739565b9350612f6c818560208601613920565b612f7581613aec565b840191505092915050565b6000612f8b8261372e565b612f95818561374a565b9350612fa5818560208601613920565b612fae81613aec565b840191505092915050565b6000612fc48261372e565b612fce818561375b565b9350612fde818560208601613920565b80840191505092915050565b6000612ff760328361374a565b915061300282613afd565b604082019050919050565b600061301a60268361374a565b915061302582613b4c565b604082019050919050565b600061303d60258361374a565b915061304882613b9b565b604082019050919050565b6000613060601c8361374a565b915061306b82613bea565b602082019050919050565b600061308360248361374a565b915061308e82613c13565b604082019050919050565b60006130a660198361374a565b91506130b182613c62565b602082019050919050565b60006130c9602c8361374a565b91506130d482613c8b565b604082019050919050565b60006130ec60388361374a565b91506130f782613cda565b604082019050919050565b600061310f602a8361374a565b915061311a82613d29565b604082019050919050565b600061313260298361374a565b915061313d82613d78565b604082019050919050565b600061315560208361374a565b915061316082613dc7565b602082019050919050565b6000613178602c8361374a565b915061318382613df0565b604082019050919050565b600061319b60058361375b565b91506131a682613e3f565b600582019050919050565b60006131be60208361374a565b91506131c982613e68565b602082019050919050565b60006131e1602f8361374a565b91506131ec82613e91565b604082019050919050565b600061320460218361374a565b915061320f82613ee0565b604082019050919050565b600061322760318361374a565b915061323282613f2f565b604082019050919050565b600061324a601b8361374a565b915061325582613f7e565b602082019050919050565b600061326d602a8361374a565b915061327882613fa7565b604082019050919050565b6000613290600f8361374a565b915061329b82613ff6565b602082019050919050565b60006132b360308361374a565b91506132be8261401f565b604082019050919050565b60006132d660198361374a565b91506132e18261406e565b602082019050919050565b6132f5816138ef565b82525050565b60006133078285612fb9565b91506133138284612fb9565b915061331e8261318e565b91508190509392505050565b600060208201905061333f6000830184612f1a565b92915050565b600060808201905061335a6000830187612f1a565b6133676020830186612f1a565b61337460408301856132ec565b81810360608301526133868184612f47565b905095945050505050565b60006040820190506133a66000830185612f1a565b6133b360208301846132ec565b9392505050565b60006020820190506133cf6000830184612f29565b92915050565b60006020820190506133ea6000830184612f38565b92915050565b6000602082019050818103600083015261340a8184612f80565b905092915050565b6000602082019050818103600083015261342b81612fea565b9050919050565b6000602082019050818103600083015261344b8161300d565b9050919050565b6000602082019050818103600083015261346b81613030565b9050919050565b6000602082019050818103600083015261348b81613053565b9050919050565b600060208201905081810360008301526134ab81613076565b9050919050565b600060208201905081810360008301526134cb81613099565b9050919050565b600060208201905081810360008301526134eb816130bc565b9050919050565b6000602082019050818103600083015261350b816130df565b9050919050565b6000602082019050818103600083015261352b81613102565b9050919050565b6000602082019050818103600083015261354b81613125565b9050919050565b6000602082019050818103600083015261356b81613148565b9050919050565b6000602082019050818103600083015261358b8161316b565b9050919050565b600060208201905081810360008301526135ab816131b1565b9050919050565b600060208201905081810360008301526135cb816131d4565b9050919050565b600060208201905081810360008301526135eb816131f7565b9050919050565b6000602082019050818103600083015261360b8161321a565b9050919050565b6000602082019050818103600083015261362b8161323d565b9050919050565b6000602082019050818103600083015261364b81613260565b9050919050565b6000602082019050818103600083015261366b81613283565b9050919050565b6000602082019050818103600083015261368b816132a6565b9050919050565b600060208201905081810360008301526136ab816132c9565b9050919050565b60006020820190506136c760008301846132ec565b92915050565b60006136d76136e8565b90506136e38282613985565b919050565b6000604051905090565b600067ffffffffffffffff82111561370d5761370c613abd565b5b61371682613aec565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613771826138ef565b915061377c836138ef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137b1576137b0613a30565b5b828201905092915050565b60006137c7826138ef565b91506137d2836138ef565b9250826137e2576137e1613a5f565b5b828204905092915050565b60006137f8826138ef565b9150613803836138ef565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561383c5761383b613a30565b5b828202905092915050565b6000613852826138ef565b915061385d836138ef565b9250828210156138705761386f613a30565b5b828203905092915050565b6000613886826138cf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561393e578082015181840152602081019050613923565b8381111561394d576000848401525b50505050565b6000600282049050600182168061396b57607f821691505b6020821081141561397f5761397e613a8e565b5b50919050565b61398e82613aec565b810181811067ffffffffffffffff821117156139ad576139ac613abd565b5b80604052505050565b60006139c1826138ef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139f4576139f3613a30565b5b600182019050919050565b6000613a0a826138ef565b9150613a15836138ef565b925082613a2557613a24613a5f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243323938313a20496e76616c696420706172616d65746572730000000000600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f57696e6e6572206d69736d617463680000000000000000000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6140a08161387b565b81146140ab57600080fd5b50565b6140b78161388d565b81146140c257600080fd5b50565b6140ce81613899565b81146140d957600080fd5b50565b6140e5816138a3565b81146140f057600080fd5b50565b6140fc816138ef565b811461410757600080fd5b50565b614113816138f9565b811461411e57600080fd5b5056fea26469706673582212203f16f07c9d7e28e34f695a8a4045beb2b72d4b68193ca1c94b1f8a3e23d0c9cd64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
df1e16a3f3003feff5baa56fd26d278afeee6019c2e38f6fd5233da090be82c000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000044697066733a2f2f62616679626569633675773472713770636768356f6f6a36666533326a6b62657833776f69703274337277666c726e7661356b716c7a6e6a6a6b692f0a00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : root_ (bytes32): 0xdf1e16a3f3003feff5baa56fd26d278afeee6019c2e38f6fd5233da090be82c0
Arg [1] : baseURI_ (string): ipfs://bafybeic6uw4rq7pcgh5ooj6fe32jkbex3woip2t3rwflrnva5kqlznjjki/
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : df1e16a3f3003feff5baa56fd26d278afeee6019c2e38f6fd5233da090be82c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [3] : 697066733a2f2f62616679626569633675773472713770636768356f6f6a3666
Arg [4] : 6533326a6b62657833776f69703274337277666c726e7661356b716c7a6e6a6a
Arg [5] : 6b692f0a00000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
OVERVIEW
A deflationary token with a smart staking system that bridges cryptocurrencies with the stock market. Tenset adds a 2% fee to every transfer. Half of the fee is burned creating a deflationary effect and another half is automatically distributed to all token holders.Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.