ERC-721
Overview
Max Total Supply
0 EDS
Holders
960
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 EDSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EthernalDragons
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/[email protected]/token/ERC721/ERC721.sol"; import "@openzeppelin/[email protected]/access/Ownable.sol"; import "@openzeppelin/[email protected]/utils/Strings.sol"; contract EthernalDragons is ERC721, Ownable { constructor() ERC721("EthernalDragons", "EDS") {} string private _uri = "https://refractions.azureedge.net/refractions/metadata/ethernaldragons/"; function setURI(string memory newuri) public onlyOwner { _uri = newuri; } function mintOwner(address account, uint256 id, bytes memory data) public onlyOwner { _safeMint(account, id, data); } function mintOwnerBatch(address to, uint256[] memory ids, bytes memory data) public onlyOwner { for (uint256 i = 0; i < ids.length; i++) { mintOwner(to, ids[i], data); } } function airdrop(address[] memory to, uint256[] memory id, bytes memory data) public onlyOwner { require(to.length == id.length, "Lengths must match"); for (uint256 i = 0; i < to.length; i++) { mintOwner(to[i], id[i], data); } } function _baseURI() internal view override returns (string memory) { return _uri; } 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, Strings.toString(tokenId),"/metadata.json")) : ""; } }
// 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 (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts 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/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 (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/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 (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" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"id","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mintOwnerBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052604051806080016040528060478152602001620032f6604791396007908051906020019062000035929190620001d8565b503480156200004357600080fd5b506040518060400160405280600f81526020017f45746865726e616c447261676f6e7300000000000000000000000000000000008152506040518060400160405280600381526020017f45445300000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000c8929190620001d8565b508060019080519060200190620000e1929190620001d8565b50505062000104620000f86200010a60201b60201c565b6200011260201b60201c565b620002ed565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001e69062000288565b90600052602060002090601f0160209004810192826200020a576000855562000256565b82601f106200022557805160ff191683800117855562000256565b8280016001018555821562000256579182015b828111156200025557825182559160200191906001019062000238565b5b50905062000265919062000269565b5090565b5b80821115620002845760008160009055506001016200026a565b5090565b60006002820490506001821680620002a157607f821691505b60208210811415620002b857620002b7620002be565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612ff980620002fd6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80638da5cb5b116100ad578063c09e422111610071578063c09e422114610319578063c87b56dd14610335578063e508b5bd14610365578063e985e9c514610381578063f2fde38b146103b15761012c565b80638da5cb5b1461028957806395d89b41146102a7578063a22cb465146102c5578063b88d4fde146102e1578063bc1052de146102fd5761012c565b806323b872dd116100f457806323b872dd146101e757806342842e0e146102035780636352211e1461021f57806370a082311461024f578063715018a61461027f5761012c565b806301ffc9a71461013157806302fe53051461016157806306fdde031461017d578063081812fc1461019b578063095ea7b3146101cb575b600080fd5b61014b600480360381019061014691906120f0565b6103cd565b6040516101589190612533565b60405180910390f35b61017b6004803603810190610176919061214a565b6104af565b005b6101856104d1565b604051610192919061254e565b60405180910390f35b6101b560048036038101906101b09190612193565b610563565b6040516101c291906124cc565b60405180910390f35b6101e560048036038101906101e09190611f9a565b6105a9565b005b61020160048036038101906101fc9190611df9565b6106c1565b005b61021d60048036038101906102189190611df9565b610721565b005b61023960048036038101906102349190612193565b610741565b60405161024691906124cc565b60405180910390f35b61026960048036038101906102649190611d8c565b6107f3565b6040516102769190612730565b60405180910390f35b6102876108ab565b005b6102916108bf565b60405161029e91906124cc565b60405180910390f35b6102af6108e9565b6040516102bc919061254e565b60405180910390f35b6102df60048036038101906102da9190611f5a565b61097b565b005b6102fb60048036038101906102f69190611e4c565b610991565b005b61031760048036038101906103129190612049565b6109f3565b005b610333600480360381019061032e9190611ecf565b610aa3565b005b61034f600480360381019061034a9190612193565b610af5565b60405161035c919061254e565b60405180910390f35b61037f600480360381019061037a9190611fda565b610b5d565b005b61039b60048036038101906103969190611db9565b610b75565b6040516103a89190612533565b60405180910390f35b6103cb60048036038101906103c69190611d8c565b610c09565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061049857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104a857506104a782610c8d565b5b9050919050565b6104b7610cf7565b80600790805190602001906104cd929190611a64565b5050565b6060600080546104e0906129de565b80601f016020809104026020016040519081016040528092919081815260200182805461050c906129de565b80156105595780601f1061052e57610100808354040283529160200191610559565b820191906000526020600020905b81548152906001019060200180831161053c57829003601f168201915b5050505050905090565b600061056e82610d75565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105b482610741565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061c906126f0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610644610dc0565b73ffffffffffffffffffffffffffffffffffffffff16148061067357506106728161066d610dc0565b610b75565b5b6106b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a990612670565b60405180910390fd5b6106bc8383610dc8565b505050565b6106d26106cc610dc0565b82610e81565b610711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070890612710565b60405180910390fd5b61071c838383610f16565b505050565b61073c83838360405180602001604052806000815250610991565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e1906126d0565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085b90612650565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108b3610cf7565b6108bd600061117d565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546108f8906129de565b80601f0160208091040260200160405190810160405280929190818152602001828054610924906129de565b80156109715780601f1061094657610100808354040283529160200191610971565b820191906000526020600020905b81548152906001019060200180831161095457829003601f168201915b5050505050905090565b61098d610986610dc0565b8383611243565b5050565b6109a261099c610dc0565b83610e81565b6109e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d890612710565b60405180910390fd5b6109ed848484846113b0565b50505050565b6109fb610cf7565b8151835114610a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3690612630565b60405180910390fd5b60005b8351811015610a9d57610a8a848281518110610a6157610a60612b48565b5b6020026020010151848381518110610a7c57610a7b612b48565b5b602002602001015184610b5d565b8080610a9590612a41565b915050610a42565b50505050565b610aab610cf7565b60005b8251811015610aef57610adc84848381518110610ace57610acd612b48565b5b602002602001015184610b5d565b8080610ae790612a41565b915050610aae565b50505050565b6060610b0082610d75565b6000610b0a61140c565b90506000815111610b2a5760405180602001604052806000815250610b55565b80610b348461149e565b604051602001610b4592919061249d565b6040516020818303038152906040525b915050919050565b610b65610cf7565b610b708383836115ff565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610c11610cf7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7890612590565b60405180910390fd5b610c8a8161117d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610cff610dc0565b73ffffffffffffffffffffffffffffffffffffffff16610d1d6108bf565b73ffffffffffffffffffffffffffffffffffffffff1614610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a906126b0565b60405180910390fd5b565b610d7e8161165a565b610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db4906126d0565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610e3b83610741565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610e8d83610741565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610ecf5750610ece8185610b75565b5b80610f0d57508373ffffffffffffffffffffffffffffffffffffffff16610ef584610563565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610f3682610741565b73ffffffffffffffffffffffffffffffffffffffff1614610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f83906125b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff3906125f0565b60405180910390fd5b6110078383836116c6565b611012600082610dc8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461106291906128f4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110b9919061286d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111788383836116cb565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a990612610565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113a39190612533565b60405180910390a3505050565b6113bb848484610f16565b6113c7848484846116d0565b611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd90612570565b60405180910390fd5b50505050565b60606007805461141b906129de565b80601f0160208091040260200160405190810160405280929190818152602001828054611447906129de565b80156114945780601f1061146957610100808354040283529160200191611494565b820191906000526020600020905b81548152906001019060200180831161147757829003601f168201915b5050505050905090565b606060008214156114e6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506115fa565b600082905060005b6000821461151857808061150190612a41565b915050600a8261151191906128c3565b91506114ee565b60008167ffffffffffffffff81111561153457611533612b77565b5b6040519080825280601f01601f1916602001820160405280156115665781602001600182028036833780820191505090505b5090505b600085146115f35760018261157f91906128f4565b9150600a8561158e9190612a8a565b603061159a919061286d565b60f81b8183815181106115b0576115af612b48565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856115ec91906128c3565b945061156a565b8093505050505b919050565b6116098383611867565b61161660008484846116d0565b611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c90612570565b60405180910390fd5b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b60006116f18473ffffffffffffffffffffffffffffffffffffffff16611a41565b1561185a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261171a610dc0565b8786866040518563ffffffff1660e01b815260040161173c94939291906124e7565b602060405180830381600087803b15801561175657600080fd5b505af192505050801561178757506040513d601f19601f82011682018060405250810190611784919061211d565b60015b61180a573d80600081146117b7576040519150601f19603f3d011682016040523d82523d6000602084013e6117bc565b606091505b50600081511415611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f990612570565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061185f565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce90612690565b60405180910390fd5b6118e08161165a565b15611920576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611917906125d0565b60405180910390fd5b61192c600083836116c6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461197c919061286d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a3d600083836116cb565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611a70906129de565b90600052602060002090601f016020900481019282611a925760008555611ad9565b82601f10611aab57805160ff1916838001178555611ad9565b82800160010185558215611ad9579182015b82811115611ad8578251825591602001919060010190611abd565b5b509050611ae69190611aea565b5090565b5b80821115611b03576000816000905550600101611aeb565b5090565b6000611b1a611b1584612770565b61274b565b90508083825260208201905082856020860282011115611b3d57611b3c612bab565b5b60005b85811015611b6d5781611b538882611c6b565b845260208401935060208301925050600181019050611b40565b5050509392505050565b6000611b8a611b858461279c565b61274b565b90508083825260208201905082856020860282011115611bad57611bac612bab565b5b60005b85811015611bdd5781611bc38882611d77565b845260208401935060208301925050600181019050611bb0565b5050509392505050565b6000611bfa611bf5846127c8565b61274b565b905082815260208101848484011115611c1657611c15612bb0565b5b611c2184828561299c565b509392505050565b6000611c3c611c37846127f9565b61274b565b905082815260208101848484011115611c5857611c57612bb0565b5b611c6384828561299c565b509392505050565b600081359050611c7a81612f67565b92915050565b600082601f830112611c9557611c94612ba6565b5b8135611ca5848260208601611b07565b91505092915050565b600082601f830112611cc357611cc2612ba6565b5b8135611cd3848260208601611b77565b91505092915050565b600081359050611ceb81612f7e565b92915050565b600081359050611d0081612f95565b92915050565b600081519050611d1581612f95565b92915050565b600082601f830112611d3057611d2f612ba6565b5b8135611d40848260208601611be7565b91505092915050565b600082601f830112611d5e57611d5d612ba6565b5b8135611d6e848260208601611c29565b91505092915050565b600081359050611d8681612fac565b92915050565b600060208284031215611da257611da1612bba565b5b6000611db084828501611c6b565b91505092915050565b60008060408385031215611dd057611dcf612bba565b5b6000611dde85828601611c6b565b9250506020611def85828601611c6b565b9150509250929050565b600080600060608486031215611e1257611e11612bba565b5b6000611e2086828701611c6b565b9350506020611e3186828701611c6b565b9250506040611e4286828701611d77565b9150509250925092565b60008060008060808587031215611e6657611e65612bba565b5b6000611e7487828801611c6b565b9450506020611e8587828801611c6b565b9350506040611e9687828801611d77565b925050606085013567ffffffffffffffff811115611eb757611eb6612bb5565b5b611ec387828801611d1b565b91505092959194509250565b600080600060608486031215611ee857611ee7612bba565b5b6000611ef686828701611c6b565b935050602084013567ffffffffffffffff811115611f1757611f16612bb5565b5b611f2386828701611cae565b925050604084013567ffffffffffffffff811115611f4457611f43612bb5565b5b611f5086828701611d1b565b9150509250925092565b60008060408385031215611f7157611f70612bba565b5b6000611f7f85828601611c6b565b9250506020611f9085828601611cdc565b9150509250929050565b60008060408385031215611fb157611fb0612bba565b5b6000611fbf85828601611c6b565b9250506020611fd085828601611d77565b9150509250929050565b600080600060608486031215611ff357611ff2612bba565b5b600061200186828701611c6b565b935050602061201286828701611d77565b925050604084013567ffffffffffffffff81111561203357612032612bb5565b5b61203f86828701611d1b565b9150509250925092565b60008060006060848603121561206257612061612bba565b5b600084013567ffffffffffffffff8111156120805761207f612bb5565b5b61208c86828701611c80565b935050602084013567ffffffffffffffff8111156120ad576120ac612bb5565b5b6120b986828701611cae565b925050604084013567ffffffffffffffff8111156120da576120d9612bb5565b5b6120e686828701611d1b565b9150509250925092565b60006020828403121561210657612105612bba565b5b600061211484828501611cf1565b91505092915050565b60006020828403121561213357612132612bba565b5b600061214184828501611d06565b91505092915050565b6000602082840312156121605761215f612bba565b5b600082013567ffffffffffffffff81111561217e5761217d612bb5565b5b61218a84828501611d49565b91505092915050565b6000602082840312156121a9576121a8612bba565b5b60006121b784828501611d77565b91505092915050565b6121c981612928565b82525050565b6121d88161293a565b82525050565b60006121e98261282a565b6121f38185612840565b93506122038185602086016129ab565b61220c81612bbf565b840191505092915050565b600061222282612835565b61222c8185612851565b935061223c8185602086016129ab565b61224581612bbf565b840191505092915050565b600061225b82612835565b6122658185612862565b93506122758185602086016129ab565b80840191505092915050565b600061228e603283612851565b915061229982612bd0565b604082019050919050565b60006122b1602683612851565b91506122bc82612c1f565b604082019050919050565b60006122d4602583612851565b91506122df82612c6e565b604082019050919050565b60006122f7601c83612851565b915061230282612cbd565b602082019050919050565b600061231a600e83612862565b915061232582612ce6565b600e82019050919050565b600061233d602483612851565b915061234882612d0f565b604082019050919050565b6000612360601983612851565b915061236b82612d5e565b602082019050919050565b6000612383601283612851565b915061238e82612d87565b602082019050919050565b60006123a6602983612851565b91506123b182612db0565b604082019050919050565b60006123c9603e83612851565b91506123d482612dff565b604082019050919050565b60006123ec602083612851565b91506123f782612e4e565b602082019050919050565b600061240f602083612851565b915061241a82612e77565b602082019050919050565b6000612432601883612851565b915061243d82612ea0565b602082019050919050565b6000612455602183612851565b915061246082612ec9565b604082019050919050565b6000612478602e83612851565b915061248382612f18565b604082019050919050565b61249781612992565b82525050565b60006124a98285612250565b91506124b58284612250565b91506124c08261230d565b91508190509392505050565b60006020820190506124e160008301846121c0565b92915050565b60006080820190506124fc60008301876121c0565b61250960208301866121c0565b612516604083018561248e565b818103606083015261252881846121de565b905095945050505050565b600060208201905061254860008301846121cf565b92915050565b600060208201905081810360008301526125688184612217565b905092915050565b6000602082019050818103600083015261258981612281565b9050919050565b600060208201905081810360008301526125a9816122a4565b9050919050565b600060208201905081810360008301526125c9816122c7565b9050919050565b600060208201905081810360008301526125e9816122ea565b9050919050565b6000602082019050818103600083015261260981612330565b9050919050565b6000602082019050818103600083015261262981612353565b9050919050565b6000602082019050818103600083015261264981612376565b9050919050565b6000602082019050818103600083015261266981612399565b9050919050565b60006020820190508181036000830152612689816123bc565b9050919050565b600060208201905081810360008301526126a9816123df565b9050919050565b600060208201905081810360008301526126c981612402565b9050919050565b600060208201905081810360008301526126e981612425565b9050919050565b6000602082019050818103600083015261270981612448565b9050919050565b600060208201905081810360008301526127298161246b565b9050919050565b6000602082019050612745600083018461248e565b92915050565b6000612755612766565b90506127618282612a10565b919050565b6000604051905090565b600067ffffffffffffffff82111561278b5761278a612b77565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156127b7576127b6612b77565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156127e3576127e2612b77565b5b6127ec82612bbf565b9050602081019050919050565b600067ffffffffffffffff82111561281457612813612b77565b5b61281d82612bbf565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061287882612992565b915061288383612992565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156128b8576128b7612abb565b5b828201905092915050565b60006128ce82612992565b91506128d983612992565b9250826128e9576128e8612aea565b5b828204905092915050565b60006128ff82612992565b915061290a83612992565b92508282101561291d5761291c612abb565b5b828203905092915050565b600061293382612972565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156129c95780820151818401526020810190506129ae565b838111156129d8576000848401525b50505050565b600060028204905060018216806129f657607f821691505b60208210811415612a0a57612a09612b19565b5b50919050565b612a1982612bbf565b810181811067ffffffffffffffff82111715612a3857612a37612b77565b5b80604052505050565b6000612a4c82612992565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612a7f57612a7e612abb565b5b600182019050919050565b6000612a9582612992565b9150612aa083612992565b925082612ab057612aaf612aea565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f2f6d657461646174612e6a736f6e000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4c656e67746873206d757374206d617463680000000000000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b612f7081612928565b8114612f7b57600080fd5b50565b612f878161293a565b8114612f9257600080fd5b50565b612f9e81612946565b8114612fa957600080fd5b50565b612fb581612992565b8114612fc057600080fd5b5056fea2646970667358221220829961272993a51000f37551a9d329f962c879ab953c4e967b99fbb7886a8d5f64736f6c6343000807003368747470733a2f2f72656672616374696f6e732e617a757265656467652e6e65742f72656672616374696f6e732f6d657461646174612f65746865726e616c647261676f6e732f
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80638da5cb5b116100ad578063c09e422111610071578063c09e422114610319578063c87b56dd14610335578063e508b5bd14610365578063e985e9c514610381578063f2fde38b146103b15761012c565b80638da5cb5b1461028957806395d89b41146102a7578063a22cb465146102c5578063b88d4fde146102e1578063bc1052de146102fd5761012c565b806323b872dd116100f457806323b872dd146101e757806342842e0e146102035780636352211e1461021f57806370a082311461024f578063715018a61461027f5761012c565b806301ffc9a71461013157806302fe53051461016157806306fdde031461017d578063081812fc1461019b578063095ea7b3146101cb575b600080fd5b61014b600480360381019061014691906120f0565b6103cd565b6040516101589190612533565b60405180910390f35b61017b6004803603810190610176919061214a565b6104af565b005b6101856104d1565b604051610192919061254e565b60405180910390f35b6101b560048036038101906101b09190612193565b610563565b6040516101c291906124cc565b60405180910390f35b6101e560048036038101906101e09190611f9a565b6105a9565b005b61020160048036038101906101fc9190611df9565b6106c1565b005b61021d60048036038101906102189190611df9565b610721565b005b61023960048036038101906102349190612193565b610741565b60405161024691906124cc565b60405180910390f35b61026960048036038101906102649190611d8c565b6107f3565b6040516102769190612730565b60405180910390f35b6102876108ab565b005b6102916108bf565b60405161029e91906124cc565b60405180910390f35b6102af6108e9565b6040516102bc919061254e565b60405180910390f35b6102df60048036038101906102da9190611f5a565b61097b565b005b6102fb60048036038101906102f69190611e4c565b610991565b005b61031760048036038101906103129190612049565b6109f3565b005b610333600480360381019061032e9190611ecf565b610aa3565b005b61034f600480360381019061034a9190612193565b610af5565b60405161035c919061254e565b60405180910390f35b61037f600480360381019061037a9190611fda565b610b5d565b005b61039b60048036038101906103969190611db9565b610b75565b6040516103a89190612533565b60405180910390f35b6103cb60048036038101906103c69190611d8c565b610c09565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061049857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104a857506104a782610c8d565b5b9050919050565b6104b7610cf7565b80600790805190602001906104cd929190611a64565b5050565b6060600080546104e0906129de565b80601f016020809104026020016040519081016040528092919081815260200182805461050c906129de565b80156105595780601f1061052e57610100808354040283529160200191610559565b820191906000526020600020905b81548152906001019060200180831161053c57829003601f168201915b5050505050905090565b600061056e82610d75565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105b482610741565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061c906126f0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610644610dc0565b73ffffffffffffffffffffffffffffffffffffffff16148061067357506106728161066d610dc0565b610b75565b5b6106b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a990612670565b60405180910390fd5b6106bc8383610dc8565b505050565b6106d26106cc610dc0565b82610e81565b610711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070890612710565b60405180910390fd5b61071c838383610f16565b505050565b61073c83838360405180602001604052806000815250610991565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e1906126d0565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085b90612650565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108b3610cf7565b6108bd600061117d565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546108f8906129de565b80601f0160208091040260200160405190810160405280929190818152602001828054610924906129de565b80156109715780601f1061094657610100808354040283529160200191610971565b820191906000526020600020905b81548152906001019060200180831161095457829003601f168201915b5050505050905090565b61098d610986610dc0565b8383611243565b5050565b6109a261099c610dc0565b83610e81565b6109e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d890612710565b60405180910390fd5b6109ed848484846113b0565b50505050565b6109fb610cf7565b8151835114610a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3690612630565b60405180910390fd5b60005b8351811015610a9d57610a8a848281518110610a6157610a60612b48565b5b6020026020010151848381518110610a7c57610a7b612b48565b5b602002602001015184610b5d565b8080610a9590612a41565b915050610a42565b50505050565b610aab610cf7565b60005b8251811015610aef57610adc84848381518110610ace57610acd612b48565b5b602002602001015184610b5d565b8080610ae790612a41565b915050610aae565b50505050565b6060610b0082610d75565b6000610b0a61140c565b90506000815111610b2a5760405180602001604052806000815250610b55565b80610b348461149e565b604051602001610b4592919061249d565b6040516020818303038152906040525b915050919050565b610b65610cf7565b610b708383836115ff565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610c11610cf7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7890612590565b60405180910390fd5b610c8a8161117d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610cff610dc0565b73ffffffffffffffffffffffffffffffffffffffff16610d1d6108bf565b73ffffffffffffffffffffffffffffffffffffffff1614610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a906126b0565b60405180910390fd5b565b610d7e8161165a565b610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db4906126d0565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610e3b83610741565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610e8d83610741565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610ecf5750610ece8185610b75565b5b80610f0d57508373ffffffffffffffffffffffffffffffffffffffff16610ef584610563565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610f3682610741565b73ffffffffffffffffffffffffffffffffffffffff1614610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f83906125b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff3906125f0565b60405180910390fd5b6110078383836116c6565b611012600082610dc8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461106291906128f4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110b9919061286d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111788383836116cb565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a990612610565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113a39190612533565b60405180910390a3505050565b6113bb848484610f16565b6113c7848484846116d0565b611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd90612570565b60405180910390fd5b50505050565b60606007805461141b906129de565b80601f0160208091040260200160405190810160405280929190818152602001828054611447906129de565b80156114945780601f1061146957610100808354040283529160200191611494565b820191906000526020600020905b81548152906001019060200180831161147757829003601f168201915b5050505050905090565b606060008214156114e6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506115fa565b600082905060005b6000821461151857808061150190612a41565b915050600a8261151191906128c3565b91506114ee565b60008167ffffffffffffffff81111561153457611533612b77565b5b6040519080825280601f01601f1916602001820160405280156115665781602001600182028036833780820191505090505b5090505b600085146115f35760018261157f91906128f4565b9150600a8561158e9190612a8a565b603061159a919061286d565b60f81b8183815181106115b0576115af612b48565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856115ec91906128c3565b945061156a565b8093505050505b919050565b6116098383611867565b61161660008484846116d0565b611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c90612570565b60405180910390fd5b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b60006116f18473ffffffffffffffffffffffffffffffffffffffff16611a41565b1561185a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261171a610dc0565b8786866040518563ffffffff1660e01b815260040161173c94939291906124e7565b602060405180830381600087803b15801561175657600080fd5b505af192505050801561178757506040513d601f19601f82011682018060405250810190611784919061211d565b60015b61180a573d80600081146117b7576040519150601f19603f3d011682016040523d82523d6000602084013e6117bc565b606091505b50600081511415611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f990612570565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061185f565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce90612690565b60405180910390fd5b6118e08161165a565b15611920576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611917906125d0565b60405180910390fd5b61192c600083836116c6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461197c919061286d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a3d600083836116cb565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611a70906129de565b90600052602060002090601f016020900481019282611a925760008555611ad9565b82601f10611aab57805160ff1916838001178555611ad9565b82800160010185558215611ad9579182015b82811115611ad8578251825591602001919060010190611abd565b5b509050611ae69190611aea565b5090565b5b80821115611b03576000816000905550600101611aeb565b5090565b6000611b1a611b1584612770565b61274b565b90508083825260208201905082856020860282011115611b3d57611b3c612bab565b5b60005b85811015611b6d5781611b538882611c6b565b845260208401935060208301925050600181019050611b40565b5050509392505050565b6000611b8a611b858461279c565b61274b565b90508083825260208201905082856020860282011115611bad57611bac612bab565b5b60005b85811015611bdd5781611bc38882611d77565b845260208401935060208301925050600181019050611bb0565b5050509392505050565b6000611bfa611bf5846127c8565b61274b565b905082815260208101848484011115611c1657611c15612bb0565b5b611c2184828561299c565b509392505050565b6000611c3c611c37846127f9565b61274b565b905082815260208101848484011115611c5857611c57612bb0565b5b611c6384828561299c565b509392505050565b600081359050611c7a81612f67565b92915050565b600082601f830112611c9557611c94612ba6565b5b8135611ca5848260208601611b07565b91505092915050565b600082601f830112611cc357611cc2612ba6565b5b8135611cd3848260208601611b77565b91505092915050565b600081359050611ceb81612f7e565b92915050565b600081359050611d0081612f95565b92915050565b600081519050611d1581612f95565b92915050565b600082601f830112611d3057611d2f612ba6565b5b8135611d40848260208601611be7565b91505092915050565b600082601f830112611d5e57611d5d612ba6565b5b8135611d6e848260208601611c29565b91505092915050565b600081359050611d8681612fac565b92915050565b600060208284031215611da257611da1612bba565b5b6000611db084828501611c6b565b91505092915050565b60008060408385031215611dd057611dcf612bba565b5b6000611dde85828601611c6b565b9250506020611def85828601611c6b565b9150509250929050565b600080600060608486031215611e1257611e11612bba565b5b6000611e2086828701611c6b565b9350506020611e3186828701611c6b565b9250506040611e4286828701611d77565b9150509250925092565b60008060008060808587031215611e6657611e65612bba565b5b6000611e7487828801611c6b565b9450506020611e8587828801611c6b565b9350506040611e9687828801611d77565b925050606085013567ffffffffffffffff811115611eb757611eb6612bb5565b5b611ec387828801611d1b565b91505092959194509250565b600080600060608486031215611ee857611ee7612bba565b5b6000611ef686828701611c6b565b935050602084013567ffffffffffffffff811115611f1757611f16612bb5565b5b611f2386828701611cae565b925050604084013567ffffffffffffffff811115611f4457611f43612bb5565b5b611f5086828701611d1b565b9150509250925092565b60008060408385031215611f7157611f70612bba565b5b6000611f7f85828601611c6b565b9250506020611f9085828601611cdc565b9150509250929050565b60008060408385031215611fb157611fb0612bba565b5b6000611fbf85828601611c6b565b9250506020611fd085828601611d77565b9150509250929050565b600080600060608486031215611ff357611ff2612bba565b5b600061200186828701611c6b565b935050602061201286828701611d77565b925050604084013567ffffffffffffffff81111561203357612032612bb5565b5b61203f86828701611d1b565b9150509250925092565b60008060006060848603121561206257612061612bba565b5b600084013567ffffffffffffffff8111156120805761207f612bb5565b5b61208c86828701611c80565b935050602084013567ffffffffffffffff8111156120ad576120ac612bb5565b5b6120b986828701611cae565b925050604084013567ffffffffffffffff8111156120da576120d9612bb5565b5b6120e686828701611d1b565b9150509250925092565b60006020828403121561210657612105612bba565b5b600061211484828501611cf1565b91505092915050565b60006020828403121561213357612132612bba565b5b600061214184828501611d06565b91505092915050565b6000602082840312156121605761215f612bba565b5b600082013567ffffffffffffffff81111561217e5761217d612bb5565b5b61218a84828501611d49565b91505092915050565b6000602082840312156121a9576121a8612bba565b5b60006121b784828501611d77565b91505092915050565b6121c981612928565b82525050565b6121d88161293a565b82525050565b60006121e98261282a565b6121f38185612840565b93506122038185602086016129ab565b61220c81612bbf565b840191505092915050565b600061222282612835565b61222c8185612851565b935061223c8185602086016129ab565b61224581612bbf565b840191505092915050565b600061225b82612835565b6122658185612862565b93506122758185602086016129ab565b80840191505092915050565b600061228e603283612851565b915061229982612bd0565b604082019050919050565b60006122b1602683612851565b91506122bc82612c1f565b604082019050919050565b60006122d4602583612851565b91506122df82612c6e565b604082019050919050565b60006122f7601c83612851565b915061230282612cbd565b602082019050919050565b600061231a600e83612862565b915061232582612ce6565b600e82019050919050565b600061233d602483612851565b915061234882612d0f565b604082019050919050565b6000612360601983612851565b915061236b82612d5e565b602082019050919050565b6000612383601283612851565b915061238e82612d87565b602082019050919050565b60006123a6602983612851565b91506123b182612db0565b604082019050919050565b60006123c9603e83612851565b91506123d482612dff565b604082019050919050565b60006123ec602083612851565b91506123f782612e4e565b602082019050919050565b600061240f602083612851565b915061241a82612e77565b602082019050919050565b6000612432601883612851565b915061243d82612ea0565b602082019050919050565b6000612455602183612851565b915061246082612ec9565b604082019050919050565b6000612478602e83612851565b915061248382612f18565b604082019050919050565b61249781612992565b82525050565b60006124a98285612250565b91506124b58284612250565b91506124c08261230d565b91508190509392505050565b60006020820190506124e160008301846121c0565b92915050565b60006080820190506124fc60008301876121c0565b61250960208301866121c0565b612516604083018561248e565b818103606083015261252881846121de565b905095945050505050565b600060208201905061254860008301846121cf565b92915050565b600060208201905081810360008301526125688184612217565b905092915050565b6000602082019050818103600083015261258981612281565b9050919050565b600060208201905081810360008301526125a9816122a4565b9050919050565b600060208201905081810360008301526125c9816122c7565b9050919050565b600060208201905081810360008301526125e9816122ea565b9050919050565b6000602082019050818103600083015261260981612330565b9050919050565b6000602082019050818103600083015261262981612353565b9050919050565b6000602082019050818103600083015261264981612376565b9050919050565b6000602082019050818103600083015261266981612399565b9050919050565b60006020820190508181036000830152612689816123bc565b9050919050565b600060208201905081810360008301526126a9816123df565b9050919050565b600060208201905081810360008301526126c981612402565b9050919050565b600060208201905081810360008301526126e981612425565b9050919050565b6000602082019050818103600083015261270981612448565b9050919050565b600060208201905081810360008301526127298161246b565b9050919050565b6000602082019050612745600083018461248e565b92915050565b6000612755612766565b90506127618282612a10565b919050565b6000604051905090565b600067ffffffffffffffff82111561278b5761278a612b77565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156127b7576127b6612b77565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156127e3576127e2612b77565b5b6127ec82612bbf565b9050602081019050919050565b600067ffffffffffffffff82111561281457612813612b77565b5b61281d82612bbf565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061287882612992565b915061288383612992565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156128b8576128b7612abb565b5b828201905092915050565b60006128ce82612992565b91506128d983612992565b9250826128e9576128e8612aea565b5b828204905092915050565b60006128ff82612992565b915061290a83612992565b92508282101561291d5761291c612abb565b5b828203905092915050565b600061293382612972565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156129c95780820151818401526020810190506129ae565b838111156129d8576000848401525b50505050565b600060028204905060018216806129f657607f821691505b60208210811415612a0a57612a09612b19565b5b50919050565b612a1982612bbf565b810181811067ffffffffffffffff82111715612a3857612a37612b77565b5b80604052505050565b6000612a4c82612992565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612a7f57612a7e612abb565b5b600182019050919050565b6000612a9582612992565b9150612aa083612992565b925082612ab057612aaf612aea565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f2f6d657461646174612e6a736f6e000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4c656e67746873206d757374206d617463680000000000000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b612f7081612928565b8114612f7b57600080fd5b50565b612f878161293a565b8114612f9257600080fd5b50565b612f9e81612946565b8114612fa957600080fd5b50565b612fb581612992565b8114612fc057600080fd5b5056fea2646970667358221220829961272993a51000f37551a9d329f962c879ab953c4e967b99fbb7886a8d5f64736f6c63430008070033
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.