Source Code
Overview
ETH Balance
0.1322 ETH
Token Holdings
More Info
ContractCreator
TokenTracker
Multi Chain
Multichain Addresses
7 addresses found via
Latest 25 from a total of 128 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
Value | ||||
---|---|---|---|---|---|---|---|---|---|
Mint | 9657103 | 20 days 1 hr ago | IN | 0.001 ETH | 0.00026269 | ||||
Mint | 9612052 | 27 days 22 hrs ago | IN | 0.001 ETH | 0.00026269 | ||||
Mint | 9601889 | 29 days 16 hrs ago | IN | 0.001 ETH | 0.00023704 | ||||
Mint | 9600800 | 29 days 21 hrs ago | IN | 0.0042 ETH | 0.00026269 | ||||
Mint | 9590477 | 31 days 16 hrs ago | IN | 0.001 ETH | 0.00026269 | ||||
Mint | 9468768 | 53 days 10 hrs ago | IN | 0.001 ETH | 0.00026269 | ||||
Mint | 9397922 | 66 days 3 hrs ago | IN | 0.001 ETH | 0.0002627 | ||||
Mint | 9126564 | 114 days 19 hrs ago | IN | 0.001 ETH | 0.00023713 | ||||
Mint | 9042788 | 129 days 46 mins ago | IN | 0.001 ETH | 0.0088914 | ||||
Mint | 8930101 | 148 days 14 hrs ago | IN | 0.001 ETH | 0.01139474 | ||||
Mint | 8881134 | 157 days 6 hrs ago | IN | 0.001 ETH | 0.00026269 | ||||
Set Approval For... | 8860726 | 160 days 21 hrs ago | IN | 0 ETH | 0.000395 | ||||
Set Approval For... | 8850141 | 162 days 20 hrs ago | IN | 0 ETH | 0.00260505 | ||||
Mint | 8849768 | 162 days 22 hrs ago | IN | 0.001 ETH | 0.02527459 | ||||
Mint | 8849608 | 162 days 23 hrs ago | IN | 0.001 ETH | 0.03405457 | ||||
Mint | 8823307 | 167 days 19 hrs ago | IN | 0.001 ETH | 0.01742133 | ||||
Mint | 8812585 | 169 days 17 hrs ago | IN | 0.001 ETH | 0.06168439 | ||||
Mint | 8812527 | 169 days 17 hrs ago | IN | 0.001 ETH | 0.07301893 | ||||
Mint | 8797033 | 172 days 11 hrs ago | IN | 0.001 ETH | 0.00479622 | ||||
Mint | 8797022 | 172 days 11 hrs ago | IN | 0.001 ETH | 0.00484282 | ||||
Mint | 8797015 | 172 days 11 hrs ago | IN | 0.001 ETH | 0.00428005 | ||||
Mint | 8797008 | 172 days 11 hrs ago | IN | 0.001 ETH | 0.00455055 | ||||
Mint | 8796989 | 172 days 11 hrs ago | IN | 0.001 ETH | 0.00462316 | ||||
Mint | 8796958 | 172 days 12 hrs ago | IN | 0.001 ETH | 0.00403179 | ||||
Mint | 8796941 | 172 days 12 hrs ago | IN | 0.001 ETH | 0.00451879 |
Loading...
Loading
Contract Name:
SimpleNFT
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// contracts/GameItem.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract SimpleNFT is ERC721URIStorage, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenIds; string public commonTokenURI; uint256 public mintCost; constructor(string memory _tokenURI, uint256 _mintCost) ERC721("SimpleNFT", "NFT") { commonTokenURI = _tokenURI; mintCost = _mintCost; } function mint(address _to) public payable returns (uint256) { require(msg.value >= mintCost, "Min cost 0.001ETH"); uint256 newTokenId = _tokenIds.current(); _mint(_to, newTokenId); _setTokenURI(newTokenId, commonTokenURI); _tokenIds.increment(); return newTokenId; } function changeTokenURI(string calldata _newURI) public onlyOwner { commonTokenURI = _newURI; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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) (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/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
[{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"},{"internalType":"uint256","name":"_mintCost","type":"uint256"}],"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":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"changeTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"commonTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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
60806040523480156200001157600080fd5b506040516200387c3803806200387c833981810160405281019062000037919062000326565b6040518060400160405280600981526020017f53696d706c654e465400000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4e465400000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000bb929190620001ed565b508060019080519060200190620000d4929190620001ed565b505050620000f7620000eb6200011f60201b60201c565b6200012760201b60201c565b81600990805190602001906200010f929190620001ed565b5080600a81905550505062000514565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001fb906200041f565b90600052602060002090601f0160209004810192826200021f57600085556200026b565b82601f106200023a57805160ff19168380011785556200026b565b828001600101855582156200026b579182015b828111156200026a5782518255916020019190600101906200024d565b5b5090506200027a91906200027e565b5090565b5b80821115620002995760008160009055506001016200027f565b5090565b6000620002b4620002ae84620003a9565b62000380565b905082815260208101848484011115620002cd57600080fd5b620002da848285620003e9565b509392505050565b600082601f830112620002f457600080fd5b8151620003068482602086016200029d565b91505092915050565b6000815190506200032081620004fa565b92915050565b600080604083850312156200033a57600080fd5b600083015167ffffffffffffffff8111156200035557600080fd5b6200036385828601620002e2565b925050602062000376858286016200030f565b9150509250929050565b60006200038c6200039f565b90506200039a828262000455565b919050565b6000604051905090565b600067ffffffffffffffff821115620003c757620003c6620004ba565b5b620003d282620004e9565b9050602081019050919050565b6000819050919050565b60005b8381101562000409578082015181840152602081019050620003ec565b8381111562000419576000848401525b50505050565b600060028204905060018216806200043857607f821691505b602082108114156200044f576200044e6200048b565b5b50919050565b6200046082620004e9565b810181811067ffffffffffffffff82111715620004825762000481620004ba565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6200050581620003df565b81146200051157600080fd5b50565b61335880620005246000396000f3fe60806040526004361061011f5760003560e01c8063715018a6116100a0578063b88d4fde11610064578063b88d4fde146103d8578063bdb4b84814610401578063c87b56dd1461042c578063e985e9c514610469578063f2fde38b146104a65761011f565b8063715018a6146103195780637d7b17a1146103305780638da5cb5b1461035957806395d89b4114610384578063a22cb465146103af5761011f565b80633b7b3c9f116100e75780633b7b3c9f1461021b57806342842e0e146102465780636352211e1461026f5780636a627842146102ac57806370a08231146102dc5761011f565b806301ffc9a71461012457806306fdde0314610161578063081812fc1461018c578063095ea7b3146101c957806323b872dd146101f2575b600080fd5b34801561013057600080fd5b5061014b60048036038101906101469190612287565b6104cf565b604051610158919061273b565b60405180910390f35b34801561016d57600080fd5b506101766105b1565b6040516101839190612756565b60405180910390f35b34801561019857600080fd5b506101b360048036038101906101ae919061231e565b610643565b6040516101c091906126d4565b60405180910390f35b3480156101d557600080fd5b506101f060048036038101906101eb919061224b565b6106c8565b005b3480156101fe57600080fd5b5061021960048036038101906102149190612145565b6107e0565b005b34801561022757600080fd5b50610230610840565b60405161023d9190612756565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612145565b6108ce565b005b34801561027b57600080fd5b506102966004803603810190610291919061231e565b6108ee565b6040516102a391906126d4565b60405180910390f35b6102c660048036038101906102c191906120e0565b6109a0565b6040516102d391906129d8565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe91906120e0565b610aa6565b60405161031091906129d8565b60405180910390f35b34801561032557600080fd5b5061032e610b5e565b005b34801561033c57600080fd5b50610357600480360381019061035291906122d9565b610be6565b005b34801561036557600080fd5b5061036e610c78565b60405161037b91906126d4565b60405180910390f35b34801561039057600080fd5b50610399610ca2565b6040516103a69190612756565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d1919061220f565b610d34565b005b3480156103e457600080fd5b506103ff60048036038101906103fa9190612194565b610d4a565b005b34801561040d57600080fd5b50610416610dac565b60405161042391906129d8565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e919061231e565b610db2565b6040516104609190612756565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b9190612109565b610f04565b60405161049d919061273b565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c891906120e0565b610f98565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061059a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105aa57506105a982611090565b5b9050919050565b6060600080546105c090612bfd565b80601f01602080910402602001604051908101604052809291908181526020018280546105ec90612bfd565b80156106395780601f1061060e57610100808354040283529160200191610639565b820191906000526020600020905b81548152906001019060200180831161061c57829003601f168201915b5050505050905090565b600061064e826110fa565b61068d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068490612918565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106d3826108ee565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073b90612978565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610763611166565b73ffffffffffffffffffffffffffffffffffffffff16148061079257506107918161078c611166565b610f04565b5b6107d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c890612858565b60405180910390fd5b6107db838361116e565b505050565b6107f16107eb611166565b82611227565b610830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082790612998565b60405180910390fd5b61083b838383611305565b505050565b6009805461084d90612bfd565b80601f016020809104026020016040519081016040528092919081815260200182805461087990612bfd565b80156108c65780601f1061089b576101008083540402835291602001916108c6565b820191906000526020600020905b8154815290600101906020018083116108a957829003601f168201915b505050505081565b6108e983838360405180602001604052806000815250610d4a565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e90612898565b60405180910390fd5b80915050919050565b6000600a543410156109e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109de906129b8565b60405180910390fd5b60006109f3600861156c565b90506109ff838261157a565b610a938160098054610a1090612bfd565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3c90612bfd565b8015610a895780601f10610a5e57610100808354040283529160200191610a89565b820191906000526020600020905b815481529060010190602001808311610a6c57829003601f168201915b5050505050611754565b610a9d60086117c8565b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e90612878565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b66611166565b73ffffffffffffffffffffffffffffffffffffffff16610b84610c78565b73ffffffffffffffffffffffffffffffffffffffff1614610bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd190612938565b60405180910390fd5b610be460006117de565b565b610bee611166565b73ffffffffffffffffffffffffffffffffffffffff16610c0c610c78565b73ffffffffffffffffffffffffffffffffffffffff1614610c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5990612938565b60405180910390fd5b818160099190610c73929190611e9c565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610cb190612bfd565b80601f0160208091040260200160405190810160405280929190818152602001828054610cdd90612bfd565b8015610d2a5780601f10610cff57610100808354040283529160200191610d2a565b820191906000526020600020905b815481529060010190602001808311610d0d57829003601f168201915b5050505050905090565b610d46610d3f611166565b83836118a4565b5050565b610d5b610d55611166565b83611227565b610d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9190612998565b60405180910390fd5b610da684848484611a11565b50505050565b600a5481565b6060610dbd826110fa565b610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df3906128f8565b60405180910390fd5b6000600660008481526020019081526020016000208054610e1c90612bfd565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4890612bfd565b8015610e955780601f10610e6a57610100808354040283529160200191610e95565b820191906000526020600020905b815481529060010190602001808311610e7857829003601f168201915b505050505090506000610ea6611a6d565b9050600081511415610ebc578192505050610eff565b600082511115610ef1578082604051602001610ed99291906126b0565b60405160208183030381529060405292505050610eff565b610efa84611a84565b925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610fa0611166565b73ffffffffffffffffffffffffffffffffffffffff16610fbe610c78565b73ffffffffffffffffffffffffffffffffffffffff1614611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b90612938565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107b90612798565b60405180910390fd5b61108d816117de565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166111e1836108ee565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611232826110fa565b611271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126890612838565b60405180910390fd5b600061127c836108ee565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806112be57506112bd8185610f04565b5b806112fc57508373ffffffffffffffffffffffffffffffffffffffff166112e484610643565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611325826108ee565b73ffffffffffffffffffffffffffffffffffffffff161461137b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611372906127b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e2906127f8565b60405180910390fd5b6113f6838383611b2b565b61140160008261116e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114519190612b13565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114a89190612a8c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611567838383611b30565b505050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e1906128d8565b60405180910390fd5b6115f3816110fa565b15611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a906127d8565b60405180910390fd5b61163f60008383611b2b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461168f9190612a8c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461175060008383611b30565b5050565b61175d826110fa565b61179c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611793906128b8565b60405180910390fd5b806006600084815260200190815260200160002090805190602001906117c3929190611f22565b505050565b6001816000016000828254019250508190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190a90612818565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a04919061273b565b60405180910390a3505050565b611a1c848484611305565b611a2884848484611b35565b611a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5e90612778565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b6060611a8f826110fa565b611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac590612958565b60405180910390fd5b6000611ad8611a6d565b90506000815111611af85760405180602001604052806000815250611b23565b80611b0284611ccc565b604051602001611b139291906126b0565b6040516020818303038152906040525b915050919050565b505050565b505050565b6000611b568473ffffffffffffffffffffffffffffffffffffffff16611e79565b15611cbf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b7f611166565b8786866040518563ffffffff1660e01b8152600401611ba194939291906126ef565b602060405180830381600087803b158015611bbb57600080fd5b505af1925050508015611bec57506040513d601f19601f82011682018060405250810190611be991906122b0565b60015b611c6f573d8060008114611c1c576040519150601f19603f3d011682016040523d82523d6000602084013e611c21565b606091505b50600081511415611c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5e90612778565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611cc4565b600190505b949350505050565b60606000821415611d14576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e74565b600082905060005b60008214611d46578080611d2f90612c60565b915050600a82611d3f9190612ae2565b9150611d1c565b60008167ffffffffffffffff811115611d88577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611dba5781602001600182028036833780820191505090505b5090505b60008514611e6d57600182611dd39190612b13565b9150600a85611de29190612ca9565b6030611dee9190612a8c565b60f81b818381518110611e2a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e669190612ae2565b9450611dbe565b8093505050505b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611ea890612bfd565b90600052602060002090601f016020900481019282611eca5760008555611f11565b82601f10611ee357803560ff1916838001178555611f11565b82800160010185558215611f11579182015b82811115611f10578235825591602001919060010190611ef5565b5b509050611f1e9190611fa8565b5090565b828054611f2e90612bfd565b90600052602060002090601f016020900481019282611f505760008555611f97565b82601f10611f6957805160ff1916838001178555611f97565b82800160010185558215611f97579182015b82811115611f96578251825591602001919060010190611f7b565b5b509050611fa49190611fa8565b5090565b5b80821115611fc1576000816000905550600101611fa9565b5090565b6000611fd8611fd384612a18565b6129f3565b905082815260208101848484011115611ff057600080fd5b611ffb848285612bbb565b509392505050565b600081359050612012816132c6565b92915050565b600081359050612027816132dd565b92915050565b60008135905061203c816132f4565b92915050565b600081519050612051816132f4565b92915050565b600082601f83011261206857600080fd5b8135612078848260208601611fc5565b91505092915050565b60008083601f84011261209357600080fd5b8235905067ffffffffffffffff8111156120ac57600080fd5b6020830191508360018202830111156120c457600080fd5b9250929050565b6000813590506120da8161330b565b92915050565b6000602082840312156120f257600080fd5b600061210084828501612003565b91505092915050565b6000806040838503121561211c57600080fd5b600061212a85828601612003565b925050602061213b85828601612003565b9150509250929050565b60008060006060848603121561215a57600080fd5b600061216886828701612003565b935050602061217986828701612003565b925050604061218a868287016120cb565b9150509250925092565b600080600080608085870312156121aa57600080fd5b60006121b887828801612003565b94505060206121c987828801612003565b93505060406121da878288016120cb565b925050606085013567ffffffffffffffff8111156121f757600080fd5b61220387828801612057565b91505092959194509250565b6000806040838503121561222257600080fd5b600061223085828601612003565b925050602061224185828601612018565b9150509250929050565b6000806040838503121561225e57600080fd5b600061226c85828601612003565b925050602061227d858286016120cb565b9150509250929050565b60006020828403121561229957600080fd5b60006122a78482850161202d565b91505092915050565b6000602082840312156122c257600080fd5b60006122d084828501612042565b91505092915050565b600080602083850312156122ec57600080fd5b600083013567ffffffffffffffff81111561230657600080fd5b61231285828601612081565b92509250509250929050565b60006020828403121561233057600080fd5b600061233e848285016120cb565b91505092915050565b61235081612b47565b82525050565b61235f81612b59565b82525050565b600061237082612a49565b61237a8185612a5f565b935061238a818560208601612bca565b61239381612d96565b840191505092915050565b60006123a982612a54565b6123b38185612a70565b93506123c3818560208601612bca565b6123cc81612d96565b840191505092915050565b60006123e282612a54565b6123ec8185612a81565b93506123fc818560208601612bca565b80840191505092915050565b6000612415603283612a70565b915061242082612da7565b604082019050919050565b6000612438602683612a70565b915061244382612df6565b604082019050919050565b600061245b602583612a70565b915061246682612e45565b604082019050919050565b600061247e601c83612a70565b915061248982612e94565b602082019050919050565b60006124a1602483612a70565b91506124ac82612ebd565b604082019050919050565b60006124c4601983612a70565b91506124cf82612f0c565b602082019050919050565b60006124e7602c83612a70565b91506124f282612f35565b604082019050919050565b600061250a603883612a70565b915061251582612f84565b604082019050919050565b600061252d602a83612a70565b915061253882612fd3565b604082019050919050565b6000612550602983612a70565b915061255b82613022565b604082019050919050565b6000612573602e83612a70565b915061257e82613071565b604082019050919050565b6000612596602083612a70565b91506125a1826130c0565b602082019050919050565b60006125b9603183612a70565b91506125c4826130e9565b604082019050919050565b60006125dc602c83612a70565b91506125e782613138565b604082019050919050565b60006125ff602083612a70565b915061260a82613187565b602082019050919050565b6000612622602f83612a70565b915061262d826131b0565b604082019050919050565b6000612645602183612a70565b9150612650826131ff565b604082019050919050565b6000612668603183612a70565b91506126738261324e565b604082019050919050565b600061268b601183612a70565b91506126968261329d565b602082019050919050565b6126aa81612bb1565b82525050565b60006126bc82856123d7565b91506126c882846123d7565b91508190509392505050565b60006020820190506126e96000830184612347565b92915050565b60006080820190506127046000830187612347565b6127116020830186612347565b61271e60408301856126a1565b81810360608301526127308184612365565b905095945050505050565b60006020820190506127506000830184612356565b92915050565b60006020820190508181036000830152612770818461239e565b905092915050565b6000602082019050818103600083015261279181612408565b9050919050565b600060208201905081810360008301526127b18161242b565b9050919050565b600060208201905081810360008301526127d18161244e565b9050919050565b600060208201905081810360008301526127f181612471565b9050919050565b6000602082019050818103600083015261281181612494565b9050919050565b60006020820190508181036000830152612831816124b7565b9050919050565b60006020820190508181036000830152612851816124da565b9050919050565b60006020820190508181036000830152612871816124fd565b9050919050565b6000602082019050818103600083015261289181612520565b9050919050565b600060208201905081810360008301526128b181612543565b9050919050565b600060208201905081810360008301526128d181612566565b9050919050565b600060208201905081810360008301526128f181612589565b9050919050565b60006020820190508181036000830152612911816125ac565b9050919050565b60006020820190508181036000830152612931816125cf565b9050919050565b60006020820190508181036000830152612951816125f2565b9050919050565b6000602082019050818103600083015261297181612615565b9050919050565b6000602082019050818103600083015261299181612638565b9050919050565b600060208201905081810360008301526129b18161265b565b9050919050565b600060208201905081810360008301526129d18161267e565b9050919050565b60006020820190506129ed60008301846126a1565b92915050565b60006129fd612a0e565b9050612a098282612c2f565b919050565b6000604051905090565b600067ffffffffffffffff821115612a3357612a32612d67565b5b612a3c82612d96565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612a9782612bb1565b9150612aa283612bb1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ad757612ad6612cda565b5b828201905092915050565b6000612aed82612bb1565b9150612af883612bb1565b925082612b0857612b07612d09565b5b828204905092915050565b6000612b1e82612bb1565b9150612b2983612bb1565b925082821015612b3c57612b3b612cda565b5b828203905092915050565b6000612b5282612b91565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612be8578082015181840152602081019050612bcd565b83811115612bf7576000848401525b50505050565b60006002820490506001821680612c1557607f821691505b60208210811415612c2957612c28612d38565b5b50919050565b612c3882612d96565b810181811067ffffffffffffffff82111715612c5757612c56612d67565b5b80604052505050565b6000612c6b82612bb1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c9e57612c9d612cda565b5b600182019050919050565b6000612cb482612bb1565b9150612cbf83612bb1565b925082612ccf57612cce612d09565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d696e20636f737420302e303031455448000000000000000000000000000000600082015250565b6132cf81612b47565b81146132da57600080fd5b50565b6132e681612b59565b81146132f157600080fd5b50565b6132fd81612b65565b811461330857600080fd5b50565b61331481612bb1565b811461331f57600080fd5b5056fea2646970667358221220de377371f5d3bda91269c3163dbb9fb379ad2be749d16c4da8d1f60519b08a3664736f6c63430008040033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000038d7ea4c68000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d506632783931446f656d6e6858535a6847445038545839436f384153637076467a54754674394247416f425900000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061011f5760003560e01c8063715018a6116100a0578063b88d4fde11610064578063b88d4fde146103d8578063bdb4b84814610401578063c87b56dd1461042c578063e985e9c514610469578063f2fde38b146104a65761011f565b8063715018a6146103195780637d7b17a1146103305780638da5cb5b1461035957806395d89b4114610384578063a22cb465146103af5761011f565b80633b7b3c9f116100e75780633b7b3c9f1461021b57806342842e0e146102465780636352211e1461026f5780636a627842146102ac57806370a08231146102dc5761011f565b806301ffc9a71461012457806306fdde0314610161578063081812fc1461018c578063095ea7b3146101c957806323b872dd146101f2575b600080fd5b34801561013057600080fd5b5061014b60048036038101906101469190612287565b6104cf565b604051610158919061273b565b60405180910390f35b34801561016d57600080fd5b506101766105b1565b6040516101839190612756565b60405180910390f35b34801561019857600080fd5b506101b360048036038101906101ae919061231e565b610643565b6040516101c091906126d4565b60405180910390f35b3480156101d557600080fd5b506101f060048036038101906101eb919061224b565b6106c8565b005b3480156101fe57600080fd5b5061021960048036038101906102149190612145565b6107e0565b005b34801561022757600080fd5b50610230610840565b60405161023d9190612756565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612145565b6108ce565b005b34801561027b57600080fd5b506102966004803603810190610291919061231e565b6108ee565b6040516102a391906126d4565b60405180910390f35b6102c660048036038101906102c191906120e0565b6109a0565b6040516102d391906129d8565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe91906120e0565b610aa6565b60405161031091906129d8565b60405180910390f35b34801561032557600080fd5b5061032e610b5e565b005b34801561033c57600080fd5b50610357600480360381019061035291906122d9565b610be6565b005b34801561036557600080fd5b5061036e610c78565b60405161037b91906126d4565b60405180910390f35b34801561039057600080fd5b50610399610ca2565b6040516103a69190612756565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d1919061220f565b610d34565b005b3480156103e457600080fd5b506103ff60048036038101906103fa9190612194565b610d4a565b005b34801561040d57600080fd5b50610416610dac565b60405161042391906129d8565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e919061231e565b610db2565b6040516104609190612756565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b9190612109565b610f04565b60405161049d919061273b565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c891906120e0565b610f98565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061059a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105aa57506105a982611090565b5b9050919050565b6060600080546105c090612bfd565b80601f01602080910402602001604051908101604052809291908181526020018280546105ec90612bfd565b80156106395780601f1061060e57610100808354040283529160200191610639565b820191906000526020600020905b81548152906001019060200180831161061c57829003601f168201915b5050505050905090565b600061064e826110fa565b61068d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068490612918565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106d3826108ee565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073b90612978565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610763611166565b73ffffffffffffffffffffffffffffffffffffffff16148061079257506107918161078c611166565b610f04565b5b6107d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c890612858565b60405180910390fd5b6107db838361116e565b505050565b6107f16107eb611166565b82611227565b610830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082790612998565b60405180910390fd5b61083b838383611305565b505050565b6009805461084d90612bfd565b80601f016020809104026020016040519081016040528092919081815260200182805461087990612bfd565b80156108c65780601f1061089b576101008083540402835291602001916108c6565b820191906000526020600020905b8154815290600101906020018083116108a957829003601f168201915b505050505081565b6108e983838360405180602001604052806000815250610d4a565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e90612898565b60405180910390fd5b80915050919050565b6000600a543410156109e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109de906129b8565b60405180910390fd5b60006109f3600861156c565b90506109ff838261157a565b610a938160098054610a1090612bfd565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3c90612bfd565b8015610a895780601f10610a5e57610100808354040283529160200191610a89565b820191906000526020600020905b815481529060010190602001808311610a6c57829003601f168201915b5050505050611754565b610a9d60086117c8565b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e90612878565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b66611166565b73ffffffffffffffffffffffffffffffffffffffff16610b84610c78565b73ffffffffffffffffffffffffffffffffffffffff1614610bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd190612938565b60405180910390fd5b610be460006117de565b565b610bee611166565b73ffffffffffffffffffffffffffffffffffffffff16610c0c610c78565b73ffffffffffffffffffffffffffffffffffffffff1614610c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5990612938565b60405180910390fd5b818160099190610c73929190611e9c565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610cb190612bfd565b80601f0160208091040260200160405190810160405280929190818152602001828054610cdd90612bfd565b8015610d2a5780601f10610cff57610100808354040283529160200191610d2a565b820191906000526020600020905b815481529060010190602001808311610d0d57829003601f168201915b5050505050905090565b610d46610d3f611166565b83836118a4565b5050565b610d5b610d55611166565b83611227565b610d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9190612998565b60405180910390fd5b610da684848484611a11565b50505050565b600a5481565b6060610dbd826110fa565b610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df3906128f8565b60405180910390fd5b6000600660008481526020019081526020016000208054610e1c90612bfd565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4890612bfd565b8015610e955780601f10610e6a57610100808354040283529160200191610e95565b820191906000526020600020905b815481529060010190602001808311610e7857829003601f168201915b505050505090506000610ea6611a6d565b9050600081511415610ebc578192505050610eff565b600082511115610ef1578082604051602001610ed99291906126b0565b60405160208183030381529060405292505050610eff565b610efa84611a84565b925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610fa0611166565b73ffffffffffffffffffffffffffffffffffffffff16610fbe610c78565b73ffffffffffffffffffffffffffffffffffffffff1614611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b90612938565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107b90612798565b60405180910390fd5b61108d816117de565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166111e1836108ee565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611232826110fa565b611271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126890612838565b60405180910390fd5b600061127c836108ee565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806112be57506112bd8185610f04565b5b806112fc57508373ffffffffffffffffffffffffffffffffffffffff166112e484610643565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611325826108ee565b73ffffffffffffffffffffffffffffffffffffffff161461137b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611372906127b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e2906127f8565b60405180910390fd5b6113f6838383611b2b565b61140160008261116e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114519190612b13565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114a89190612a8c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611567838383611b30565b505050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e1906128d8565b60405180910390fd5b6115f3816110fa565b15611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a906127d8565b60405180910390fd5b61163f60008383611b2b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461168f9190612a8c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461175060008383611b30565b5050565b61175d826110fa565b61179c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611793906128b8565b60405180910390fd5b806006600084815260200190815260200160002090805190602001906117c3929190611f22565b505050565b6001816000016000828254019250508190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190a90612818565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a04919061273b565b60405180910390a3505050565b611a1c848484611305565b611a2884848484611b35565b611a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5e90612778565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b6060611a8f826110fa565b611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac590612958565b60405180910390fd5b6000611ad8611a6d565b90506000815111611af85760405180602001604052806000815250611b23565b80611b0284611ccc565b604051602001611b139291906126b0565b6040516020818303038152906040525b915050919050565b505050565b505050565b6000611b568473ffffffffffffffffffffffffffffffffffffffff16611e79565b15611cbf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b7f611166565b8786866040518563ffffffff1660e01b8152600401611ba194939291906126ef565b602060405180830381600087803b158015611bbb57600080fd5b505af1925050508015611bec57506040513d601f19601f82011682018060405250810190611be991906122b0565b60015b611c6f573d8060008114611c1c576040519150601f19603f3d011682016040523d82523d6000602084013e611c21565b606091505b50600081511415611c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5e90612778565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611cc4565b600190505b949350505050565b60606000821415611d14576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e74565b600082905060005b60008214611d46578080611d2f90612c60565b915050600a82611d3f9190612ae2565b9150611d1c565b60008167ffffffffffffffff811115611d88577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611dba5781602001600182028036833780820191505090505b5090505b60008514611e6d57600182611dd39190612b13565b9150600a85611de29190612ca9565b6030611dee9190612a8c565b60f81b818381518110611e2a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e669190612ae2565b9450611dbe565b8093505050505b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611ea890612bfd565b90600052602060002090601f016020900481019282611eca5760008555611f11565b82601f10611ee357803560ff1916838001178555611f11565b82800160010185558215611f11579182015b82811115611f10578235825591602001919060010190611ef5565b5b509050611f1e9190611fa8565b5090565b828054611f2e90612bfd565b90600052602060002090601f016020900481019282611f505760008555611f97565b82601f10611f6957805160ff1916838001178555611f97565b82800160010185558215611f97579182015b82811115611f96578251825591602001919060010190611f7b565b5b509050611fa49190611fa8565b5090565b5b80821115611fc1576000816000905550600101611fa9565b5090565b6000611fd8611fd384612a18565b6129f3565b905082815260208101848484011115611ff057600080fd5b611ffb848285612bbb565b509392505050565b600081359050612012816132c6565b92915050565b600081359050612027816132dd565b92915050565b60008135905061203c816132f4565b92915050565b600081519050612051816132f4565b92915050565b600082601f83011261206857600080fd5b8135612078848260208601611fc5565b91505092915050565b60008083601f84011261209357600080fd5b8235905067ffffffffffffffff8111156120ac57600080fd5b6020830191508360018202830111156120c457600080fd5b9250929050565b6000813590506120da8161330b565b92915050565b6000602082840312156120f257600080fd5b600061210084828501612003565b91505092915050565b6000806040838503121561211c57600080fd5b600061212a85828601612003565b925050602061213b85828601612003565b9150509250929050565b60008060006060848603121561215a57600080fd5b600061216886828701612003565b935050602061217986828701612003565b925050604061218a868287016120cb565b9150509250925092565b600080600080608085870312156121aa57600080fd5b60006121b887828801612003565b94505060206121c987828801612003565b93505060406121da878288016120cb565b925050606085013567ffffffffffffffff8111156121f757600080fd5b61220387828801612057565b91505092959194509250565b6000806040838503121561222257600080fd5b600061223085828601612003565b925050602061224185828601612018565b9150509250929050565b6000806040838503121561225e57600080fd5b600061226c85828601612003565b925050602061227d858286016120cb565b9150509250929050565b60006020828403121561229957600080fd5b60006122a78482850161202d565b91505092915050565b6000602082840312156122c257600080fd5b60006122d084828501612042565b91505092915050565b600080602083850312156122ec57600080fd5b600083013567ffffffffffffffff81111561230657600080fd5b61231285828601612081565b92509250509250929050565b60006020828403121561233057600080fd5b600061233e848285016120cb565b91505092915050565b61235081612b47565b82525050565b61235f81612b59565b82525050565b600061237082612a49565b61237a8185612a5f565b935061238a818560208601612bca565b61239381612d96565b840191505092915050565b60006123a982612a54565b6123b38185612a70565b93506123c3818560208601612bca565b6123cc81612d96565b840191505092915050565b60006123e282612a54565b6123ec8185612a81565b93506123fc818560208601612bca565b80840191505092915050565b6000612415603283612a70565b915061242082612da7565b604082019050919050565b6000612438602683612a70565b915061244382612df6565b604082019050919050565b600061245b602583612a70565b915061246682612e45565b604082019050919050565b600061247e601c83612a70565b915061248982612e94565b602082019050919050565b60006124a1602483612a70565b91506124ac82612ebd565b604082019050919050565b60006124c4601983612a70565b91506124cf82612f0c565b602082019050919050565b60006124e7602c83612a70565b91506124f282612f35565b604082019050919050565b600061250a603883612a70565b915061251582612f84565b604082019050919050565b600061252d602a83612a70565b915061253882612fd3565b604082019050919050565b6000612550602983612a70565b915061255b82613022565b604082019050919050565b6000612573602e83612a70565b915061257e82613071565b604082019050919050565b6000612596602083612a70565b91506125a1826130c0565b602082019050919050565b60006125b9603183612a70565b91506125c4826130e9565b604082019050919050565b60006125dc602c83612a70565b91506125e782613138565b604082019050919050565b60006125ff602083612a70565b915061260a82613187565b602082019050919050565b6000612622602f83612a70565b915061262d826131b0565b604082019050919050565b6000612645602183612a70565b9150612650826131ff565b604082019050919050565b6000612668603183612a70565b91506126738261324e565b604082019050919050565b600061268b601183612a70565b91506126968261329d565b602082019050919050565b6126aa81612bb1565b82525050565b60006126bc82856123d7565b91506126c882846123d7565b91508190509392505050565b60006020820190506126e96000830184612347565b92915050565b60006080820190506127046000830187612347565b6127116020830186612347565b61271e60408301856126a1565b81810360608301526127308184612365565b905095945050505050565b60006020820190506127506000830184612356565b92915050565b60006020820190508181036000830152612770818461239e565b905092915050565b6000602082019050818103600083015261279181612408565b9050919050565b600060208201905081810360008301526127b18161242b565b9050919050565b600060208201905081810360008301526127d18161244e565b9050919050565b600060208201905081810360008301526127f181612471565b9050919050565b6000602082019050818103600083015261281181612494565b9050919050565b60006020820190508181036000830152612831816124b7565b9050919050565b60006020820190508181036000830152612851816124da565b9050919050565b60006020820190508181036000830152612871816124fd565b9050919050565b6000602082019050818103600083015261289181612520565b9050919050565b600060208201905081810360008301526128b181612543565b9050919050565b600060208201905081810360008301526128d181612566565b9050919050565b600060208201905081810360008301526128f181612589565b9050919050565b60006020820190508181036000830152612911816125ac565b9050919050565b60006020820190508181036000830152612931816125cf565b9050919050565b60006020820190508181036000830152612951816125f2565b9050919050565b6000602082019050818103600083015261297181612615565b9050919050565b6000602082019050818103600083015261299181612638565b9050919050565b600060208201905081810360008301526129b18161265b565b9050919050565b600060208201905081810360008301526129d18161267e565b9050919050565b60006020820190506129ed60008301846126a1565b92915050565b60006129fd612a0e565b9050612a098282612c2f565b919050565b6000604051905090565b600067ffffffffffffffff821115612a3357612a32612d67565b5b612a3c82612d96565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612a9782612bb1565b9150612aa283612bb1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ad757612ad6612cda565b5b828201905092915050565b6000612aed82612bb1565b9150612af883612bb1565b925082612b0857612b07612d09565b5b828204905092915050565b6000612b1e82612bb1565b9150612b2983612bb1565b925082821015612b3c57612b3b612cda565b5b828203905092915050565b6000612b5282612b91565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612be8578082015181840152602081019050612bcd565b83811115612bf7576000848401525b50505050565b60006002820490506001821680612c1557607f821691505b60208210811415612c2957612c28612d38565b5b50919050565b612c3882612d96565b810181811067ffffffffffffffff82111715612c5757612c56612d67565b5b80604052505050565b6000612c6b82612bb1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c9e57612c9d612cda565b5b600182019050919050565b6000612cb482612bb1565b9150612cbf83612bb1565b925082612ccf57612cce612d09565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d696e20636f737420302e303031455448000000000000000000000000000000600082015250565b6132cf81612b47565b81146132da57600080fd5b50565b6132e681612b59565b81146132f157600080fd5b50565b6132fd81612b65565b811461330857600080fd5b50565b61331481612bb1565b811461331f57600080fd5b5056fea2646970667358221220de377371f5d3bda91269c3163dbb9fb379ad2be749d16c4da8d1f60519b08a3664736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000038d7ea4c68000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d506632783931446f656d6e6858535a6847445038545839436f384153637076467a54754674394247416f425900000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _tokenURI (string): https://gateway.pinata.cloud/ipfs/QmPf2x91DoemnhXSZhGDP8TX9Co8AScpvFzTuFt9BGAoBY
Arg [1] : _mintCost (uint256): 1000000000000000
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000038d7ea4c68000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [3] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [4] : 732f516d506632783931446f656d6e6858535a6847445038545839436f384153
Arg [5] : 637076467a54754674394247416f425900000000000000000000000000000000
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.