ERC-721
Overview
Max Total Supply
0 LAL
Holders
7,414
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Balance
1 LALLoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
LazyArtLegacy
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; contract LazyArtLegacy is ERC721, ERC721URIStorage, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenIdCounter; uint256 public mintPrice = 0.0004 ether; string private _baseTokenURI; constructor(address _owner, string memory _uri) ERC721("LazyArtLegacy", "LAL") { transferOwnership(_owner); _baseTokenURI = _uri; } function safeMint() public payable { require(msg.value == mintPrice, "Incorrect ETH value sent"); uint256 tokenId = _tokenIdCounter.current(); _tokenIdCounter.increment(); _safeMint(_msgSender(), tokenId); _setTokenURI(tokenId, _baseTokenURI); payable(owner()).transfer(msg.value); } // New function to mint multiple NFTs function safeMintBatch(uint256 quantity) public payable { require(quantity > 0, "Quantity must be greater than zero"); require(msg.value == mintPrice * quantity, "Incorrect ETH value sent for batch minting"); for (uint256 i = 0; i < quantity; i++) { uint256 tokenId = _tokenIdCounter.current(); _tokenIdCounter.increment(); _safeMint(_msgSender(), tokenId); _setTokenURI(tokenId, _baseTokenURI); } payable(owner()).transfer(msg.value); } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal override virtual { require(from == address(0), "Err: token transfer is BLOCKED"); super._beforeTokenTransfer(from, to, tokenId); } // Function to update the base token URI function setBaseTokenURI(string memory newBaseTokenURI) public onlyOwner { _baseTokenURI = newBaseTokenURI; } // Function to update the mint price function setMintPrice(uint256 newMintPrice) public onlyOwner { mintPrice = newMintPrice; } // The following functions are overrides required by Solidity. function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) { super._burn(tokenId); } function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) { return super.tokenURI(tokenId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (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) { _requireMinted(tokenId); 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 See {ERC721-_burn}. This override additionally checks to see if a * token-specific URI was set for the token, and if so, it deletes the token URI from * the storage mapping. */ 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 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 (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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
{ "evmVersion": "paris", "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"mintPrice","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":[],"name":"safeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"safeMintBatch","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintPrice","type":"uint256"}],"name":"setMintPrice","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
608060405266016bcc41e900006009553480156200001c57600080fd5b5060405162003f3c38038062003f3c833981810160405281019062000042919062000536565b6040518060400160405280600d81526020017f4c617a794172744c6567616379000000000000000000000000000000000000008152506040518060400160405280600381526020017f4c414c00000000000000000000000000000000000000000000000000000000008152508160009081620000bf9190620007e7565b508060019081620000d19190620007e7565b505050620000f4620000e86200011f60201b60201c565b6200012760201b60201c565b6200010582620001ed60201b60201c565b80600a9081620001169190620007e7565b505050620009e9565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620001fd6200028360201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200026f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002669062000955565b60405180910390fd5b62000280816200012760201b60201c565b50565b620002936200011f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002b96200031460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000312576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030990620009c7565b60405180910390fd5b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200037f8262000352565b9050919050565b620003918162000372565b81146200039d57600080fd5b50565b600081519050620003b18162000386565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200040c82620003c1565b810181811067ffffffffffffffff821117156200042e576200042d620003d2565b5b80604052505050565b6000620004436200033e565b905062000451828262000401565b919050565b600067ffffffffffffffff821115620004745762000473620003d2565b5b6200047f82620003c1565b9050602081019050919050565b60005b83811015620004ac5780820151818401526020810190506200048f565b60008484015250505050565b6000620004cf620004c98462000456565b62000437565b905082815260208101848484011115620004ee57620004ed620003bc565b5b620004fb8482856200048c565b509392505050565b600082601f8301126200051b576200051a620003b7565b5b81516200052d848260208601620004b8565b91505092915050565b6000806040838503121562000550576200054f62000348565b5b60006200056085828601620003a0565b925050602083015167ffffffffffffffff8111156200058457620005836200034d565b5b620005928582860162000503565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005ef57607f821691505b602082108103620006055762000604620005a7565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200066f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000630565b6200067b868362000630565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006c8620006c2620006bc8462000693565b6200069d565b62000693565b9050919050565b6000819050919050565b620006e483620006a7565b620006fc620006f382620006cf565b8484546200063d565b825550505050565b600090565b6200071362000704565b62000720818484620006d9565b505050565b5b8181101562000748576200073c60008262000709565b60018101905062000726565b5050565b601f821115620007975762000761816200060b565b6200076c8462000620565b810160208510156200077c578190505b620007946200078b8562000620565b83018262000725565b50505b505050565b600082821c905092915050565b6000620007bc600019846008026200079c565b1980831691505092915050565b6000620007d78383620007a9565b9150826002028217905092915050565b620007f2826200059c565b67ffffffffffffffff8111156200080e576200080d620003d2565b5b6200081a8254620005d6565b620008278282856200074c565b600060209050601f8311600181146200085f57600084156200084a578287015190505b620008568582620007c9565b865550620008c6565b601f1984166200086f866200060b565b60005b82811015620008995784890151825560018201915060208501945060208101905062000872565b86831015620008b95784890151620008b5601f891682620007a9565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006200093d602683620008ce565b91506200094a82620008df565b604082019050919050565b6000602082019050818103600083015262000970816200092e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620009af602083620008ce565b9150620009bc8262000977565b602082019050919050565b60006020820190508181036000830152620009e281620009a0565b9050919050565b61354380620009f96000396000f3fe60806040526004361061012a5760003560e01c80636871ee40116100ab578063a22cb4651161006f578063a22cb465146103b0578063b88d4fde146103d9578063c87b56dd14610402578063e985e9c51461043f578063f2fde38b1461047c578063f4a0a528146104a55761012a565b80636871ee40146102fc57806370a0823114610306578063715018a6146103435780638da5cb5b1461035a57806395d89b41146103855761012a565b806330176e13116100f257806330176e131461022657806336a6b8281461024f57806342842e0e1461026b5780636352211e146102945780636817c76c146102d15761012a565b806301ffc9a71461012f57806306fdde031461016c578063081812fc14610197578063095ea7b3146101d457806323b872dd146101fd575b600080fd5b34801561013b57600080fd5b5061015660048036038101906101519190611f99565b6104ce565b6040516101639190611fe1565b60405180910390f35b34801561017857600080fd5b506101816105b0565b60405161018e919061208c565b60405180910390f35b3480156101a357600080fd5b506101be60048036038101906101b991906120e4565b610642565b6040516101cb9190612152565b60405180910390f35b3480156101e057600080fd5b506101fb60048036038101906101f69190612199565b610688565b005b34801561020957600080fd5b50610224600480360381019061021f91906121d9565b61079f565b005b34801561023257600080fd5b5061024d60048036038101906102489190612361565b6107ff565b005b610269600480360381019061026491906120e4565b61081a565b005b34801561027757600080fd5b50610292600480360381019061028d91906121d9565b6109da565b005b3480156102a057600080fd5b506102bb60048036038101906102b691906120e4565b6109fa565b6040516102c89190612152565b60405180910390f35b3480156102dd57600080fd5b506102e6610aab565b6040516102f391906123b9565b60405180910390f35b610304610ab1565b005b34801561031257600080fd5b5061032d600480360381019061032891906123d4565b610c03565b60405161033a91906123b9565b60405180910390f35b34801561034f57600080fd5b50610358610cba565b005b34801561036657600080fd5b5061036f610cce565b60405161037c9190612152565b60405180910390f35b34801561039157600080fd5b5061039a610cf8565b6040516103a7919061208c565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d2919061242d565b610d8a565b005b3480156103e557600080fd5b5061040060048036038101906103fb919061250e565b610da0565b005b34801561040e57600080fd5b50610429600480360381019061042491906120e4565b610e02565b604051610436919061208c565b60405180910390f35b34801561044b57600080fd5b5061046660048036038101906104619190612591565b610e14565b6040516104739190611fe1565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e91906123d4565b610ea8565b005b3480156104b157600080fd5b506104cc60048036038101906104c791906120e4565b610f2b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061059957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105a957506105a882610f3d565b5b9050919050565b6060600080546105bf90612600565b80601f01602080910402602001604051908101604052809291908181526020018280546105eb90612600565b80156106385780601f1061060d57610100808354040283529160200191610638565b820191906000526020600020905b81548152906001019060200180831161061b57829003601f168201915b5050505050905090565b600061064d82610fa7565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610693826109fa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fa906126a3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610722610ff2565b73ffffffffffffffffffffffffffffffffffffffff16148061075157506107508161074b610ff2565b610e14565b5b610790576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078790612735565b60405180910390fd5b61079a8383610ffa565b505050565b6107b06107aa610ff2565b826110b3565b6107ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e6906127c7565b60405180910390fd5b6107fa838383611148565b505050565b6108076113ae565b80600a90816108169190612993565b5050565b6000811161085d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085490612ad7565b60405180910390fd5b8060095461086b9190612b26565b34146108ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a390612bda565b60405180910390fd5b60005b818110156109885760006108c3600861142c565b90506108cf600861143a565b6108e06108da610ff2565b82611450565b61097481600a80546108f190612600565b80601f016020809104026020016040519081016040528092919081815260200182805461091d90612600565b801561096a5780601f1061093f5761010080835404028352916020019161096a565b820191906000526020600020905b81548152906001019060200180831161094d57829003601f168201915b505050505061146e565b50808061098090612bfa565b9150506108af565b50610991610cce565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501580156109d6573d6000803e3d6000fd5b5050565b6109f583838360405180602001604052806000815250610da0565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9990612c8e565b60405180910390fd5b80915050919050565b60095481565b6009543414610af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aec90612cfa565b60405180910390fd5b6000610b01600861142c565b9050610b0d600861143a565b610b1e610b18610ff2565b82611450565b610bb281600a8054610b2f90612600565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5b90612600565b8015610ba85780601f10610b7d57610100808354040283529160200191610ba8565b820191906000526020600020905b815481529060010190602001808311610b8b57829003601f168201915b505050505061146e565b610bba610cce565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610bff573d6000803e3d6000fd5b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a90612d8c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cc26113ae565b610ccc60006114db565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610d0790612600565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3390612600565b8015610d805780601f10610d5557610100808354040283529160200191610d80565b820191906000526020600020905b815481529060010190602001808311610d6357829003601f168201915b5050505050905090565b610d9c610d95610ff2565b83836115a1565b5050565b610db1610dab610ff2565b836110b3565b610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de7906127c7565b60405180910390fd5b610dfc8484848461170d565b50505050565b6060610e0d82611769565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610eb06113ae565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1690612e1e565b60405180910390fd5b610f28816114db565b50565b610f336113ae565b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610fb08161187b565b610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe690612c8e565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661106d836109fa565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806110bf836109fa565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061110157506111008185610e14565b5b8061113f57508373ffffffffffffffffffffffffffffffffffffffff1661112784610642565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611168826109fa565b73ffffffffffffffffffffffffffffffffffffffff16146111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b590612eb0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122490612f42565b60405180910390fd5b6112388383836118e7565b611243600082610ffa565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112939190612f62565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112ea9190612f96565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113a9838383611966565b505050565b6113b6610ff2565b73ffffffffffffffffffffffffffffffffffffffff166113d4610cce565b73ffffffffffffffffffffffffffffffffffffffff161461142a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142190613016565b60405180910390fd5b565b600081600001549050919050565b6001816000016000828254019250508190555050565b61146a82826040518060200160405280600081525061196b565b5050565b6114778261187b565b6114b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ad906130a8565b60405180910390fd5b806006600084815260200190815260200160002090816114d69190612993565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361160f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160690613114565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117009190611fe1565b60405180910390a3505050565b611718848484611148565b611724848484846119c6565b611763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175a906131a6565b60405180910390fd5b50505050565b606061177482610fa7565b600060066000848152602001908152602001600020805461179490612600565b80601f01602080910402602001604051908101604052809291908181526020018280546117c090612600565b801561180d5780601f106117e25761010080835404028352916020019161180d565b820191906000526020600020905b8154815290600101906020018083116117f057829003601f168201915b50505050509050600061181e611b4d565b90506000815103611833578192505050611876565b600082511115611868578082604051602001611850929190613202565b60405160208183030381529060405292505050611876565b61187184611b64565b925050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d90613272565b60405180910390fd5b611961838383611bcc565b505050565b505050565b6119758383611bd1565b61198260008484846119c6565b6119c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b8906131a6565b60405180910390fd5b505050565b60006119e78473ffffffffffffffffffffffffffffffffffffffff16611daa565b15611b40578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a10610ff2565b8786866040518563ffffffff1660e01b8152600401611a3294939291906132e7565b6020604051808303816000875af1925050508015611a6e57506040513d601f19601f82011682018060405250810190611a6b9190613348565b60015b611af0573d8060008114611a9e576040519150601f19603f3d011682016040523d82523d6000602084013e611aa3565b606091505b506000815103611ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adf906131a6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611b45565b600190505b949350505050565b606060405180602001604052806000815250905090565b6060611b6f82610fa7565b6000611b79611b4d565b90506000815111611b995760405180602001604052806000815250611bc4565b80611ba384611dcd565b604051602001611bb4929190613202565b6040516020818303038152906040525b915050919050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c37906133c1565b60405180910390fd5b611c498161187b565b15611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c809061342d565b60405180910390fd5b611c95600083836118e7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ce59190612f96565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611da660008383611966565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b606060008203611e14576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f28565b600082905060005b60008214611e46578080611e2f90612bfa565b915050600a82611e3f919061347c565b9150611e1c565b60008167ffffffffffffffff811115611e6257611e61612236565b5b6040519080825280601f01601f191660200182016040528015611e945781602001600182028036833780820191505090505b5090505b60008514611f2157600182611ead9190612f62565b9150600a85611ebc91906134ad565b6030611ec89190612f96565b60f81b818381518110611ede57611edd6134de565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f1a919061347c565b9450611e98565b8093505050505b919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f7681611f41565b8114611f8157600080fd5b50565b600081359050611f9381611f6d565b92915050565b600060208284031215611faf57611fae611f37565b5b6000611fbd84828501611f84565b91505092915050565b60008115159050919050565b611fdb81611fc6565b82525050565b6000602082019050611ff66000830184611fd2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561203657808201518184015260208101905061201b565b60008484015250505050565b6000601f19601f8301169050919050565b600061205e82611ffc565b6120688185612007565b9350612078818560208601612018565b61208181612042565b840191505092915050565b600060208201905081810360008301526120a68184612053565b905092915050565b6000819050919050565b6120c1816120ae565b81146120cc57600080fd5b50565b6000813590506120de816120b8565b92915050565b6000602082840312156120fa576120f9611f37565b5b6000612108848285016120cf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061213c82612111565b9050919050565b61214c81612131565b82525050565b60006020820190506121676000830184612143565b92915050565b61217681612131565b811461218157600080fd5b50565b6000813590506121938161216d565b92915050565b600080604083850312156121b0576121af611f37565b5b60006121be85828601612184565b92505060206121cf858286016120cf565b9150509250929050565b6000806000606084860312156121f2576121f1611f37565b5b600061220086828701612184565b935050602061221186828701612184565b9250506040612222868287016120cf565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61226e82612042565b810181811067ffffffffffffffff8211171561228d5761228c612236565b5b80604052505050565b60006122a0611f2d565b90506122ac8282612265565b919050565b600067ffffffffffffffff8211156122cc576122cb612236565b5b6122d582612042565b9050602081019050919050565b82818337600083830152505050565b60006123046122ff846122b1565b612296565b9050828152602081018484840111156123205761231f612231565b5b61232b8482856122e2565b509392505050565b600082601f8301126123485761234761222c565b5b81356123588482602086016122f1565b91505092915050565b60006020828403121561237757612376611f37565b5b600082013567ffffffffffffffff81111561239557612394611f3c565b5b6123a184828501612333565b91505092915050565b6123b3816120ae565b82525050565b60006020820190506123ce60008301846123aa565b92915050565b6000602082840312156123ea576123e9611f37565b5b60006123f884828501612184565b91505092915050565b61240a81611fc6565b811461241557600080fd5b50565b60008135905061242781612401565b92915050565b6000806040838503121561244457612443611f37565b5b600061245285828601612184565b925050602061246385828601612418565b9150509250929050565b600067ffffffffffffffff82111561248857612487612236565b5b61249182612042565b9050602081019050919050565b60006124b16124ac8461246d565b612296565b9050828152602081018484840111156124cd576124cc612231565b5b6124d88482856122e2565b509392505050565b600082601f8301126124f5576124f461222c565b5b813561250584826020860161249e565b91505092915050565b6000806000806080858703121561252857612527611f37565b5b600061253687828801612184565b945050602061254787828801612184565b9350506040612558878288016120cf565b925050606085013567ffffffffffffffff81111561257957612578611f3c565b5b612585878288016124e0565b91505092959194509250565b600080604083850312156125a8576125a7611f37565b5b60006125b685828601612184565b92505060206125c785828601612184565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061261857607f821691505b60208210810361262b5761262a6125d1565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061268d602183612007565b915061269882612631565b604082019050919050565b600060208201905081810360008301526126bc81612680565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b600061271f603e83612007565b915061272a826126c3565b604082019050919050565b6000602082019050818103600083015261274e81612712565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b60006127b1602e83612007565b91506127bc82612755565b604082019050919050565b600060208201905081810360008301526127e0816127a4565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026128497fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261280c565b612853868361280c565b95508019841693508086168417925050509392505050565b6000819050919050565b600061289061288b612886846120ae565b61286b565b6120ae565b9050919050565b6000819050919050565b6128aa83612875565b6128be6128b682612897565b848454612819565b825550505050565b600090565b6128d36128c6565b6128de8184846128a1565b505050565b5b81811015612902576128f76000826128cb565b6001810190506128e4565b5050565b601f82111561294757612918816127e7565b612921846127fc565b81016020851015612930578190505b61294461293c856127fc565b8301826128e3565b50505b505050565b600082821c905092915050565b600061296a6000198460080261294c565b1980831691505092915050565b60006129838383612959565b9150826002028217905092915050565b61299c82611ffc565b67ffffffffffffffff8111156129b5576129b4612236565b5b6129bf8254612600565b6129ca828285612906565b600060209050601f8311600181146129fd57600084156129eb578287015190505b6129f58582612977565b865550612a5d565b601f198416612a0b866127e7565b60005b82811015612a3357848901518255600182019150602085019450602081019050612a0e565b86831015612a505784890151612a4c601f891682612959565b8355505b6001600288020188555050505b505050505050565b7f5175616e74697479206d7573742062652067726561746572207468616e207a6560008201527f726f000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ac1602283612007565b9150612acc82612a65565b604082019050919050565b60006020820190508181036000830152612af081612ab4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b31826120ae565b9150612b3c836120ae565b9250828202612b4a816120ae565b91508282048414831517612b6157612b60612af7565b5b5092915050565b7f496e636f7272656374204554482076616c75652073656e7420666f722062617460008201527f6368206d696e74696e6700000000000000000000000000000000000000000000602082015250565b6000612bc4602a83612007565b9150612bcf82612b68565b604082019050919050565b60006020820190508181036000830152612bf381612bb7565b9050919050565b6000612c05826120ae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612c3757612c36612af7565b5b600182019050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612c78601883612007565b9150612c8382612c42565b602082019050919050565b60006020820190508181036000830152612ca781612c6b565b9050919050565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b6000612ce4601883612007565b9150612cef82612cae565b602082019050919050565b60006020820190508181036000830152612d1381612cd7565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612d76602983612007565b9150612d8182612d1a565b604082019050919050565b60006020820190508181036000830152612da581612d69565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e08602683612007565b9150612e1382612dac565b604082019050919050565b60006020820190508181036000830152612e3781612dfb565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612e9a602583612007565b9150612ea582612e3e565b604082019050919050565b60006020820190508181036000830152612ec981612e8d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612f2c602483612007565b9150612f3782612ed0565b604082019050919050565b60006020820190508181036000830152612f5b81612f1f565b9050919050565b6000612f6d826120ae565b9150612f78836120ae565b9250828203905081811115612f9057612f8f612af7565b5b92915050565b6000612fa1826120ae565b9150612fac836120ae565b9250828201905080821115612fc457612fc3612af7565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613000602083612007565b915061300b82612fca565b602082019050919050565b6000602082019050818103600083015261302f81612ff3565b9050919050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b6000613092602e83612007565b915061309d82613036565b604082019050919050565b600060208201905081810360008301526130c181613085565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006130fe601983612007565b9150613109826130c8565b602082019050919050565b6000602082019050818103600083015261312d816130f1565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613190603283612007565b915061319b82613134565b604082019050919050565b600060208201905081810360008301526131bf81613183565b9050919050565b600081905092915050565b60006131dc82611ffc565b6131e681856131c6565b93506131f6818560208601612018565b80840191505092915050565b600061320e82856131d1565b915061321a82846131d1565b91508190509392505050565b7f4572723a20746f6b656e207472616e7366657220697320424c4f434b45440000600082015250565b600061325c601e83612007565b915061326782613226565b602082019050919050565b6000602082019050818103600083015261328b8161324f565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006132b982613292565b6132c3818561329d565b93506132d3818560208601612018565b6132dc81612042565b840191505092915050565b60006080820190506132fc6000830187612143565b6133096020830186612143565b61331660408301856123aa565b818103606083015261332881846132ae565b905095945050505050565b60008151905061334281611f6d565b92915050565b60006020828403121561335e5761335d611f37565b5b600061336c84828501613333565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006133ab602083612007565b91506133b682613375565b602082019050919050565b600060208201905081810360008301526133da8161339e565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613417601c83612007565b9150613422826133e1565b602082019050919050565b600060208201905081810360008301526134468161340a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613487826120ae565b9150613492836120ae565b9250826134a2576134a161344d565b5b828204905092915050565b60006134b8826120ae565b91506134c3836120ae565b9250826134d3576134d261344d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122072a7b5dcf717192eff07e211258d33b0c595e957bf29175431f81bfcab7d0e8264736f6c6343000814003300000000000000000000000031c182c25ec206c45cf6293798484a417e58b52b0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d617369684d6668684a736b4e784348564257356f74776b4b695070526d417050703647564d54636a424d345000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061012a5760003560e01c80636871ee40116100ab578063a22cb4651161006f578063a22cb465146103b0578063b88d4fde146103d9578063c87b56dd14610402578063e985e9c51461043f578063f2fde38b1461047c578063f4a0a528146104a55761012a565b80636871ee40146102fc57806370a0823114610306578063715018a6146103435780638da5cb5b1461035a57806395d89b41146103855761012a565b806330176e13116100f257806330176e131461022657806336a6b8281461024f57806342842e0e1461026b5780636352211e146102945780636817c76c146102d15761012a565b806301ffc9a71461012f57806306fdde031461016c578063081812fc14610197578063095ea7b3146101d457806323b872dd146101fd575b600080fd5b34801561013b57600080fd5b5061015660048036038101906101519190611f99565b6104ce565b6040516101639190611fe1565b60405180910390f35b34801561017857600080fd5b506101816105b0565b60405161018e919061208c565b60405180910390f35b3480156101a357600080fd5b506101be60048036038101906101b991906120e4565b610642565b6040516101cb9190612152565b60405180910390f35b3480156101e057600080fd5b506101fb60048036038101906101f69190612199565b610688565b005b34801561020957600080fd5b50610224600480360381019061021f91906121d9565b61079f565b005b34801561023257600080fd5b5061024d60048036038101906102489190612361565b6107ff565b005b610269600480360381019061026491906120e4565b61081a565b005b34801561027757600080fd5b50610292600480360381019061028d91906121d9565b6109da565b005b3480156102a057600080fd5b506102bb60048036038101906102b691906120e4565b6109fa565b6040516102c89190612152565b60405180910390f35b3480156102dd57600080fd5b506102e6610aab565b6040516102f391906123b9565b60405180910390f35b610304610ab1565b005b34801561031257600080fd5b5061032d600480360381019061032891906123d4565b610c03565b60405161033a91906123b9565b60405180910390f35b34801561034f57600080fd5b50610358610cba565b005b34801561036657600080fd5b5061036f610cce565b60405161037c9190612152565b60405180910390f35b34801561039157600080fd5b5061039a610cf8565b6040516103a7919061208c565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d2919061242d565b610d8a565b005b3480156103e557600080fd5b5061040060048036038101906103fb919061250e565b610da0565b005b34801561040e57600080fd5b50610429600480360381019061042491906120e4565b610e02565b604051610436919061208c565b60405180910390f35b34801561044b57600080fd5b5061046660048036038101906104619190612591565b610e14565b6040516104739190611fe1565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e91906123d4565b610ea8565b005b3480156104b157600080fd5b506104cc60048036038101906104c791906120e4565b610f2b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061059957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105a957506105a882610f3d565b5b9050919050565b6060600080546105bf90612600565b80601f01602080910402602001604051908101604052809291908181526020018280546105eb90612600565b80156106385780601f1061060d57610100808354040283529160200191610638565b820191906000526020600020905b81548152906001019060200180831161061b57829003601f168201915b5050505050905090565b600061064d82610fa7565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610693826109fa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fa906126a3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610722610ff2565b73ffffffffffffffffffffffffffffffffffffffff16148061075157506107508161074b610ff2565b610e14565b5b610790576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078790612735565b60405180910390fd5b61079a8383610ffa565b505050565b6107b06107aa610ff2565b826110b3565b6107ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e6906127c7565b60405180910390fd5b6107fa838383611148565b505050565b6108076113ae565b80600a90816108169190612993565b5050565b6000811161085d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085490612ad7565b60405180910390fd5b8060095461086b9190612b26565b34146108ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a390612bda565b60405180910390fd5b60005b818110156109885760006108c3600861142c565b90506108cf600861143a565b6108e06108da610ff2565b82611450565b61097481600a80546108f190612600565b80601f016020809104026020016040519081016040528092919081815260200182805461091d90612600565b801561096a5780601f1061093f5761010080835404028352916020019161096a565b820191906000526020600020905b81548152906001019060200180831161094d57829003601f168201915b505050505061146e565b50808061098090612bfa565b9150506108af565b50610991610cce565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501580156109d6573d6000803e3d6000fd5b5050565b6109f583838360405180602001604052806000815250610da0565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9990612c8e565b60405180910390fd5b80915050919050565b60095481565b6009543414610af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aec90612cfa565b60405180910390fd5b6000610b01600861142c565b9050610b0d600861143a565b610b1e610b18610ff2565b82611450565b610bb281600a8054610b2f90612600565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5b90612600565b8015610ba85780601f10610b7d57610100808354040283529160200191610ba8565b820191906000526020600020905b815481529060010190602001808311610b8b57829003601f168201915b505050505061146e565b610bba610cce565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610bff573d6000803e3d6000fd5b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a90612d8c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cc26113ae565b610ccc60006114db565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610d0790612600565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3390612600565b8015610d805780601f10610d5557610100808354040283529160200191610d80565b820191906000526020600020905b815481529060010190602001808311610d6357829003601f168201915b5050505050905090565b610d9c610d95610ff2565b83836115a1565b5050565b610db1610dab610ff2565b836110b3565b610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de7906127c7565b60405180910390fd5b610dfc8484848461170d565b50505050565b6060610e0d82611769565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610eb06113ae565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1690612e1e565b60405180910390fd5b610f28816114db565b50565b610f336113ae565b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610fb08161187b565b610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe690612c8e565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661106d836109fa565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806110bf836109fa565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061110157506111008185610e14565b5b8061113f57508373ffffffffffffffffffffffffffffffffffffffff1661112784610642565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611168826109fa565b73ffffffffffffffffffffffffffffffffffffffff16146111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b590612eb0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122490612f42565b60405180910390fd5b6112388383836118e7565b611243600082610ffa565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112939190612f62565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112ea9190612f96565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113a9838383611966565b505050565b6113b6610ff2565b73ffffffffffffffffffffffffffffffffffffffff166113d4610cce565b73ffffffffffffffffffffffffffffffffffffffff161461142a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142190613016565b60405180910390fd5b565b600081600001549050919050565b6001816000016000828254019250508190555050565b61146a82826040518060200160405280600081525061196b565b5050565b6114778261187b565b6114b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ad906130a8565b60405180910390fd5b806006600084815260200190815260200160002090816114d69190612993565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361160f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160690613114565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117009190611fe1565b60405180910390a3505050565b611718848484611148565b611724848484846119c6565b611763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175a906131a6565b60405180910390fd5b50505050565b606061177482610fa7565b600060066000848152602001908152602001600020805461179490612600565b80601f01602080910402602001604051908101604052809291908181526020018280546117c090612600565b801561180d5780601f106117e25761010080835404028352916020019161180d565b820191906000526020600020905b8154815290600101906020018083116117f057829003601f168201915b50505050509050600061181e611b4d565b90506000815103611833578192505050611876565b600082511115611868578082604051602001611850929190613202565b60405160208183030381529060405292505050611876565b61187184611b64565b925050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d90613272565b60405180910390fd5b611961838383611bcc565b505050565b505050565b6119758383611bd1565b61198260008484846119c6565b6119c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b8906131a6565b60405180910390fd5b505050565b60006119e78473ffffffffffffffffffffffffffffffffffffffff16611daa565b15611b40578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a10610ff2565b8786866040518563ffffffff1660e01b8152600401611a3294939291906132e7565b6020604051808303816000875af1925050508015611a6e57506040513d601f19601f82011682018060405250810190611a6b9190613348565b60015b611af0573d8060008114611a9e576040519150601f19603f3d011682016040523d82523d6000602084013e611aa3565b606091505b506000815103611ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adf906131a6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611b45565b600190505b949350505050565b606060405180602001604052806000815250905090565b6060611b6f82610fa7565b6000611b79611b4d565b90506000815111611b995760405180602001604052806000815250611bc4565b80611ba384611dcd565b604051602001611bb4929190613202565b6040516020818303038152906040525b915050919050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c37906133c1565b60405180910390fd5b611c498161187b565b15611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c809061342d565b60405180910390fd5b611c95600083836118e7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ce59190612f96565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611da660008383611966565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b606060008203611e14576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f28565b600082905060005b60008214611e46578080611e2f90612bfa565b915050600a82611e3f919061347c565b9150611e1c565b60008167ffffffffffffffff811115611e6257611e61612236565b5b6040519080825280601f01601f191660200182016040528015611e945781602001600182028036833780820191505090505b5090505b60008514611f2157600182611ead9190612f62565b9150600a85611ebc91906134ad565b6030611ec89190612f96565b60f81b818381518110611ede57611edd6134de565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f1a919061347c565b9450611e98565b8093505050505b919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f7681611f41565b8114611f8157600080fd5b50565b600081359050611f9381611f6d565b92915050565b600060208284031215611faf57611fae611f37565b5b6000611fbd84828501611f84565b91505092915050565b60008115159050919050565b611fdb81611fc6565b82525050565b6000602082019050611ff66000830184611fd2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561203657808201518184015260208101905061201b565b60008484015250505050565b6000601f19601f8301169050919050565b600061205e82611ffc565b6120688185612007565b9350612078818560208601612018565b61208181612042565b840191505092915050565b600060208201905081810360008301526120a68184612053565b905092915050565b6000819050919050565b6120c1816120ae565b81146120cc57600080fd5b50565b6000813590506120de816120b8565b92915050565b6000602082840312156120fa576120f9611f37565b5b6000612108848285016120cf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061213c82612111565b9050919050565b61214c81612131565b82525050565b60006020820190506121676000830184612143565b92915050565b61217681612131565b811461218157600080fd5b50565b6000813590506121938161216d565b92915050565b600080604083850312156121b0576121af611f37565b5b60006121be85828601612184565b92505060206121cf858286016120cf565b9150509250929050565b6000806000606084860312156121f2576121f1611f37565b5b600061220086828701612184565b935050602061221186828701612184565b9250506040612222868287016120cf565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61226e82612042565b810181811067ffffffffffffffff8211171561228d5761228c612236565b5b80604052505050565b60006122a0611f2d565b90506122ac8282612265565b919050565b600067ffffffffffffffff8211156122cc576122cb612236565b5b6122d582612042565b9050602081019050919050565b82818337600083830152505050565b60006123046122ff846122b1565b612296565b9050828152602081018484840111156123205761231f612231565b5b61232b8482856122e2565b509392505050565b600082601f8301126123485761234761222c565b5b81356123588482602086016122f1565b91505092915050565b60006020828403121561237757612376611f37565b5b600082013567ffffffffffffffff81111561239557612394611f3c565b5b6123a184828501612333565b91505092915050565b6123b3816120ae565b82525050565b60006020820190506123ce60008301846123aa565b92915050565b6000602082840312156123ea576123e9611f37565b5b60006123f884828501612184565b91505092915050565b61240a81611fc6565b811461241557600080fd5b50565b60008135905061242781612401565b92915050565b6000806040838503121561244457612443611f37565b5b600061245285828601612184565b925050602061246385828601612418565b9150509250929050565b600067ffffffffffffffff82111561248857612487612236565b5b61249182612042565b9050602081019050919050565b60006124b16124ac8461246d565b612296565b9050828152602081018484840111156124cd576124cc612231565b5b6124d88482856122e2565b509392505050565b600082601f8301126124f5576124f461222c565b5b813561250584826020860161249e565b91505092915050565b6000806000806080858703121561252857612527611f37565b5b600061253687828801612184565b945050602061254787828801612184565b9350506040612558878288016120cf565b925050606085013567ffffffffffffffff81111561257957612578611f3c565b5b612585878288016124e0565b91505092959194509250565b600080604083850312156125a8576125a7611f37565b5b60006125b685828601612184565b92505060206125c785828601612184565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061261857607f821691505b60208210810361262b5761262a6125d1565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061268d602183612007565b915061269882612631565b604082019050919050565b600060208201905081810360008301526126bc81612680565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b600061271f603e83612007565b915061272a826126c3565b604082019050919050565b6000602082019050818103600083015261274e81612712565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b60006127b1602e83612007565b91506127bc82612755565b604082019050919050565b600060208201905081810360008301526127e0816127a4565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026128497fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261280c565b612853868361280c565b95508019841693508086168417925050509392505050565b6000819050919050565b600061289061288b612886846120ae565b61286b565b6120ae565b9050919050565b6000819050919050565b6128aa83612875565b6128be6128b682612897565b848454612819565b825550505050565b600090565b6128d36128c6565b6128de8184846128a1565b505050565b5b81811015612902576128f76000826128cb565b6001810190506128e4565b5050565b601f82111561294757612918816127e7565b612921846127fc565b81016020851015612930578190505b61294461293c856127fc565b8301826128e3565b50505b505050565b600082821c905092915050565b600061296a6000198460080261294c565b1980831691505092915050565b60006129838383612959565b9150826002028217905092915050565b61299c82611ffc565b67ffffffffffffffff8111156129b5576129b4612236565b5b6129bf8254612600565b6129ca828285612906565b600060209050601f8311600181146129fd57600084156129eb578287015190505b6129f58582612977565b865550612a5d565b601f198416612a0b866127e7565b60005b82811015612a3357848901518255600182019150602085019450602081019050612a0e565b86831015612a505784890151612a4c601f891682612959565b8355505b6001600288020188555050505b505050505050565b7f5175616e74697479206d7573742062652067726561746572207468616e207a6560008201527f726f000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ac1602283612007565b9150612acc82612a65565b604082019050919050565b60006020820190508181036000830152612af081612ab4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b31826120ae565b9150612b3c836120ae565b9250828202612b4a816120ae565b91508282048414831517612b6157612b60612af7565b5b5092915050565b7f496e636f7272656374204554482076616c75652073656e7420666f722062617460008201527f6368206d696e74696e6700000000000000000000000000000000000000000000602082015250565b6000612bc4602a83612007565b9150612bcf82612b68565b604082019050919050565b60006020820190508181036000830152612bf381612bb7565b9050919050565b6000612c05826120ae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612c3757612c36612af7565b5b600182019050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612c78601883612007565b9150612c8382612c42565b602082019050919050565b60006020820190508181036000830152612ca781612c6b565b9050919050565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b6000612ce4601883612007565b9150612cef82612cae565b602082019050919050565b60006020820190508181036000830152612d1381612cd7565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612d76602983612007565b9150612d8182612d1a565b604082019050919050565b60006020820190508181036000830152612da581612d69565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e08602683612007565b9150612e1382612dac565b604082019050919050565b60006020820190508181036000830152612e3781612dfb565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612e9a602583612007565b9150612ea582612e3e565b604082019050919050565b60006020820190508181036000830152612ec981612e8d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612f2c602483612007565b9150612f3782612ed0565b604082019050919050565b60006020820190508181036000830152612f5b81612f1f565b9050919050565b6000612f6d826120ae565b9150612f78836120ae565b9250828203905081811115612f9057612f8f612af7565b5b92915050565b6000612fa1826120ae565b9150612fac836120ae565b9250828201905080821115612fc457612fc3612af7565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613000602083612007565b915061300b82612fca565b602082019050919050565b6000602082019050818103600083015261302f81612ff3565b9050919050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b6000613092602e83612007565b915061309d82613036565b604082019050919050565b600060208201905081810360008301526130c181613085565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006130fe601983612007565b9150613109826130c8565b602082019050919050565b6000602082019050818103600083015261312d816130f1565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613190603283612007565b915061319b82613134565b604082019050919050565b600060208201905081810360008301526131bf81613183565b9050919050565b600081905092915050565b60006131dc82611ffc565b6131e681856131c6565b93506131f6818560208601612018565b80840191505092915050565b600061320e82856131d1565b915061321a82846131d1565b91508190509392505050565b7f4572723a20746f6b656e207472616e7366657220697320424c4f434b45440000600082015250565b600061325c601e83612007565b915061326782613226565b602082019050919050565b6000602082019050818103600083015261328b8161324f565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006132b982613292565b6132c3818561329d565b93506132d3818560208601612018565b6132dc81612042565b840191505092915050565b60006080820190506132fc6000830187612143565b6133096020830186612143565b61331660408301856123aa565b818103606083015261332881846132ae565b905095945050505050565b60008151905061334281611f6d565b92915050565b60006020828403121561335e5761335d611f37565b5b600061336c84828501613333565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006133ab602083612007565b91506133b682613375565b602082019050919050565b600060208201905081810360008301526133da8161339e565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613417601c83612007565b9150613422826133e1565b602082019050919050565b600060208201905081810360008301526134468161340a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613487826120ae565b9150613492836120ae565b9250826134a2576134a161344d565b5b828204905092915050565b60006134b8826120ae565b91506134c3836120ae565b9250826134d3576134d261344d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122072a7b5dcf717192eff07e211258d33b0c595e957bf29175431f81bfcab7d0e8264736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000031c182c25ec206c45cf6293798484a417e58b52b0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d617369684d6668684a736b4e784348564257356f74776b4b695070526d417050703647564d54636a424d345000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _owner (address): 0x31c182C25Ec206C45Cf6293798484a417e58b52b
Arg [1] : _uri (string): https://gateway.pinata.cloud/ipfs/QmasihMfhhJskNxCHVBW5otwkKiPpRmApPp6GVMTcjBM4P
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 00000000000000000000000031c182c25ec206c45cf6293798484a417e58b52b
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [3] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [4] : 732f516d617369684d6668684a736b4e784348564257356f74776b4b69507052
Arg [5] : 6d417050703647564d54636a424d345000000000000000000000000000000000
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.