ERC-721
Overview
Max Total Supply
777 EGS
Holders
301
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 EGSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Eggs
Compiler Version
v0.8.6+commit.11564f7e
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.6; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract Eggs is ERC721, Ownable, ERC721Burnable { // Token state using Counters for Counters.Counter; Counters.Counter private _tokenIds; uint256 private _maxSupply = 4646; uint256 private _mintValue = 30000000000000000; address private _feeReceiver; string public _provenanceHash; string public _baseURL; bool private _isMintOpen = false; constructor() ERC721("Eggs", "EGS") {} function _baseMint(uint256 count, address recipient) private { require(_tokenIds.current() + count <= _maxSupply, "Can not mint more than max supply."); for (uint256 i = 0; i < count; i++) { _tokenIds.increment(); _mint(recipient, _tokenIds.current()); } } function mint(uint256 amount) external payable { require(_isMintOpen, "Mint is not active."); require(amount > 0 && amount <= 10, "You can mint between 1 and 10 in one transaction."); require(msg.value >= amount * _mintValue, "Insufficient payment"); _baseMint(amount, msg.sender); bool success = false; (success,) = _feeReceiver.call{value : msg.value}(""); require(success, "Failed to send to owner"); } function reservedMint(uint amount, address recipient) public onlyOwner { _baseMint(amount, recipient); } // Setters function flipMintState() public onlyOwner { _isMintOpen = !_isMintOpen; } function setMaxSupply(uint256 newMaxSupply) public onlyOwner { _maxSupply = newMaxSupply; } function setMintValue(uint256 newMintValue) public onlyOwner { _mintValue = newMintValue; } function setFeeReceiver(address newFeeReceiver) public onlyOwner { _feeReceiver = newFeeReceiver; } function setProvenanceHash(string memory newProvenanceHash) public onlyOwner { _provenanceHash = newProvenanceHash; } function setBaseURL(string memory newBaseURI) public onlyOwner { _baseURL = newBaseURI; } // Getters function _baseURI() internal view override returns (string memory) { return _baseURL; } function totalSupply() public view returns (uint256) { return _tokenIds.current(); } function maxSupply() public view returns (uint256) { return _maxSupply; } function mintValue() public view returns (uint256) { return _mintValue; } function feeReceiver() public view returns (address) { return _feeReceiver; } function isMintOpen() public view returns (bool) { return _isMintOpen; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "../../../utils/Context.sol"; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
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":[],"name":"_baseURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintValue","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":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"reservedMint","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":"newBaseURI","type":"string"}],"name":"setBaseURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newFeeReceiver","type":"address"}],"name":"setFeeReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintValue","type":"uint256"}],"name":"setMintValue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newProvenanceHash","type":"string"}],"name":"setProvenanceHash","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"}]
Contract Creation Code
6080604052611226600855666a94d74f4300006009556000600d60006101000a81548160ff0219169083151502179055503480156200003d57600080fd5b506040518060400160405280600481526020017f45676773000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f45475300000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000c2929190620001d2565b508060019080519060200190620000db929190620001d2565b505050620000fe620000f26200010460201b60201c565b6200010c60201b60201c565b620002e7565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001e09062000282565b90600052602060002090601f01602090048101928262000204576000855562000250565b82601f106200021f57805160ff191683800117855562000250565b8280016001018555821562000250579182015b828111156200024f57825182559160200191906001019062000232565b5b5090506200025f919062000263565b5090565b5b808211156200027e57600081600090555060010162000264565b5090565b600060028204905060018216806200029b57607f821691505b60208210811415620002b257620002b1620002b8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613e4680620002f76000396000f3fe6080604052600436106101e35760003560e01c806370a0823111610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c5146106a9578063efdcd974146106e6578063f2fde38b1461070f578063f9e0edae14610738576101e3565b8063b88d4fde146105ef578063c01031c014610618578063c87b56dd14610641578063d5abeb011461067e576101e3565b806395d89b41116100d157806395d89b4114610554578063a0712d681461057f578063a22cb4651461059b578063b3f00674146105c4576101e3565b806370a08231146104aa578063715018a6146104e757806389c77dfe146104fe5780638da5cb5b14610529576101e3565b806323b872dd1161017a578063534308cc11610149578063534308cc1461040257806359c74f291461042d5780636352211e146104445780636f8b44b014610481576101e3565b806323b872dd1461035e57806342842e0e1461038757806342966c68146103b057806349f2553a146103d9576101e3565b806310969523116101b657806310969523146102b657806318160ddd146102df57806318df64031461030a5780631990801614610333576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612aa7565b610763565b60405161021c919061304c565b60405180910390f35b34801561023157600080fd5b5061023a610845565b6040516102479190613067565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612b4a565b6108d7565b6040516102849190612fe5565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612a67565b61095c565b005b3480156102c257600080fd5b506102dd60048036038101906102d89190612b01565b610a74565b005b3480156102eb57600080fd5b506102f4610b0a565b6040516103019190613349565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190612b77565b610b1b565b005b34801561033f57600080fd5b50610348610ba5565b604051610355919061304c565b60405180910390f35b34801561036a57600080fd5b5061038560048036038101906103809190612951565b610bbc565b005b34801561039357600080fd5b506103ae60048036038101906103a99190612951565b610c1c565b005b3480156103bc57600080fd5b506103d760048036038101906103d29190612b4a565b610c3c565b005b3480156103e557600080fd5b5061040060048036038101906103fb9190612b01565b610c98565b005b34801561040e57600080fd5b50610417610d2e565b6040516104249190613067565b60405180910390f35b34801561043957600080fd5b50610442610dbc565b005b34801561045057600080fd5b5061046b60048036038101906104669190612b4a565b610e64565b6040516104789190612fe5565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190612b4a565b610f16565b005b3480156104b657600080fd5b506104d160048036038101906104cc91906128e4565b610f9c565b6040516104de9190613349565b60405180910390f35b3480156104f357600080fd5b506104fc611054565b005b34801561050a57600080fd5b506105136110dc565b6040516105209190613349565b60405180910390f35b34801561053557600080fd5b5061053e6110e6565b60405161054b9190612fe5565b60405180910390f35b34801561056057600080fd5b50610569611110565b6040516105769190613067565b60405180910390f35b61059960048036038101906105949190612b4a565b6111a2565b005b3480156105a757600080fd5b506105c260048036038101906105bd9190612a27565b61136f565b005b3480156105d057600080fd5b506105d9611385565b6040516105e69190612fe5565b60405180910390f35b3480156105fb57600080fd5b50610616600480360381019061061191906129a4565b6113af565b005b34801561062457600080fd5b5061063f600480360381019061063a9190612b4a565b611411565b005b34801561064d57600080fd5b5061066860048036038101906106639190612b4a565b611497565b6040516106759190613067565b60405180910390f35b34801561068a57600080fd5b5061069361153e565b6040516106a09190613349565b60405180910390f35b3480156106b557600080fd5b506106d060048036038101906106cb9190612911565b611548565b6040516106dd919061304c565b60405180910390f35b3480156106f257600080fd5b5061070d600480360381019061070891906128e4565b6115dc565b005b34801561071b57600080fd5b50610736600480360381019061073191906128e4565b61169c565b005b34801561074457600080fd5b5061074d611794565b60405161075a9190613067565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083e575061083d82611822565b5b9050919050565b60606000805461085490613604565b80601f016020809104026020016040519081016040528092919081815260200182805461088090613604565b80156108cd5780601f106108a2576101008083540402835291602001916108cd565b820191906000526020600020905b8154815290600101906020018083116108b057829003601f168201915b5050505050905090565b60006108e28261188c565b610921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091890613289565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096782610e64565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cf906132e9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109f76118f8565b73ffffffffffffffffffffffffffffffffffffffff161480610a265750610a2581610a206118f8565b611548565b5b610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c906131e9565b60405180910390fd5b610a6f8383611900565b505050565b610a7c6118f8565b73ffffffffffffffffffffffffffffffffffffffff16610a9a6110e6565b73ffffffffffffffffffffffffffffffffffffffff1614610af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae7906132a9565b60405180910390fd5b80600b9080519060200190610b069291906126f8565b5050565b6000610b1660076119b9565b905090565b610b236118f8565b73ffffffffffffffffffffffffffffffffffffffff16610b416110e6565b73ffffffffffffffffffffffffffffffffffffffff1614610b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8e906132a9565b60405180910390fd5b610ba182826119c7565b5050565b6000600d60009054906101000a900460ff16905090565b610bcd610bc76118f8565b82611a60565b610c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0390613309565b60405180910390fd5b610c17838383611b3e565b505050565b610c37838383604051806020016040528060008152506113af565b505050565b610c4d610c476118f8565b82611a60565b610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390613329565b60405180910390fd5b610c9581611da5565b50565b610ca06118f8565b73ffffffffffffffffffffffffffffffffffffffff16610cbe6110e6565b73ffffffffffffffffffffffffffffffffffffffff1614610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b906132a9565b60405180910390fd5b80600c9080519060200190610d2a9291906126f8565b5050565b600b8054610d3b90613604565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6790613604565b8015610db45780601f10610d8957610100808354040283529160200191610db4565b820191906000526020600020905b815481529060010190602001808311610d9757829003601f168201915b505050505081565b610dc46118f8565b73ffffffffffffffffffffffffffffffffffffffff16610de26110e6565b73ffffffffffffffffffffffffffffffffffffffff1614610e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2f906132a9565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0490613229565b60405180910390fd5b80915050919050565b610f1e6118f8565b73ffffffffffffffffffffffffffffffffffffffff16610f3c6110e6565b73ffffffffffffffffffffffffffffffffffffffff1614610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f89906132a9565b60405180910390fd5b8060088190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561100d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100490613209565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61105c6118f8565b73ffffffffffffffffffffffffffffffffffffffff1661107a6110e6565b73ffffffffffffffffffffffffffffffffffffffff16146110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c7906132a9565b60405180910390fd5b6110da6000611ec2565b565b6000600954905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461111f90613604565b80601f016020809104026020016040519081016040528092919081815260200182805461114b90613604565b80156111985780601f1061116d57610100808354040283529160200191611198565b820191906000526020600020905b81548152906001019060200180831161117b57829003601f168201915b5050505050905090565b600d60009054906101000a900460ff166111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890613089565b60405180910390fd5b6000811180156112025750600a8111155b611241576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611238906130a9565b60405180910390fd5b6009548161124f91906134c0565b341015611291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128890613269565b60405180910390fd5b61129b81336119c7565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16346040516112e390612fd0565b60006040518083038185875af1925050503d8060008114611320576040519150601f19603f3d011682016040523d82523d6000602084013e611325565b606091505b5050809150508061136b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136290613189565b60405180910390fd5b5050565b61138161137a6118f8565b8383611f88565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113c06113ba6118f8565b83611a60565b6113ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f690613309565b60405180910390fd5b61140b848484846120f5565b50505050565b6114196118f8565b73ffffffffffffffffffffffffffffffffffffffff166114376110e6565b73ffffffffffffffffffffffffffffffffffffffff161461148d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611484906132a9565b60405180910390fd5b8060098190555050565b60606114a28261188c565b6114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d8906132c9565b60405180910390fd5b60006114eb612151565b9050600081511161150b5760405180602001604052806000815250611536565b80611515846121e3565b604051602001611526929190612fac565b6040516020818303038152906040525b915050919050565b6000600854905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115e46118f8565b73ffffffffffffffffffffffffffffffffffffffff166116026110e6565b73ffffffffffffffffffffffffffffffffffffffff1614611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f906132a9565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6116a46118f8565b73ffffffffffffffffffffffffffffffffffffffff166116c26110e6565b73ffffffffffffffffffffffffffffffffffffffff1614611718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170f906132a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177f906130e9565b60405180910390fd5b61179181611ec2565b50565b600c80546117a190613604565b80601f01602080910402602001604051908101604052809291908181526020018280546117cd90613604565b801561181a5780601f106117ef5761010080835404028352916020019161181a565b820191906000526020600020905b8154815290600101906020018083116117fd57829003601f168201915b505050505081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661197383610e64565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600854826119d560076119b9565b6119df9190613439565b1115611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a17906131a9565b60405180910390fd5b60005b82811015611a5b57611a356007612344565b611a4882611a4360076119b9565b61235a565b8080611a5390613667565b915050611a23565b505050565b6000611a6b8261188c565b611aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa1906131c9565b60405180910390fd5b6000611ab583610e64565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611af75750611af68185611548565b5b80611b3557508373ffffffffffffffffffffffffffffffffffffffff16611b1d846108d7565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b5e82610e64565b73ffffffffffffffffffffffffffffffffffffffff1614611bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bab90613109565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1b90613149565b60405180910390fd5b611c2f838383612534565b611c3a600082611900565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c8a919061351a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ce19190613439565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611da0838383612539565b505050565b6000611db082610e64565b9050611dbe81600084612534565b611dc9600083611900565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e19919061351a565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ebe81600084612539565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fee90613169565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120e8919061304c565b60405180910390a3505050565b612100848484611b3e565b61210c8484848461253e565b61214b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612142906130c9565b60405180910390fd5b50505050565b6060600c805461216090613604565b80601f016020809104026020016040519081016040528092919081815260200182805461218c90613604565b80156121d95780601f106121ae576101008083540402835291602001916121d9565b820191906000526020600020905b8154815290600101906020018083116121bc57829003601f168201915b5050505050905090565b6060600082141561222b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061233f565b600082905060005b6000821461225d57808061224690613667565b915050600a82612256919061348f565b9150612233565b60008167ffffffffffffffff8111156122795761227861379d565b5b6040519080825280601f01601f1916602001820160405280156122ab5781602001600182028036833780820191505090505b5090505b60008514612338576001826122c4919061351a565b9150600a856122d391906136b0565b60306122df9190613439565b60f81b8183815181106122f5576122f461376e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612331919061348f565b94506122af565b8093505050505b919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c190613249565b60405180910390fd5b6123d38161188c565b15612413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240a90613129565b60405180910390fd5b61241f60008383612534565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461246f9190613439565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461253060008383612539565b5050565b505050565b505050565b600061255f8473ffffffffffffffffffffffffffffffffffffffff166126d5565b156126c8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125886118f8565b8786866040518563ffffffff1660e01b81526004016125aa9493929190613000565b602060405180830381600087803b1580156125c457600080fd5b505af19250505080156125f557506040513d601f19601f820116820180604052508101906125f29190612ad4565b60015b612678573d8060008114612625576040519150601f19603f3d011682016040523d82523d6000602084013e61262a565b606091505b50600081511415612670576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612667906130c9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126cd565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461270490613604565b90600052602060002090601f016020900481019282612726576000855561276d565b82601f1061273f57805160ff191683800117855561276d565b8280016001018555821561276d579182015b8281111561276c578251825591602001919060010190612751565b5b50905061277a919061277e565b5090565b5b8082111561279757600081600090555060010161277f565b5090565b60006127ae6127a984613389565b613364565b9050828152602081018484840111156127ca576127c96137d1565b5b6127d58482856135c2565b509392505050565b60006127f06127eb846133ba565b613364565b90508281526020810184848401111561280c5761280b6137d1565b5b6128178482856135c2565b509392505050565b60008135905061282e81613db4565b92915050565b60008135905061284381613dcb565b92915050565b60008135905061285881613de2565b92915050565b60008151905061286d81613de2565b92915050565b600082601f830112612888576128876137cc565b5b813561289884826020860161279b565b91505092915050565b600082601f8301126128b6576128b56137cc565b5b81356128c68482602086016127dd565b91505092915050565b6000813590506128de81613df9565b92915050565b6000602082840312156128fa576128f96137db565b5b60006129088482850161281f565b91505092915050565b60008060408385031215612928576129276137db565b5b60006129368582860161281f565b92505060206129478582860161281f565b9150509250929050565b60008060006060848603121561296a576129696137db565b5b60006129788682870161281f565b93505060206129898682870161281f565b925050604061299a868287016128cf565b9150509250925092565b600080600080608085870312156129be576129bd6137db565b5b60006129cc8782880161281f565b94505060206129dd8782880161281f565b93505060406129ee878288016128cf565b925050606085013567ffffffffffffffff811115612a0f57612a0e6137d6565b5b612a1b87828801612873565b91505092959194509250565b60008060408385031215612a3e57612a3d6137db565b5b6000612a4c8582860161281f565b9250506020612a5d85828601612834565b9150509250929050565b60008060408385031215612a7e57612a7d6137db565b5b6000612a8c8582860161281f565b9250506020612a9d858286016128cf565b9150509250929050565b600060208284031215612abd57612abc6137db565b5b6000612acb84828501612849565b91505092915050565b600060208284031215612aea57612ae96137db565b5b6000612af88482850161285e565b91505092915050565b600060208284031215612b1757612b166137db565b5b600082013567ffffffffffffffff811115612b3557612b346137d6565b5b612b41848285016128a1565b91505092915050565b600060208284031215612b6057612b5f6137db565b5b6000612b6e848285016128cf565b91505092915050565b60008060408385031215612b8e57612b8d6137db565b5b6000612b9c858286016128cf565b9250506020612bad8582860161281f565b9150509250929050565b612bc08161354e565b82525050565b612bcf81613560565b82525050565b6000612be0826133eb565b612bea8185613401565b9350612bfa8185602086016135d1565b612c03816137e0565b840191505092915050565b6000612c19826133f6565b612c23818561341d565b9350612c338185602086016135d1565b612c3c816137e0565b840191505092915050565b6000612c52826133f6565b612c5c818561342e565b9350612c6c8185602086016135d1565b80840191505092915050565b6000612c8560138361341d565b9150612c90826137f1565b602082019050919050565b6000612ca860318361341d565b9150612cb38261381a565b604082019050919050565b6000612ccb60328361341d565b9150612cd682613869565b604082019050919050565b6000612cee60268361341d565b9150612cf9826138b8565b604082019050919050565b6000612d1160258361341d565b9150612d1c82613907565b604082019050919050565b6000612d34601c8361341d565b9150612d3f82613956565b602082019050919050565b6000612d5760248361341d565b9150612d628261397f565b604082019050919050565b6000612d7a60198361341d565b9150612d85826139ce565b602082019050919050565b6000612d9d60178361341d565b9150612da8826139f7565b602082019050919050565b6000612dc060228361341d565b9150612dcb82613a20565b604082019050919050565b6000612de3602c8361341d565b9150612dee82613a6f565b604082019050919050565b6000612e0660388361341d565b9150612e1182613abe565b604082019050919050565b6000612e29602a8361341d565b9150612e3482613b0d565b604082019050919050565b6000612e4c60298361341d565b9150612e5782613b5c565b604082019050919050565b6000612e6f60208361341d565b9150612e7a82613bab565b602082019050919050565b6000612e9260148361341d565b9150612e9d82613bd4565b602082019050919050565b6000612eb5602c8361341d565b9150612ec082613bfd565b604082019050919050565b6000612ed860208361341d565b9150612ee382613c4c565b602082019050919050565b6000612efb602f8361341d565b9150612f0682613c75565b604082019050919050565b6000612f1e60218361341d565b9150612f2982613cc4565b604082019050919050565b6000612f41600083613412565b9150612f4c82613d13565b600082019050919050565b6000612f6460318361341d565b9150612f6f82613d16565b604082019050919050565b6000612f8760308361341d565b9150612f9282613d65565b604082019050919050565b612fa6816135b8565b82525050565b6000612fb88285612c47565b9150612fc48284612c47565b91508190509392505050565b6000612fdb82612f34565b9150819050919050565b6000602082019050612ffa6000830184612bb7565b92915050565b60006080820190506130156000830187612bb7565b6130226020830186612bb7565b61302f6040830185612f9d565b81810360608301526130418184612bd5565b905095945050505050565b60006020820190506130616000830184612bc6565b92915050565b600060208201905081810360008301526130818184612c0e565b905092915050565b600060208201905081810360008301526130a281612c78565b9050919050565b600060208201905081810360008301526130c281612c9b565b9050919050565b600060208201905081810360008301526130e281612cbe565b9050919050565b6000602082019050818103600083015261310281612ce1565b9050919050565b6000602082019050818103600083015261312281612d04565b9050919050565b6000602082019050818103600083015261314281612d27565b9050919050565b6000602082019050818103600083015261316281612d4a565b9050919050565b6000602082019050818103600083015261318281612d6d565b9050919050565b600060208201905081810360008301526131a281612d90565b9050919050565b600060208201905081810360008301526131c281612db3565b9050919050565b600060208201905081810360008301526131e281612dd6565b9050919050565b6000602082019050818103600083015261320281612df9565b9050919050565b6000602082019050818103600083015261322281612e1c565b9050919050565b6000602082019050818103600083015261324281612e3f565b9050919050565b6000602082019050818103600083015261326281612e62565b9050919050565b6000602082019050818103600083015261328281612e85565b9050919050565b600060208201905081810360008301526132a281612ea8565b9050919050565b600060208201905081810360008301526132c281612ecb565b9050919050565b600060208201905081810360008301526132e281612eee565b9050919050565b6000602082019050818103600083015261330281612f11565b9050919050565b6000602082019050818103600083015261332281612f57565b9050919050565b6000602082019050818103600083015261334281612f7a565b9050919050565b600060208201905061335e6000830184612f9d565b92915050565b600061336e61337f565b905061337a8282613636565b919050565b6000604051905090565b600067ffffffffffffffff8211156133a4576133a361379d565b5b6133ad826137e0565b9050602081019050919050565b600067ffffffffffffffff8211156133d5576133d461379d565b5b6133de826137e0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613444826135b8565b915061344f836135b8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613484576134836136e1565b5b828201905092915050565b600061349a826135b8565b91506134a5836135b8565b9250826134b5576134b4613710565b5b828204905092915050565b60006134cb826135b8565b91506134d6836135b8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561350f5761350e6136e1565b5b828202905092915050565b6000613525826135b8565b9150613530836135b8565b925082821015613543576135426136e1565b5b828203905092915050565b600061355982613598565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156135ef5780820151818401526020810190506135d4565b838111156135fe576000848401525b50505050565b6000600282049050600182168061361c57607f821691505b602082108114156136305761362f61373f565b5b50919050565b61363f826137e0565b810181811067ffffffffffffffff8211171561365e5761365d61379d565b5b80604052505050565b6000613672826135b8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136a5576136a46136e1565b5b600182019050919050565b60006136bb826135b8565b91506136c6836135b8565b9250826136d6576136d5613710565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f596f752063616e206d696e74206265747765656e203120616e6420313020696e60008201527f206f6e65207472616e73616374696f6e2e000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4661696c656420746f2073656e6420746f206f776e6572000000000000000000600082015250565b7f43616e206e6f74206d696e74206d6f7265207468616e206d617820737570706c60008201527f792e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b613dbd8161354e565b8114613dc857600080fd5b50565b613dd481613560565b8114613ddf57600080fd5b50565b613deb8161356c565b8114613df657600080fd5b50565b613e02816135b8565b8114613e0d57600080fd5b5056fea2646970667358221220777866380715f2ac2015ad70cb9e6126121a2329ba182dd898ba8f736b3092ec64736f6c63430008060033
Deployed Bytecode
0x6080604052600436106101e35760003560e01c806370a0823111610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c5146106a9578063efdcd974146106e6578063f2fde38b1461070f578063f9e0edae14610738576101e3565b8063b88d4fde146105ef578063c01031c014610618578063c87b56dd14610641578063d5abeb011461067e576101e3565b806395d89b41116100d157806395d89b4114610554578063a0712d681461057f578063a22cb4651461059b578063b3f00674146105c4576101e3565b806370a08231146104aa578063715018a6146104e757806389c77dfe146104fe5780638da5cb5b14610529576101e3565b806323b872dd1161017a578063534308cc11610149578063534308cc1461040257806359c74f291461042d5780636352211e146104445780636f8b44b014610481576101e3565b806323b872dd1461035e57806342842e0e1461038757806342966c68146103b057806349f2553a146103d9576101e3565b806310969523116101b657806310969523146102b657806318160ddd146102df57806318df64031461030a5780631990801614610333576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612aa7565b610763565b60405161021c919061304c565b60405180910390f35b34801561023157600080fd5b5061023a610845565b6040516102479190613067565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612b4a565b6108d7565b6040516102849190612fe5565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612a67565b61095c565b005b3480156102c257600080fd5b506102dd60048036038101906102d89190612b01565b610a74565b005b3480156102eb57600080fd5b506102f4610b0a565b6040516103019190613349565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190612b77565b610b1b565b005b34801561033f57600080fd5b50610348610ba5565b604051610355919061304c565b60405180910390f35b34801561036a57600080fd5b5061038560048036038101906103809190612951565b610bbc565b005b34801561039357600080fd5b506103ae60048036038101906103a99190612951565b610c1c565b005b3480156103bc57600080fd5b506103d760048036038101906103d29190612b4a565b610c3c565b005b3480156103e557600080fd5b5061040060048036038101906103fb9190612b01565b610c98565b005b34801561040e57600080fd5b50610417610d2e565b6040516104249190613067565b60405180910390f35b34801561043957600080fd5b50610442610dbc565b005b34801561045057600080fd5b5061046b60048036038101906104669190612b4a565b610e64565b6040516104789190612fe5565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190612b4a565b610f16565b005b3480156104b657600080fd5b506104d160048036038101906104cc91906128e4565b610f9c565b6040516104de9190613349565b60405180910390f35b3480156104f357600080fd5b506104fc611054565b005b34801561050a57600080fd5b506105136110dc565b6040516105209190613349565b60405180910390f35b34801561053557600080fd5b5061053e6110e6565b60405161054b9190612fe5565b60405180910390f35b34801561056057600080fd5b50610569611110565b6040516105769190613067565b60405180910390f35b61059960048036038101906105949190612b4a565b6111a2565b005b3480156105a757600080fd5b506105c260048036038101906105bd9190612a27565b61136f565b005b3480156105d057600080fd5b506105d9611385565b6040516105e69190612fe5565b60405180910390f35b3480156105fb57600080fd5b50610616600480360381019061061191906129a4565b6113af565b005b34801561062457600080fd5b5061063f600480360381019061063a9190612b4a565b611411565b005b34801561064d57600080fd5b5061066860048036038101906106639190612b4a565b611497565b6040516106759190613067565b60405180910390f35b34801561068a57600080fd5b5061069361153e565b6040516106a09190613349565b60405180910390f35b3480156106b557600080fd5b506106d060048036038101906106cb9190612911565b611548565b6040516106dd919061304c565b60405180910390f35b3480156106f257600080fd5b5061070d600480360381019061070891906128e4565b6115dc565b005b34801561071b57600080fd5b50610736600480360381019061073191906128e4565b61169c565b005b34801561074457600080fd5b5061074d611794565b60405161075a9190613067565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083e575061083d82611822565b5b9050919050565b60606000805461085490613604565b80601f016020809104026020016040519081016040528092919081815260200182805461088090613604565b80156108cd5780601f106108a2576101008083540402835291602001916108cd565b820191906000526020600020905b8154815290600101906020018083116108b057829003601f168201915b5050505050905090565b60006108e28261188c565b610921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091890613289565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096782610e64565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cf906132e9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109f76118f8565b73ffffffffffffffffffffffffffffffffffffffff161480610a265750610a2581610a206118f8565b611548565b5b610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c906131e9565b60405180910390fd5b610a6f8383611900565b505050565b610a7c6118f8565b73ffffffffffffffffffffffffffffffffffffffff16610a9a6110e6565b73ffffffffffffffffffffffffffffffffffffffff1614610af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae7906132a9565b60405180910390fd5b80600b9080519060200190610b069291906126f8565b5050565b6000610b1660076119b9565b905090565b610b236118f8565b73ffffffffffffffffffffffffffffffffffffffff16610b416110e6565b73ffffffffffffffffffffffffffffffffffffffff1614610b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8e906132a9565b60405180910390fd5b610ba182826119c7565b5050565b6000600d60009054906101000a900460ff16905090565b610bcd610bc76118f8565b82611a60565b610c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0390613309565b60405180910390fd5b610c17838383611b3e565b505050565b610c37838383604051806020016040528060008152506113af565b505050565b610c4d610c476118f8565b82611a60565b610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390613329565b60405180910390fd5b610c9581611da5565b50565b610ca06118f8565b73ffffffffffffffffffffffffffffffffffffffff16610cbe6110e6565b73ffffffffffffffffffffffffffffffffffffffff1614610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b906132a9565b60405180910390fd5b80600c9080519060200190610d2a9291906126f8565b5050565b600b8054610d3b90613604565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6790613604565b8015610db45780601f10610d8957610100808354040283529160200191610db4565b820191906000526020600020905b815481529060010190602001808311610d9757829003601f168201915b505050505081565b610dc46118f8565b73ffffffffffffffffffffffffffffffffffffffff16610de26110e6565b73ffffffffffffffffffffffffffffffffffffffff1614610e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2f906132a9565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0490613229565b60405180910390fd5b80915050919050565b610f1e6118f8565b73ffffffffffffffffffffffffffffffffffffffff16610f3c6110e6565b73ffffffffffffffffffffffffffffffffffffffff1614610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f89906132a9565b60405180910390fd5b8060088190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561100d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100490613209565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61105c6118f8565b73ffffffffffffffffffffffffffffffffffffffff1661107a6110e6565b73ffffffffffffffffffffffffffffffffffffffff16146110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c7906132a9565b60405180910390fd5b6110da6000611ec2565b565b6000600954905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461111f90613604565b80601f016020809104026020016040519081016040528092919081815260200182805461114b90613604565b80156111985780601f1061116d57610100808354040283529160200191611198565b820191906000526020600020905b81548152906001019060200180831161117b57829003601f168201915b5050505050905090565b600d60009054906101000a900460ff166111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890613089565b60405180910390fd5b6000811180156112025750600a8111155b611241576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611238906130a9565b60405180910390fd5b6009548161124f91906134c0565b341015611291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128890613269565b60405180910390fd5b61129b81336119c7565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16346040516112e390612fd0565b60006040518083038185875af1925050503d8060008114611320576040519150601f19603f3d011682016040523d82523d6000602084013e611325565b606091505b5050809150508061136b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136290613189565b60405180910390fd5b5050565b61138161137a6118f8565b8383611f88565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113c06113ba6118f8565b83611a60565b6113ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f690613309565b60405180910390fd5b61140b848484846120f5565b50505050565b6114196118f8565b73ffffffffffffffffffffffffffffffffffffffff166114376110e6565b73ffffffffffffffffffffffffffffffffffffffff161461148d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611484906132a9565b60405180910390fd5b8060098190555050565b60606114a28261188c565b6114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d8906132c9565b60405180910390fd5b60006114eb612151565b9050600081511161150b5760405180602001604052806000815250611536565b80611515846121e3565b604051602001611526929190612fac565b6040516020818303038152906040525b915050919050565b6000600854905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115e46118f8565b73ffffffffffffffffffffffffffffffffffffffff166116026110e6565b73ffffffffffffffffffffffffffffffffffffffff1614611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f906132a9565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6116a46118f8565b73ffffffffffffffffffffffffffffffffffffffff166116c26110e6565b73ffffffffffffffffffffffffffffffffffffffff1614611718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170f906132a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177f906130e9565b60405180910390fd5b61179181611ec2565b50565b600c80546117a190613604565b80601f01602080910402602001604051908101604052809291908181526020018280546117cd90613604565b801561181a5780601f106117ef5761010080835404028352916020019161181a565b820191906000526020600020905b8154815290600101906020018083116117fd57829003601f168201915b505050505081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661197383610e64565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600854826119d560076119b9565b6119df9190613439565b1115611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a17906131a9565b60405180910390fd5b60005b82811015611a5b57611a356007612344565b611a4882611a4360076119b9565b61235a565b8080611a5390613667565b915050611a23565b505050565b6000611a6b8261188c565b611aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa1906131c9565b60405180910390fd5b6000611ab583610e64565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611af75750611af68185611548565b5b80611b3557508373ffffffffffffffffffffffffffffffffffffffff16611b1d846108d7565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b5e82610e64565b73ffffffffffffffffffffffffffffffffffffffff1614611bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bab90613109565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1b90613149565b60405180910390fd5b611c2f838383612534565b611c3a600082611900565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c8a919061351a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ce19190613439565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611da0838383612539565b505050565b6000611db082610e64565b9050611dbe81600084612534565b611dc9600083611900565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e19919061351a565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ebe81600084612539565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fee90613169565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120e8919061304c565b60405180910390a3505050565b612100848484611b3e565b61210c8484848461253e565b61214b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612142906130c9565b60405180910390fd5b50505050565b6060600c805461216090613604565b80601f016020809104026020016040519081016040528092919081815260200182805461218c90613604565b80156121d95780601f106121ae576101008083540402835291602001916121d9565b820191906000526020600020905b8154815290600101906020018083116121bc57829003601f168201915b5050505050905090565b6060600082141561222b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061233f565b600082905060005b6000821461225d57808061224690613667565b915050600a82612256919061348f565b9150612233565b60008167ffffffffffffffff8111156122795761227861379d565b5b6040519080825280601f01601f1916602001820160405280156122ab5781602001600182028036833780820191505090505b5090505b60008514612338576001826122c4919061351a565b9150600a856122d391906136b0565b60306122df9190613439565b60f81b8183815181106122f5576122f461376e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612331919061348f565b94506122af565b8093505050505b919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c190613249565b60405180910390fd5b6123d38161188c565b15612413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240a90613129565b60405180910390fd5b61241f60008383612534565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461246f9190613439565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461253060008383612539565b5050565b505050565b505050565b600061255f8473ffffffffffffffffffffffffffffffffffffffff166126d5565b156126c8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125886118f8565b8786866040518563ffffffff1660e01b81526004016125aa9493929190613000565b602060405180830381600087803b1580156125c457600080fd5b505af19250505080156125f557506040513d601f19601f820116820180604052508101906125f29190612ad4565b60015b612678573d8060008114612625576040519150601f19603f3d011682016040523d82523d6000602084013e61262a565b606091505b50600081511415612670576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612667906130c9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126cd565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461270490613604565b90600052602060002090601f016020900481019282612726576000855561276d565b82601f1061273f57805160ff191683800117855561276d565b8280016001018555821561276d579182015b8281111561276c578251825591602001919060010190612751565b5b50905061277a919061277e565b5090565b5b8082111561279757600081600090555060010161277f565b5090565b60006127ae6127a984613389565b613364565b9050828152602081018484840111156127ca576127c96137d1565b5b6127d58482856135c2565b509392505050565b60006127f06127eb846133ba565b613364565b90508281526020810184848401111561280c5761280b6137d1565b5b6128178482856135c2565b509392505050565b60008135905061282e81613db4565b92915050565b60008135905061284381613dcb565b92915050565b60008135905061285881613de2565b92915050565b60008151905061286d81613de2565b92915050565b600082601f830112612888576128876137cc565b5b813561289884826020860161279b565b91505092915050565b600082601f8301126128b6576128b56137cc565b5b81356128c68482602086016127dd565b91505092915050565b6000813590506128de81613df9565b92915050565b6000602082840312156128fa576128f96137db565b5b60006129088482850161281f565b91505092915050565b60008060408385031215612928576129276137db565b5b60006129368582860161281f565b92505060206129478582860161281f565b9150509250929050565b60008060006060848603121561296a576129696137db565b5b60006129788682870161281f565b93505060206129898682870161281f565b925050604061299a868287016128cf565b9150509250925092565b600080600080608085870312156129be576129bd6137db565b5b60006129cc8782880161281f565b94505060206129dd8782880161281f565b93505060406129ee878288016128cf565b925050606085013567ffffffffffffffff811115612a0f57612a0e6137d6565b5b612a1b87828801612873565b91505092959194509250565b60008060408385031215612a3e57612a3d6137db565b5b6000612a4c8582860161281f565b9250506020612a5d85828601612834565b9150509250929050565b60008060408385031215612a7e57612a7d6137db565b5b6000612a8c8582860161281f565b9250506020612a9d858286016128cf565b9150509250929050565b600060208284031215612abd57612abc6137db565b5b6000612acb84828501612849565b91505092915050565b600060208284031215612aea57612ae96137db565b5b6000612af88482850161285e565b91505092915050565b600060208284031215612b1757612b166137db565b5b600082013567ffffffffffffffff811115612b3557612b346137d6565b5b612b41848285016128a1565b91505092915050565b600060208284031215612b6057612b5f6137db565b5b6000612b6e848285016128cf565b91505092915050565b60008060408385031215612b8e57612b8d6137db565b5b6000612b9c858286016128cf565b9250506020612bad8582860161281f565b9150509250929050565b612bc08161354e565b82525050565b612bcf81613560565b82525050565b6000612be0826133eb565b612bea8185613401565b9350612bfa8185602086016135d1565b612c03816137e0565b840191505092915050565b6000612c19826133f6565b612c23818561341d565b9350612c338185602086016135d1565b612c3c816137e0565b840191505092915050565b6000612c52826133f6565b612c5c818561342e565b9350612c6c8185602086016135d1565b80840191505092915050565b6000612c8560138361341d565b9150612c90826137f1565b602082019050919050565b6000612ca860318361341d565b9150612cb38261381a565b604082019050919050565b6000612ccb60328361341d565b9150612cd682613869565b604082019050919050565b6000612cee60268361341d565b9150612cf9826138b8565b604082019050919050565b6000612d1160258361341d565b9150612d1c82613907565b604082019050919050565b6000612d34601c8361341d565b9150612d3f82613956565b602082019050919050565b6000612d5760248361341d565b9150612d628261397f565b604082019050919050565b6000612d7a60198361341d565b9150612d85826139ce565b602082019050919050565b6000612d9d60178361341d565b9150612da8826139f7565b602082019050919050565b6000612dc060228361341d565b9150612dcb82613a20565b604082019050919050565b6000612de3602c8361341d565b9150612dee82613a6f565b604082019050919050565b6000612e0660388361341d565b9150612e1182613abe565b604082019050919050565b6000612e29602a8361341d565b9150612e3482613b0d565b604082019050919050565b6000612e4c60298361341d565b9150612e5782613b5c565b604082019050919050565b6000612e6f60208361341d565b9150612e7a82613bab565b602082019050919050565b6000612e9260148361341d565b9150612e9d82613bd4565b602082019050919050565b6000612eb5602c8361341d565b9150612ec082613bfd565b604082019050919050565b6000612ed860208361341d565b9150612ee382613c4c565b602082019050919050565b6000612efb602f8361341d565b9150612f0682613c75565b604082019050919050565b6000612f1e60218361341d565b9150612f2982613cc4565b604082019050919050565b6000612f41600083613412565b9150612f4c82613d13565b600082019050919050565b6000612f6460318361341d565b9150612f6f82613d16565b604082019050919050565b6000612f8760308361341d565b9150612f9282613d65565b604082019050919050565b612fa6816135b8565b82525050565b6000612fb88285612c47565b9150612fc48284612c47565b91508190509392505050565b6000612fdb82612f34565b9150819050919050565b6000602082019050612ffa6000830184612bb7565b92915050565b60006080820190506130156000830187612bb7565b6130226020830186612bb7565b61302f6040830185612f9d565b81810360608301526130418184612bd5565b905095945050505050565b60006020820190506130616000830184612bc6565b92915050565b600060208201905081810360008301526130818184612c0e565b905092915050565b600060208201905081810360008301526130a281612c78565b9050919050565b600060208201905081810360008301526130c281612c9b565b9050919050565b600060208201905081810360008301526130e281612cbe565b9050919050565b6000602082019050818103600083015261310281612ce1565b9050919050565b6000602082019050818103600083015261312281612d04565b9050919050565b6000602082019050818103600083015261314281612d27565b9050919050565b6000602082019050818103600083015261316281612d4a565b9050919050565b6000602082019050818103600083015261318281612d6d565b9050919050565b600060208201905081810360008301526131a281612d90565b9050919050565b600060208201905081810360008301526131c281612db3565b9050919050565b600060208201905081810360008301526131e281612dd6565b9050919050565b6000602082019050818103600083015261320281612df9565b9050919050565b6000602082019050818103600083015261322281612e1c565b9050919050565b6000602082019050818103600083015261324281612e3f565b9050919050565b6000602082019050818103600083015261326281612e62565b9050919050565b6000602082019050818103600083015261328281612e85565b9050919050565b600060208201905081810360008301526132a281612ea8565b9050919050565b600060208201905081810360008301526132c281612ecb565b9050919050565b600060208201905081810360008301526132e281612eee565b9050919050565b6000602082019050818103600083015261330281612f11565b9050919050565b6000602082019050818103600083015261332281612f57565b9050919050565b6000602082019050818103600083015261334281612f7a565b9050919050565b600060208201905061335e6000830184612f9d565b92915050565b600061336e61337f565b905061337a8282613636565b919050565b6000604051905090565b600067ffffffffffffffff8211156133a4576133a361379d565b5b6133ad826137e0565b9050602081019050919050565b600067ffffffffffffffff8211156133d5576133d461379d565b5b6133de826137e0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613444826135b8565b915061344f836135b8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613484576134836136e1565b5b828201905092915050565b600061349a826135b8565b91506134a5836135b8565b9250826134b5576134b4613710565b5b828204905092915050565b60006134cb826135b8565b91506134d6836135b8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561350f5761350e6136e1565b5b828202905092915050565b6000613525826135b8565b9150613530836135b8565b925082821015613543576135426136e1565b5b828203905092915050565b600061355982613598565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156135ef5780820151818401526020810190506135d4565b838111156135fe576000848401525b50505050565b6000600282049050600182168061361c57607f821691505b602082108114156136305761362f61373f565b5b50919050565b61363f826137e0565b810181811067ffffffffffffffff8211171561365e5761365d61379d565b5b80604052505050565b6000613672826135b8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136a5576136a46136e1565b5b600182019050919050565b60006136bb826135b8565b91506136c6836135b8565b9250826136d6576136d5613710565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f596f752063616e206d696e74206265747765656e203120616e6420313020696e60008201527f206f6e65207472616e73616374696f6e2e000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4661696c656420746f2073656e6420746f206f776e6572000000000000000000600082015250565b7f43616e206e6f74206d696e74206d6f7265207468616e206d617820737570706c60008201527f792e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b613dbd8161354e565b8114613dc857600080fd5b50565b613dd481613560565b8114613ddf57600080fd5b50565b613deb8161356c565b8114613df657600080fd5b50565b613e02816135b8565b8114613e0d57600080fd5b5056fea2646970667358221220777866380715f2ac2015ad70cb9e6126121a2329ba182dd898ba8f736b3092ec64736f6c63430008060033
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.