Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
8 SCN
Holders
8
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SCNLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CooperatorNFT
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; contract CooperatorNFT is ERC721, ERC721URIStorage, Ownable { uint256 public mintPrice; uint256 public totalSupply; uint256 public maxSupply; uint256 public maxPerWallet; bool public isPublicMintEnabled; string internal baseTokenUri; address payable public withdrawWallet; mapping(address => uint256) public walletMints; mapping(address => uint256) private _balances; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; constructor() payable ERC721("ShapeCooperatorNFT", "SCN") { mintPrice = 0.03 ether; totalSupply = 0; maxSupply = 8; maxPerWallet = 1; withdrawWallet = payable(0x0aDCc460064014d453Cf6C6f4E0a2BD5e6152421); } function setIsPublicMintEnabled(bool isPublicMintEnabled_) external onlyOwner { isPublicMintEnabled = isPublicMintEnabled_; } function setBaseTokenUri(string calldata baseTokenUri_) external onlyOwner { baseTokenUri = baseTokenUri_; } function tokenURI(uint256 tokenId_) public view override(ERC721, ERC721URIStorage) returns (string memory) { require(_exists(tokenId_), "Token does not exist!"); return string( abi.encodePacked( baseTokenUri, Strings.toString(tokenId_), ".json" ) ); } function withdraw() external onlyOwner { (bool success, ) = withdrawWallet.call{value: address(this).balance}( " " ); require(success, "withdraw failed"); } function mint(uint256 quantity_) public payable { require(isPublicMintEnabled, "minting not enabled"); require(msg.value == quantity_ * mintPrice, "wrong not enabled"); require(totalSupply + quantity_ <= maxSupply, "sold out"); require( walletMints[msg.sender] + quantity_ <= maxPerWallet, "exceed max wallet" ); walletMints[msg.sender]++; uint256 newTokenId = totalSupply + 1; totalSupply++; _safeMint(msg.sender, newTokenId); _balances[msg.sender]++; } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal override(ERC721) { require(from == address(0), "Err: token is SOUL BOUND"); super._beforeTokenTransfer(from, to, tokenId); } function _burn(uint256 tokenId) internal virtual override(ERC721, ERC721URIStorage) { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } function balanceOf(address _owner) public view override(ERC721) returns (uint256) { return _balances[_owner]; } }
// 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) (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/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 (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 (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) (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 v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/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/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"payable","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":"isPublicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity_","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[{"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":"baseTokenUri_","type":"string"}],"name":"setBaseTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isPublicMintEnabled_","type":"bool"}],"name":"setIsPublicMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526040518060400160405280601281526020017f5368617065436f6f70657261746f724e465400000000000000000000000000008152506040518060400160405280600381526020017f53434e000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200008892919062000213565b508060019080519060200190620000a192919062000213565b505050620000c4620000b86200014560201b60201c565b6200014d60201b60201c565b666a94d74f43000060088190555060006009819055506008600a819055506001600b81905550730adcc460064014d453cf6c6f4e0a2bd5e6152421600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000328565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022190620002c3565b90600052602060002090601f01602090048101928262000245576000855562000291565b82601f106200026057805160ff191683800117855562000291565b8280016001018555821562000291579182015b828111156200029057825182559160200191906001019062000273565b5b509050620002a09190620002a4565b5090565b5b80821115620002bf576000816000905550600101620002a5565b5090565b60006002820490506001821680620002dc57607f821691505b60208210811415620002f357620002f2620002f9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6134e180620003386000396000f3fe60806040526004361061019c5760003560e01c806370a08231116100ec578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610593578063e985e9c5146105be578063f0293fd3146105fb578063f2fde38b146106385761019c565b8063a22cb46514610504578063b88d4fde1461052d578063c87b56dd146105565761019c565b80638da5cb5b116100c65780638da5cb5b1461046957806395652cfa1461049457806395d89b41146104bd578063a0712d68146104e85761019c565b806370a08231146103ea578063715018a61461042757806385d178f41461043e5761019c565b80632373ac221161015957806342842e0e1161013357806342842e0e1461032e578063453c2310146103575780636352211e146103825780636817c76c146103bf5761019c565b80632373ac22146102c557806323b872dd146102ee5780633ccfd60b146103175761019c565b80630116bc2d146101a157806301ffc9a7146101cc57806306fdde0314610209578063081812fc14610234578063095ea7b31461027157806318160ddd1461029a575b600080fd5b3480156101ad57600080fd5b506101b6610661565b6040516101c391906128f0565b60405180910390f35b3480156101d857600080fd5b506101f360048036038101906101ee919061232d565b610674565b60405161020091906128f0565b60405180910390f35b34801561021557600080fd5b5061021e610756565b60405161022b919061290b565b60405180910390f35b34801561024057600080fd5b5061025b600480360381019061025691906123c4565b6107e8565b604051610268919061286e565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906122c8565b61082e565b005b3480156102a657600080fd5b506102af610946565b6040516102bc9190612b8d565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e79190612304565b61094c565b005b3480156102fa57600080fd5b50610315600480360381019061031091906121c2565b610971565b005b34801561032357600080fd5b5061032c6109d1565b005b34801561033a57600080fd5b50610355600480360381019061035091906121c2565b610aaa565b005b34801561036357600080fd5b5061036c610aca565b6040516103799190612b8d565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a491906123c4565b610ad0565b6040516103b6919061286e565b60405180910390f35b3480156103cb57600080fd5b506103d4610b82565b6040516103e19190612b8d565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c919061215d565b610b88565b60405161041e9190612b8d565b60405180910390f35b34801561043357600080fd5b5061043c610bd1565b005b34801561044a57600080fd5b50610453610be5565b6040516104609190612889565b60405180910390f35b34801561047557600080fd5b5061047e610c0b565b60405161048b919061286e565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b6919061237f565b610c35565b005b3480156104c957600080fd5b506104d2610c53565b6040516104df919061290b565b60405180910390f35b61050260048036038101906104fd91906123c4565b610ce5565b005b34801561051057600080fd5b5061052b6004803603810190610526919061228c565b610f47565b005b34801561053957600080fd5b50610554600480360381019061054f9190612211565b610f5d565b005b34801561056257600080fd5b5061057d600480360381019061057891906123c4565b610fbf565b60405161058a919061290b565b60405180910390f35b34801561059f57600080fd5b506105a861103b565b6040516105b59190612b8d565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e09190612186565b611041565b6040516105f291906128f0565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d919061215d565b6110d5565b60405161062f9190612b8d565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a919061215d565b6110ed565b005b600c60009054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061074f575061074e82611171565b5b9050919050565b60606000805461076590612e3e565b80601f016020809104026020016040519081016040528092919081815260200182805461079190612e3e565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60006107f3826111db565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083982610ad0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a190612b0d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108c9611226565b73ffffffffffffffffffffffffffffffffffffffff1614806108f857506108f7816108f2611226565b611041565b5b610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e90612a4d565b60405180910390fd5b610941838361122e565b505050565b60095481565b6109546112e7565b80600c60006101000a81548160ff02191690831515021790555050565b61098261097c611226565b82611365565b6109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b890612b2d565b60405180910390fd5b6109cc8383836113fa565b505050565b6109d96112e7565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610a2190612859565b60006040518083038185875af1925050503d8060008114610a5e576040519150601f19603f3d011682016040523d82523d6000602084013e610a63565b606091505b5050905080610aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9e90612b6d565b60405180910390fd5b50565b610ac583838360405180602001604052806000815250610f5d565b505050565b600b5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090612aed565b60405180910390fd5b80915050919050565b60085481565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bd96112e7565b610be36000611661565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610c3d6112e7565b8181600d9190610c4e929190611f9f565b505050565b606060018054610c6290612e3e565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8e90612e3e565b8015610cdb5780601f10610cb057610100808354040283529160200191610cdb565b820191906000526020600020905b815481529060010190602001808311610cbe57829003601f168201915b5050505050905090565b600c60009054906101000a900460ff16610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b9061296d565b60405180910390fd5b60085481610d429190612ce8565b3414610d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7a90612a8d565b60405180910390fd5b600a5481600954610d949190612c61565b1115610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc90612a2d565b60405180910390fd5b600b5481600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e239190612c61565b1115610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b90612aad565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610eb490612ea1565b919050555060006001600954610eca9190612c61565b905060096000815480929190610edf90612ea1565b9190505550610eee3382611727565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610f3e90612ea1565b91905055505050565b610f59610f52611226565b8383611745565b5050565b610f6e610f68611226565b83611365565b610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa490612b2d565b60405180910390fd5b610fb9848484846118b2565b50505050565b6060610fca8261190e565b611009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100090612b4d565b60405180910390fd5b600d6110148361197a565b60405160200161102592919061282a565b6040516020818303038152906040529050919050565b600a5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f6020528060005260406000206000915090505481565b6110f56112e7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115c9061298d565b60405180910390fd5b61116e81611661565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6111e48161190e565b611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a90612aed565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166112a183610ad0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6112ef611226565b73ffffffffffffffffffffffffffffffffffffffff1661130d610c0b565b73ffffffffffffffffffffffffffffffffffffffff1614611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a90612acd565b60405180910390fd5b565b60008061137183610ad0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113b357506113b28185611041565b5b806113f157508373ffffffffffffffffffffffffffffffffffffffff166113d9846107e8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661141a82610ad0565b73ffffffffffffffffffffffffffffffffffffffff1614611470576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611467906129ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d7906129ed565b60405180910390fd5b6114eb838383611b27565b6114f660008261122e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115469190612d42565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461159d9190612c61565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461165c838383611ba6565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611741828260405180602001604052806000815250611bab565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ab90612a0d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118a591906128f0565b60405180910390a3505050565b6118bd8484846113fa565b6118c984848484611c06565b611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff9061294d565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060008214156119c2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611b22565b600082905060005b600082146119f45780806119dd90612ea1565b915050600a826119ed9190612cb7565b91506119ca565b60008167ffffffffffffffff811115611a36577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a685781602001600182028036833780820191505090505b5090505b60008514611b1b57600182611a819190612d42565b9150600a85611a909190612eea565b6030611a9c9190612c61565b60f81b818381518110611ad8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611b149190612cb7565b9450611a6c565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d9061292d565b60405180910390fd5b611ba1838383611d9d565b505050565b505050565b611bb58383611da2565b611bc26000848484611c06565b611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf89061294d565b60405180910390fd5b505050565b6000611c278473ffffffffffffffffffffffffffffffffffffffff16611f7c565b15611d90578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c50611226565b8786866040518563ffffffff1660e01b8152600401611c7294939291906128a4565b602060405180830381600087803b158015611c8c57600080fd5b505af1925050508015611cbd57506040513d601f19601f82011682018060405250810190611cba9190612356565b60015b611d40573d8060008114611ced576040519150601f19603f3d011682016040523d82523d6000602084013e611cf2565b606091505b50600081511415611d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2f9061294d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611d95565b600190505b949350505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0990612a6d565b60405180910390fd5b611e1b8161190e565b15611e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e52906129cd565b60405180910390fd5b611e6760008383611b27565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eb79190612c61565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f7860008383611ba6565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611fab90612e3e565b90600052602060002090601f016020900481019282611fcd5760008555612014565b82601f10611fe657803560ff1916838001178555612014565b82800160010185558215612014579182015b82811115612013578235825591602001919060010190611ff8565b5b5090506120219190612025565b5090565b5b8082111561203e576000816000905550600101612026565b5090565b600061205561205084612bcd565b612ba8565b90508281526020810184848401111561206d57600080fd5b612078848285612dfc565b509392505050565b60008135905061208f8161344f565b92915050565b6000813590506120a481613466565b92915050565b6000813590506120b98161347d565b92915050565b6000815190506120ce8161347d565b92915050565b600082601f8301126120e557600080fd5b81356120f5848260208601612042565b91505092915050565b60008083601f84011261211057600080fd5b8235905067ffffffffffffffff81111561212957600080fd5b60208301915083600182028301111561214157600080fd5b9250929050565b60008135905061215781613494565b92915050565b60006020828403121561216f57600080fd5b600061217d84828501612080565b91505092915050565b6000806040838503121561219957600080fd5b60006121a785828601612080565b92505060206121b885828601612080565b9150509250929050565b6000806000606084860312156121d757600080fd5b60006121e586828701612080565b93505060206121f686828701612080565b925050604061220786828701612148565b9150509250925092565b6000806000806080858703121561222757600080fd5b600061223587828801612080565b945050602061224687828801612080565b935050604061225787828801612148565b925050606085013567ffffffffffffffff81111561227457600080fd5b612280878288016120d4565b91505092959194509250565b6000806040838503121561229f57600080fd5b60006122ad85828601612080565b92505060206122be85828601612095565b9150509250929050565b600080604083850312156122db57600080fd5b60006122e985828601612080565b92505060206122fa85828601612148565b9150509250929050565b60006020828403121561231657600080fd5b600061232484828501612095565b91505092915050565b60006020828403121561233f57600080fd5b600061234d848285016120aa565b91505092915050565b60006020828403121561236857600080fd5b6000612376848285016120bf565b91505092915050565b6000806020838503121561239257600080fd5b600083013567ffffffffffffffff8111156123ac57600080fd5b6123b8858286016120fe565b92509250509250929050565b6000602082840312156123d657600080fd5b60006123e484828501612148565b91505092915050565b6123f681612d88565b82525050565b61240581612d76565b82525050565b61241481612d9a565b82525050565b600061242582612c13565b61242f8185612c29565b935061243f818560208601612e0b565b61244881612fd7565b840191505092915050565b600061245e82612c1e565b6124688185612c45565b9350612478818560208601612e0b565b61248181612fd7565b840191505092915050565b600061249782612c1e565b6124a18185612c56565b93506124b1818560208601612e0b565b80840191505092915050565b600081546124ca81612e3e565b6124d48186612c56565b945060018216600081146124ef576001811461250057612533565b60ff19831686528186019350612533565b61250985612bfe565b60005b8381101561252b5781548189015260018201915060208101905061250c565b838801955050505b50505092915050565b6000612549601883612c45565b915061255482612fe8565b602082019050919050565b600061256c603283612c45565b915061257782613011565b604082019050919050565b600061258f601383612c45565b915061259a82613060565b602082019050919050565b60006125b2602683612c45565b91506125bd82613089565b604082019050919050565b60006125d5602583612c45565b91506125e0826130d8565b604082019050919050565b60006125f8601c83612c45565b915061260382613127565b602082019050919050565b600061261b602483612c45565b915061262682613150565b604082019050919050565b600061263e601983612c45565b91506126498261319f565b602082019050919050565b6000612661600883612c45565b915061266c826131c8565b602082019050919050565b6000612684600183612c3a565b915061268f826131f1565b600182019050919050565b60006126a7603e83612c45565b91506126b28261321a565b604082019050919050565b60006126ca602083612c45565b91506126d582613269565b602082019050919050565b60006126ed601183612c45565b91506126f882613292565b602082019050919050565b6000612710600583612c56565b915061271b826132bb565b600582019050919050565b6000612733601183612c45565b915061273e826132e4565b602082019050919050565b6000612756602083612c45565b91506127618261330d565b602082019050919050565b6000612779601883612c45565b915061278482613336565b602082019050919050565b600061279c602183612c45565b91506127a78261335f565b604082019050919050565b60006127bf602e83612c45565b91506127ca826133ae565b604082019050919050565b60006127e2601583612c45565b91506127ed826133fd565b602082019050919050565b6000612805600f83612c45565b915061281082613426565b602082019050919050565b61282481612df2565b82525050565b600061283682856124bd565b9150612842828461248c565b915061284d82612703565b91508190509392505050565b600061286482612677565b9150819050919050565b600060208201905061288360008301846123fc565b92915050565b600060208201905061289e60008301846123ed565b92915050565b60006080820190506128b960008301876123fc565b6128c660208301866123fc565b6128d3604083018561281b565b81810360608301526128e5818461241a565b905095945050505050565b6000602082019050612905600083018461240b565b92915050565b600060208201905081810360008301526129258184612453565b905092915050565b600060208201905081810360008301526129468161253c565b9050919050565b600060208201905081810360008301526129668161255f565b9050919050565b6000602082019050818103600083015261298681612582565b9050919050565b600060208201905081810360008301526129a6816125a5565b9050919050565b600060208201905081810360008301526129c6816125c8565b9050919050565b600060208201905081810360008301526129e6816125eb565b9050919050565b60006020820190508181036000830152612a068161260e565b9050919050565b60006020820190508181036000830152612a2681612631565b9050919050565b60006020820190508181036000830152612a4681612654565b9050919050565b60006020820190508181036000830152612a668161269a565b9050919050565b60006020820190508181036000830152612a86816126bd565b9050919050565b60006020820190508181036000830152612aa6816126e0565b9050919050565b60006020820190508181036000830152612ac681612726565b9050919050565b60006020820190508181036000830152612ae681612749565b9050919050565b60006020820190508181036000830152612b068161276c565b9050919050565b60006020820190508181036000830152612b268161278f565b9050919050565b60006020820190508181036000830152612b46816127b2565b9050919050565b60006020820190508181036000830152612b66816127d5565b9050919050565b60006020820190508181036000830152612b86816127f8565b9050919050565b6000602082019050612ba2600083018461281b565b92915050565b6000612bb2612bc3565b9050612bbe8282612e70565b919050565b6000604051905090565b600067ffffffffffffffff821115612be857612be7612fa8565b5b612bf182612fd7565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c6c82612df2565b9150612c7783612df2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612cac57612cab612f1b565b5b828201905092915050565b6000612cc282612df2565b9150612ccd83612df2565b925082612cdd57612cdc612f4a565b5b828204905092915050565b6000612cf382612df2565b9150612cfe83612df2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d3757612d36612f1b565b5b828202905092915050565b6000612d4d82612df2565b9150612d5883612df2565b925082821015612d6b57612d6a612f1b565b5b828203905092915050565b6000612d8182612dd2565b9050919050565b6000612d9382612dd2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e29578082015181840152602081019050612e0e565b83811115612e38576000848401525b50505050565b60006002820490506001821680612e5657607f821691505b60208210811415612e6a57612e69612f79565b5b50919050565b612e7982612fd7565b810181811067ffffffffffffffff82111715612e9857612e97612fa8565b5b80604052505050565b6000612eac82612df2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612edf57612ede612f1b565b5b600182019050919050565b6000612ef582612df2565b9150612f0083612df2565b925082612f1057612f0f612f4a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4572723a20746f6b656e20697320534f554c20424f554e440000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f6d696e74696e67206e6f7420656e61626c656400000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f2000000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f77726f6e67206e6f7420656e61626c6564000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f657863656564206d61782077616c6c6574000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f74206578697374210000000000000000000000600082015250565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b61345881612d76565b811461346357600080fd5b50565b61346f81612d9a565b811461347a57600080fd5b50565b61348681612da6565b811461349157600080fd5b50565b61349d81612df2565b81146134a857600080fd5b5056fea264697066735822122043fa600746471e7c8088660c7a33555e829f72487c3b4145a7669f90c55d63b864736f6c63430008040033
Deployed Bytecode
0x60806040526004361061019c5760003560e01c806370a08231116100ec578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610593578063e985e9c5146105be578063f0293fd3146105fb578063f2fde38b146106385761019c565b8063a22cb46514610504578063b88d4fde1461052d578063c87b56dd146105565761019c565b80638da5cb5b116100c65780638da5cb5b1461046957806395652cfa1461049457806395d89b41146104bd578063a0712d68146104e85761019c565b806370a08231146103ea578063715018a61461042757806385d178f41461043e5761019c565b80632373ac221161015957806342842e0e1161013357806342842e0e1461032e578063453c2310146103575780636352211e146103825780636817c76c146103bf5761019c565b80632373ac22146102c557806323b872dd146102ee5780633ccfd60b146103175761019c565b80630116bc2d146101a157806301ffc9a7146101cc57806306fdde0314610209578063081812fc14610234578063095ea7b31461027157806318160ddd1461029a575b600080fd5b3480156101ad57600080fd5b506101b6610661565b6040516101c391906128f0565b60405180910390f35b3480156101d857600080fd5b506101f360048036038101906101ee919061232d565b610674565b60405161020091906128f0565b60405180910390f35b34801561021557600080fd5b5061021e610756565b60405161022b919061290b565b60405180910390f35b34801561024057600080fd5b5061025b600480360381019061025691906123c4565b6107e8565b604051610268919061286e565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906122c8565b61082e565b005b3480156102a657600080fd5b506102af610946565b6040516102bc9190612b8d565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e79190612304565b61094c565b005b3480156102fa57600080fd5b50610315600480360381019061031091906121c2565b610971565b005b34801561032357600080fd5b5061032c6109d1565b005b34801561033a57600080fd5b50610355600480360381019061035091906121c2565b610aaa565b005b34801561036357600080fd5b5061036c610aca565b6040516103799190612b8d565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a491906123c4565b610ad0565b6040516103b6919061286e565b60405180910390f35b3480156103cb57600080fd5b506103d4610b82565b6040516103e19190612b8d565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c919061215d565b610b88565b60405161041e9190612b8d565b60405180910390f35b34801561043357600080fd5b5061043c610bd1565b005b34801561044a57600080fd5b50610453610be5565b6040516104609190612889565b60405180910390f35b34801561047557600080fd5b5061047e610c0b565b60405161048b919061286e565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b6919061237f565b610c35565b005b3480156104c957600080fd5b506104d2610c53565b6040516104df919061290b565b60405180910390f35b61050260048036038101906104fd91906123c4565b610ce5565b005b34801561051057600080fd5b5061052b6004803603810190610526919061228c565b610f47565b005b34801561053957600080fd5b50610554600480360381019061054f9190612211565b610f5d565b005b34801561056257600080fd5b5061057d600480360381019061057891906123c4565b610fbf565b60405161058a919061290b565b60405180910390f35b34801561059f57600080fd5b506105a861103b565b6040516105b59190612b8d565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e09190612186565b611041565b6040516105f291906128f0565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d919061215d565b6110d5565b60405161062f9190612b8d565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a919061215d565b6110ed565b005b600c60009054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061074f575061074e82611171565b5b9050919050565b60606000805461076590612e3e565b80601f016020809104026020016040519081016040528092919081815260200182805461079190612e3e565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60006107f3826111db565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083982610ad0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a190612b0d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108c9611226565b73ffffffffffffffffffffffffffffffffffffffff1614806108f857506108f7816108f2611226565b611041565b5b610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e90612a4d565b60405180910390fd5b610941838361122e565b505050565b60095481565b6109546112e7565b80600c60006101000a81548160ff02191690831515021790555050565b61098261097c611226565b82611365565b6109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b890612b2d565b60405180910390fd5b6109cc8383836113fa565b505050565b6109d96112e7565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610a2190612859565b60006040518083038185875af1925050503d8060008114610a5e576040519150601f19603f3d011682016040523d82523d6000602084013e610a63565b606091505b5050905080610aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9e90612b6d565b60405180910390fd5b50565b610ac583838360405180602001604052806000815250610f5d565b505050565b600b5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090612aed565b60405180910390fd5b80915050919050565b60085481565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bd96112e7565b610be36000611661565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610c3d6112e7565b8181600d9190610c4e929190611f9f565b505050565b606060018054610c6290612e3e565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8e90612e3e565b8015610cdb5780601f10610cb057610100808354040283529160200191610cdb565b820191906000526020600020905b815481529060010190602001808311610cbe57829003601f168201915b5050505050905090565b600c60009054906101000a900460ff16610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b9061296d565b60405180910390fd5b60085481610d429190612ce8565b3414610d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7a90612a8d565b60405180910390fd5b600a5481600954610d949190612c61565b1115610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc90612a2d565b60405180910390fd5b600b5481600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e239190612c61565b1115610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b90612aad565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610eb490612ea1565b919050555060006001600954610eca9190612c61565b905060096000815480929190610edf90612ea1565b9190505550610eee3382611727565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610f3e90612ea1565b91905055505050565b610f59610f52611226565b8383611745565b5050565b610f6e610f68611226565b83611365565b610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa490612b2d565b60405180910390fd5b610fb9848484846118b2565b50505050565b6060610fca8261190e565b611009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100090612b4d565b60405180910390fd5b600d6110148361197a565b60405160200161102592919061282a565b6040516020818303038152906040529050919050565b600a5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f6020528060005260406000206000915090505481565b6110f56112e7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115c9061298d565b60405180910390fd5b61116e81611661565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6111e48161190e565b611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a90612aed565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166112a183610ad0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6112ef611226565b73ffffffffffffffffffffffffffffffffffffffff1661130d610c0b565b73ffffffffffffffffffffffffffffffffffffffff1614611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a90612acd565b60405180910390fd5b565b60008061137183610ad0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113b357506113b28185611041565b5b806113f157508373ffffffffffffffffffffffffffffffffffffffff166113d9846107e8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661141a82610ad0565b73ffffffffffffffffffffffffffffffffffffffff1614611470576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611467906129ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d7906129ed565b60405180910390fd5b6114eb838383611b27565b6114f660008261122e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115469190612d42565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461159d9190612c61565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461165c838383611ba6565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611741828260405180602001604052806000815250611bab565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ab90612a0d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118a591906128f0565b60405180910390a3505050565b6118bd8484846113fa565b6118c984848484611c06565b611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff9061294d565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060008214156119c2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611b22565b600082905060005b600082146119f45780806119dd90612ea1565b915050600a826119ed9190612cb7565b91506119ca565b60008167ffffffffffffffff811115611a36577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a685781602001600182028036833780820191505090505b5090505b60008514611b1b57600182611a819190612d42565b9150600a85611a909190612eea565b6030611a9c9190612c61565b60f81b818381518110611ad8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611b149190612cb7565b9450611a6c565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d9061292d565b60405180910390fd5b611ba1838383611d9d565b505050565b505050565b611bb58383611da2565b611bc26000848484611c06565b611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf89061294d565b60405180910390fd5b505050565b6000611c278473ffffffffffffffffffffffffffffffffffffffff16611f7c565b15611d90578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c50611226565b8786866040518563ffffffff1660e01b8152600401611c7294939291906128a4565b602060405180830381600087803b158015611c8c57600080fd5b505af1925050508015611cbd57506040513d601f19601f82011682018060405250810190611cba9190612356565b60015b611d40573d8060008114611ced576040519150601f19603f3d011682016040523d82523d6000602084013e611cf2565b606091505b50600081511415611d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2f9061294d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611d95565b600190505b949350505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0990612a6d565b60405180910390fd5b611e1b8161190e565b15611e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e52906129cd565b60405180910390fd5b611e6760008383611b27565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eb79190612c61565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f7860008383611ba6565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611fab90612e3e565b90600052602060002090601f016020900481019282611fcd5760008555612014565b82601f10611fe657803560ff1916838001178555612014565b82800160010185558215612014579182015b82811115612013578235825591602001919060010190611ff8565b5b5090506120219190612025565b5090565b5b8082111561203e576000816000905550600101612026565b5090565b600061205561205084612bcd565b612ba8565b90508281526020810184848401111561206d57600080fd5b612078848285612dfc565b509392505050565b60008135905061208f8161344f565b92915050565b6000813590506120a481613466565b92915050565b6000813590506120b98161347d565b92915050565b6000815190506120ce8161347d565b92915050565b600082601f8301126120e557600080fd5b81356120f5848260208601612042565b91505092915050565b60008083601f84011261211057600080fd5b8235905067ffffffffffffffff81111561212957600080fd5b60208301915083600182028301111561214157600080fd5b9250929050565b60008135905061215781613494565b92915050565b60006020828403121561216f57600080fd5b600061217d84828501612080565b91505092915050565b6000806040838503121561219957600080fd5b60006121a785828601612080565b92505060206121b885828601612080565b9150509250929050565b6000806000606084860312156121d757600080fd5b60006121e586828701612080565b93505060206121f686828701612080565b925050604061220786828701612148565b9150509250925092565b6000806000806080858703121561222757600080fd5b600061223587828801612080565b945050602061224687828801612080565b935050604061225787828801612148565b925050606085013567ffffffffffffffff81111561227457600080fd5b612280878288016120d4565b91505092959194509250565b6000806040838503121561229f57600080fd5b60006122ad85828601612080565b92505060206122be85828601612095565b9150509250929050565b600080604083850312156122db57600080fd5b60006122e985828601612080565b92505060206122fa85828601612148565b9150509250929050565b60006020828403121561231657600080fd5b600061232484828501612095565b91505092915050565b60006020828403121561233f57600080fd5b600061234d848285016120aa565b91505092915050565b60006020828403121561236857600080fd5b6000612376848285016120bf565b91505092915050565b6000806020838503121561239257600080fd5b600083013567ffffffffffffffff8111156123ac57600080fd5b6123b8858286016120fe565b92509250509250929050565b6000602082840312156123d657600080fd5b60006123e484828501612148565b91505092915050565b6123f681612d88565b82525050565b61240581612d76565b82525050565b61241481612d9a565b82525050565b600061242582612c13565b61242f8185612c29565b935061243f818560208601612e0b565b61244881612fd7565b840191505092915050565b600061245e82612c1e565b6124688185612c45565b9350612478818560208601612e0b565b61248181612fd7565b840191505092915050565b600061249782612c1e565b6124a18185612c56565b93506124b1818560208601612e0b565b80840191505092915050565b600081546124ca81612e3e565b6124d48186612c56565b945060018216600081146124ef576001811461250057612533565b60ff19831686528186019350612533565b61250985612bfe565b60005b8381101561252b5781548189015260018201915060208101905061250c565b838801955050505b50505092915050565b6000612549601883612c45565b915061255482612fe8565b602082019050919050565b600061256c603283612c45565b915061257782613011565b604082019050919050565b600061258f601383612c45565b915061259a82613060565b602082019050919050565b60006125b2602683612c45565b91506125bd82613089565b604082019050919050565b60006125d5602583612c45565b91506125e0826130d8565b604082019050919050565b60006125f8601c83612c45565b915061260382613127565b602082019050919050565b600061261b602483612c45565b915061262682613150565b604082019050919050565b600061263e601983612c45565b91506126498261319f565b602082019050919050565b6000612661600883612c45565b915061266c826131c8565b602082019050919050565b6000612684600183612c3a565b915061268f826131f1565b600182019050919050565b60006126a7603e83612c45565b91506126b28261321a565b604082019050919050565b60006126ca602083612c45565b91506126d582613269565b602082019050919050565b60006126ed601183612c45565b91506126f882613292565b602082019050919050565b6000612710600583612c56565b915061271b826132bb565b600582019050919050565b6000612733601183612c45565b915061273e826132e4565b602082019050919050565b6000612756602083612c45565b91506127618261330d565b602082019050919050565b6000612779601883612c45565b915061278482613336565b602082019050919050565b600061279c602183612c45565b91506127a78261335f565b604082019050919050565b60006127bf602e83612c45565b91506127ca826133ae565b604082019050919050565b60006127e2601583612c45565b91506127ed826133fd565b602082019050919050565b6000612805600f83612c45565b915061281082613426565b602082019050919050565b61282481612df2565b82525050565b600061283682856124bd565b9150612842828461248c565b915061284d82612703565b91508190509392505050565b600061286482612677565b9150819050919050565b600060208201905061288360008301846123fc565b92915050565b600060208201905061289e60008301846123ed565b92915050565b60006080820190506128b960008301876123fc565b6128c660208301866123fc565b6128d3604083018561281b565b81810360608301526128e5818461241a565b905095945050505050565b6000602082019050612905600083018461240b565b92915050565b600060208201905081810360008301526129258184612453565b905092915050565b600060208201905081810360008301526129468161253c565b9050919050565b600060208201905081810360008301526129668161255f565b9050919050565b6000602082019050818103600083015261298681612582565b9050919050565b600060208201905081810360008301526129a6816125a5565b9050919050565b600060208201905081810360008301526129c6816125c8565b9050919050565b600060208201905081810360008301526129e6816125eb565b9050919050565b60006020820190508181036000830152612a068161260e565b9050919050565b60006020820190508181036000830152612a2681612631565b9050919050565b60006020820190508181036000830152612a4681612654565b9050919050565b60006020820190508181036000830152612a668161269a565b9050919050565b60006020820190508181036000830152612a86816126bd565b9050919050565b60006020820190508181036000830152612aa6816126e0565b9050919050565b60006020820190508181036000830152612ac681612726565b9050919050565b60006020820190508181036000830152612ae681612749565b9050919050565b60006020820190508181036000830152612b068161276c565b9050919050565b60006020820190508181036000830152612b268161278f565b9050919050565b60006020820190508181036000830152612b46816127b2565b9050919050565b60006020820190508181036000830152612b66816127d5565b9050919050565b60006020820190508181036000830152612b86816127f8565b9050919050565b6000602082019050612ba2600083018461281b565b92915050565b6000612bb2612bc3565b9050612bbe8282612e70565b919050565b6000604051905090565b600067ffffffffffffffff821115612be857612be7612fa8565b5b612bf182612fd7565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c6c82612df2565b9150612c7783612df2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612cac57612cab612f1b565b5b828201905092915050565b6000612cc282612df2565b9150612ccd83612df2565b925082612cdd57612cdc612f4a565b5b828204905092915050565b6000612cf382612df2565b9150612cfe83612df2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d3757612d36612f1b565b5b828202905092915050565b6000612d4d82612df2565b9150612d5883612df2565b925082821015612d6b57612d6a612f1b565b5b828203905092915050565b6000612d8182612dd2565b9050919050565b6000612d9382612dd2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e29578082015181840152602081019050612e0e565b83811115612e38576000848401525b50505050565b60006002820490506001821680612e5657607f821691505b60208210811415612e6a57612e69612f79565b5b50919050565b612e7982612fd7565b810181811067ffffffffffffffff82111715612e9857612e97612fa8565b5b80604052505050565b6000612eac82612df2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612edf57612ede612f1b565b5b600182019050919050565b6000612ef582612df2565b9150612f0083612df2565b925082612f1057612f0f612f4a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4572723a20746f6b656e20697320534f554c20424f554e440000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f6d696e74696e67206e6f7420656e61626c656400000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f2000000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f77726f6e67206e6f7420656e61626c6564000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f657863656564206d61782077616c6c6574000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f74206578697374210000000000000000000000600082015250565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b61345881612d76565b811461346357600080fd5b50565b61346f81612d9a565b811461347a57600080fd5b50565b61348681612da6565b811461349157600080fd5b50565b61349d81612df2565b81146134a857600080fd5b5056fea264697066735822122043fa600746471e7c8088660c7a33555e829f72487c3b4145a7669f90c55d63b864736f6c63430008040033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.