ERC-721
Overview
Max Total Supply
565 WGMI
Holders
119
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 WGMILoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WGMI2D
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; contract WGMI2D is ERC721, Ownable { using Strings for uint256; Counters.Counter private supply; bool public publicsaleActive = false; string private _baseURIextended; using Counters for Counters.Counter; uint256 public constant MAX_SUPPLY = 6969; uint256 public constant MAX_PUBLIC_MINT = 20; uint256 public constant MAX_CLAIMABLE = 5; uint256 public constant PRICE_PER_TOKEN = 0.033 ether; bool public revealed; string public hiddenMetadataUri = "ipfs://QmcBZzugWkKtDRVysned7YbHx1de2K97GHa7iM4JA8XxD8"; address t1 = 0xfE993FAA5633709e4845C0b007847330bEE54596; address t2 = 0xd0C98B30CD8FE8cBE21f7db5D3Cd67293eB7eCD6; address t3 = 0x3635fb724712486F8e2894D13D8e3Ac32E80879C; mapping(address => uint256) public claimCounter; constructor() ERC721("WGMI2D", "WGMI") {} function mint(uint numberOfTokens) public payable { uint256 claimedPerUser = claimCounter[msg.sender]; require(publicsaleActive, "Sale must be active to mint tokens"); require(totalSupply() + numberOfTokens <= MAX_SUPPLY, "Purchase would exceed max tokens"); if (totalSupply() + numberOfTokens > 555) { require(numberOfTokens <= MAX_PUBLIC_MINT, "Maximum 20 per tx!"); require(PRICE_PER_TOKEN * numberOfTokens <= msg.value, "Ether value sent is not correct"); } else { require(numberOfTokens <= MAX_CLAIMABLE, "Cannot claim more than 5"); require(claimedPerUser + numberOfTokens <= MAX_CLAIMABLE, "Cannot claim any more"); claimCounter[msg.sender] = claimedPerUser + numberOfTokens; } _mintLoop(msg.sender, numberOfTokens); } function _mintLoop(address _receiver, uint256 _mintAmount) internal { for (uint256 i = 0; i < _mintAmount; i++) { supply.increment(); _safeMint(_receiver, supply.current()); } } function setBaseURI(string memory baseURI_) external onlyOwner() { _baseURIextended = baseURI_; } function _baseURI() internal view virtual override returns (string memory) { return _baseURIextended; } function totalSupply() public view virtual returns (uint256) { return supply.current(); } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token!"); if (revealed == false) { return hiddenMetadataUri; } string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, _tokenId.toString())) : ""; } function setSaleState(bool newState) public onlyOwner { publicsaleActive = newState; } function setRevealStatus(bool newState) public onlyOwner { revealed = newState; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function withdraw() public onlyOwner { uint256 _each = address(this).balance / 100; require(payable(t1).send(_each * 70)); require(payable(t2).send(_each * 20)); require(payable(t3).send(_each * 10)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.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 overriden 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 || getApproved(tokenId) == spender || isApprovedForAll(owner, 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 (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 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 (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`, 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 Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 `IERC721.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":"MAX_CLAIMABLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_PER_TOKEN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"","type":"address"}],"name":"claimCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"publicsaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setRevealStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600860006101000a81548160ff021916908315150217905550604051806060016040528060358152602001620040fb60359139600b908051906020019062000050929190620002f2565b5073fe993faa5633709e4845c0b007847330bee54596600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d0c98b30cd8fe8cbe21f7db5d3cd67293eb7ecd6600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550733635fb724712486f8e2894d13d8e3ac32e80879c600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200015d57600080fd5b506040518060400160405280600681526020017f57474d49324400000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f57474d49000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001e2929190620002f2565b508060019080519060200190620001fb929190620002f2565b5050506200021e620002126200022460201b60201c565b6200022c60201b60201c565b62000407565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200030090620003a2565b90600052602060002090601f01602090048101928262000324576000855562000370565b82601f106200033f57805160ff191683800117855562000370565b8280016001018555821562000370579182015b828111156200036f57825182559160200191906001019062000352565b5b5090506200037f919062000383565b5090565b5b808211156200039e57600081600090555060010162000384565b5090565b60006002820490506001821680620003bb57607f821691505b60208210811415620003d257620003d1620003d8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613ce480620004176000396000f3fe6080604052600436106101d85760003560e01c806365f1309711610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd14610677578063cd519e9a146106b4578063e985e9c5146106df578063f2fde38b1461071c576101d8565b8063a22cb465146105d1578063a45ba8e7146105fa578063b88d4fde14610625578063c4e370951461064e576101d8565b806384c99fb4116100d157806384c99fb4146105365780638da5cb5b1461055f57806395d89b411461058a578063a0712d68146105b5576101d8565b806365f130971461048c57806370a08231146104b7578063715018a6146104f4578063833b94991461050b576101d8565b80633432123d1161017a578063518302271161014957806351830227146103be57806355f804b3146103e95780636352211e1461041257806363ebcbf61461044f576101d8565b80633432123d1461032a5780633ccfd60b1461035557806342842e0e1461036c5780634fdd43cb14610395576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d657806332cb6b0c146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612a6e565b610745565b6040516102119190612f87565b60405180910390f35b34801561022657600080fd5b5061022f610827565b60405161023c9190612fa2565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612b01565b6108b9565b6040516102799190612f20565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612a09565b61093e565b005b3480156102b757600080fd5b506102c0610a56565b6040516102cd9190613284565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612903565b610a67565b005b34801561030b57600080fd5b50610314610ac7565b6040516103219190613284565b60405180910390f35b34801561033657600080fd5b5061033f610acd565b60405161034c9190612f87565b60405180910390f35b34801561036157600080fd5b5061036a610ae0565b005b34801561037857600080fd5b50610393600480360381019061038e9190612903565b610cb4565b005b3480156103a157600080fd5b506103bc60048036038101906103b79190612ac0565b610cd4565b005b3480156103ca57600080fd5b506103d3610d6a565b6040516103e09190612f87565b60405180910390f35b3480156103f557600080fd5b50610410600480360381019061040b9190612ac0565b610d7d565b005b34801561041e57600080fd5b5061043960048036038101906104349190612b01565b610e13565b6040516104469190612f20565b60405180910390f35b34801561045b57600080fd5b506104766004803603810190610471919061289e565b610ec5565b6040516104839190613284565b60405180910390f35b34801561049857600080fd5b506104a1610edd565b6040516104ae9190613284565b60405180910390f35b3480156104c357600080fd5b506104de60048036038101906104d9919061289e565b610ee2565b6040516104eb9190613284565b60405180910390f35b34801561050057600080fd5b50610509610f9a565b005b34801561051757600080fd5b50610520611022565b60405161052d9190613284565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190612a45565b61102d565b005b34801561056b57600080fd5b506105746110c6565b6040516105819190612f20565b60405180910390f35b34801561059657600080fd5b5061059f6110f0565b6040516105ac9190612fa2565b60405180910390f35b6105cf60048036038101906105ca9190612b01565b611182565b005b3480156105dd57600080fd5b506105f860048036038101906105f391906129cd565b611417565b005b34801561060657600080fd5b5061060f61142d565b60405161061c9190612fa2565b60405180910390f35b34801561063157600080fd5b5061064c60048036038101906106479190612952565b6114bb565b005b34801561065a57600080fd5b5061067560048036038101906106709190612a45565b61151d565b005b34801561068357600080fd5b5061069e60048036038101906106999190612b01565b6115b6565b6040516106ab9190612fa2565b60405180910390f35b3480156106c057600080fd5b506106c961170c565b6040516106d69190613284565b60405180910390f35b3480156106eb57600080fd5b50610706600480360381019061070191906128c7565b611711565b6040516107139190612f87565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e919061289e565b6117a5565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610820575061081f8261189d565b5b9050919050565b60606000805461083690613534565b80601f016020809104026020016040519081016040528092919081815260200182805461086290613534565b80156108af5780601f10610884576101008083540402835291602001916108af565b820191906000526020600020905b81548152906001019060200180831161089257829003601f168201915b5050505050905090565b60006108c482611907565b610903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fa906131c4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094982610e13565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b190613224565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109d9611973565b73ffffffffffffffffffffffffffffffffffffffff161480610a085750610a0781610a02611973565b611711565b5b610a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3e90613104565b60405180910390fd5b610a51838361197b565b505050565b6000610a626007611a34565b905090565b610a78610a72611973565b82611a42565b610ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aae90613244565b60405180910390fd5b610ac2838383611b20565b505050565b611b3981565b600860009054906101000a900460ff1681565b610ae8611973565b73ffffffffffffffffffffffffffffffffffffffff16610b066110c6565b73ffffffffffffffffffffffffffffffffffffffff1614610b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b53906131e4565b60405180910390fd5b6000606447610b6b91906133bf565b9050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc604683610bb691906133f0565b9081150290604051600060405180830381858888f19350505050610bd957600080fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc601483610c2291906133f0565b9081150290604051600060405180830381858888f19350505050610c4557600080fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc600a83610c8e91906133f0565b9081150290604051600060405180830381858888f19350505050610cb157600080fd5b50565b610ccf838383604051806020016040528060008152506114bb565b505050565b610cdc611973565b73ffffffffffffffffffffffffffffffffffffffff16610cfa6110c6565b73ffffffffffffffffffffffffffffffffffffffff1614610d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d47906131e4565b60405180910390fd5b80600b9080519060200190610d669291906126c2565b5050565b600a60009054906101000a900460ff1681565b610d85611973565b73ffffffffffffffffffffffffffffffffffffffff16610da36110c6565b73ffffffffffffffffffffffffffffffffffffffff1614610df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df0906131e4565b60405180910390fd5b8060099080519060200190610e0f9291906126c2565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb390613144565b60405180910390fd5b80915050919050565b600f6020528060005260406000206000915090505481565b601481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4a90613124565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fa2611973565b73ffffffffffffffffffffffffffffffffffffffff16610fc06110c6565b73ffffffffffffffffffffffffffffffffffffffff1614611016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100d906131e4565b60405180910390fd5b6110206000611d87565b565b66753d533d96800081565b611035611973565b73ffffffffffffffffffffffffffffffffffffffff166110536110c6565b73ffffffffffffffffffffffffffffffffffffffff16146110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a0906131e4565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546110ff90613534565b80601f016020809104026020016040519081016040528092919081815260200182805461112b90613534565b80156111785780601f1061114d57610100808354040283529160200191611178565b820191906000526020600020905b81548152906001019060200180831161115b57829003601f168201915b5050505050905090565b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600860009054906101000a900460ff16611215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120c90613204565b60405180910390fd5b611b3982611221610a56565b61122b9190613369565b111561126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390613004565b60405180910390fd5b61022b82611278610a56565b6112829190613369565b11156113265760148211156112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c390613264565b60405180910390fd5b348266753d533d9680006112e091906133f0565b1115611321576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611318906130c4565b60405180910390fd5b611409565b600582111561136a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611361906131a4565b60405180910390fd5b600582826113789190613369565b11156113b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b090613164565b60405180910390fd5b81816113c59190613369565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6114133383611e4d565b5050565b611429611422611973565b8383611e8d565b5050565b600b805461143a90613534565b80601f016020809104026020016040519081016040528092919081815260200182805461146690613534565b80156114b35780601f10611488576101008083540402835291602001916114b3565b820191906000526020600020905b81548152906001019060200180831161149657829003601f168201915b505050505081565b6114cc6114c6611973565b83611a42565b61150b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150290613244565b60405180910390fd5b61151784848484611ffa565b50505050565b611525611973565b73ffffffffffffffffffffffffffffffffffffffff166115436110c6565b73ffffffffffffffffffffffffffffffffffffffff1614611599576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611590906131e4565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b60606115c182611907565b611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f790613064565b60405180910390fd5b60001515600a60009054906101000a900460ff16151514156116ae57600b805461162990613534565b80601f016020809104026020016040519081016040528092919081815260200182805461165590613534565b80156116a25780601f10611677576101008083540402835291602001916116a2565b820191906000526020600020905b81548152906001019060200180831161168557829003601f168201915b50505050509050611707565b60006116b8612056565b905060008151116116d85760405180602001604052806000815250611703565b806116e2846120e8565b6040516020016116f3929190612efc565b6040516020818303038152906040525b9150505b919050565b600581565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117ad611973565b73ffffffffffffffffffffffffffffffffffffffff166117cb6110c6565b73ffffffffffffffffffffffffffffffffffffffff1614611821576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611818906131e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188890612fe4565b60405180910390fd5b61189a81611d87565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119ee83610e13565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611a4d82611907565b611a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a83906130e4565b60405180910390fd5b6000611a9783610e13565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b0657508373ffffffffffffffffffffffffffffffffffffffff16611aee846108b9565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b175750611b168185611711565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b4082610e13565b73ffffffffffffffffffffffffffffffffffffffff1614611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d90613024565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfd90613084565b60405180910390fd5b611c11838383612295565b611c1c60008261197b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c6c919061344a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cc39190613369565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d8283838361229a565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611e8857611e62600761229f565b611e7583611e706007611a34565b6122b5565b8080611e8090613597565b915050611e50565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef3906130a4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fed9190612f87565b60405180910390a3505050565b612005848484611b20565b612011848484846122d3565b612050576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204790612fc4565b60405180910390fd5b50505050565b60606009805461206590613534565b80601f016020809104026020016040519081016040528092919081815260200182805461209190613534565b80156120de5780601f106120b3576101008083540402835291602001916120de565b820191906000526020600020905b8154815290600101906020018083116120c157829003601f168201915b5050505050905090565b60606000821415612130576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612290565b600082905060005b6000821461216257808061214b90613597565b915050600a8261215b91906133bf565b9150612138565b60008167ffffffffffffffff8111156121a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121d65781602001600182028036833780820191505090505b5090505b60008514612289576001826121ef919061344a565b9150600a856121fe91906135e0565b603061220a9190613369565b60f81b818381518110612246577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561228291906133bf565b94506121da565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b6122cf82826040518060200160405280600081525061246a565b5050565b60006122f48473ffffffffffffffffffffffffffffffffffffffff166124c5565b1561245d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261231d611973565b8786866040518563ffffffff1660e01b815260040161233f9493929190612f3b565b602060405180830381600087803b15801561235957600080fd5b505af192505050801561238a57506040513d601f19601f820116820180604052508101906123879190612a97565b60015b61240d573d80600081146123ba576040519150601f19603f3d011682016040523d82523d6000602084013e6123bf565b606091505b50600081511415612405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc90612fc4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612462565b600190505b949350505050565b61247483836124e8565b61248160008484846122d3565b6124c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b790612fc4565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254f90613184565b60405180910390fd5b61256181611907565b156125a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259890613044565b60405180910390fd5b6125ad60008383612295565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125fd9190613369565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126be6000838361229a565b5050565b8280546126ce90613534565b90600052602060002090601f0160209004810192826126f05760008555612737565b82601f1061270957805160ff1916838001178555612737565b82800160010185558215612737579182015b8281111561273657825182559160200191906001019061271b565b5b5090506127449190612748565b5090565b5b80821115612761576000816000905550600101612749565b5090565b6000612778612773846132c4565b61329f565b90508281526020810184848401111561279057600080fd5b61279b8482856134f2565b509392505050565b60006127b66127b1846132f5565b61329f565b9050828152602081018484840111156127ce57600080fd5b6127d98482856134f2565b509392505050565b6000813590506127f081613c52565b92915050565b60008135905061280581613c69565b92915050565b60008135905061281a81613c80565b92915050565b60008151905061282f81613c80565b92915050565b600082601f83011261284657600080fd5b8135612856848260208601612765565b91505092915050565b600082601f83011261287057600080fd5b81356128808482602086016127a3565b91505092915050565b60008135905061289881613c97565b92915050565b6000602082840312156128b057600080fd5b60006128be848285016127e1565b91505092915050565b600080604083850312156128da57600080fd5b60006128e8858286016127e1565b92505060206128f9858286016127e1565b9150509250929050565b60008060006060848603121561291857600080fd5b6000612926868287016127e1565b9350506020612937868287016127e1565b925050604061294886828701612889565b9150509250925092565b6000806000806080858703121561296857600080fd5b6000612976878288016127e1565b9450506020612987878288016127e1565b935050604061299887828801612889565b925050606085013567ffffffffffffffff8111156129b557600080fd5b6129c187828801612835565b91505092959194509250565b600080604083850312156129e057600080fd5b60006129ee858286016127e1565b92505060206129ff858286016127f6565b9150509250929050565b60008060408385031215612a1c57600080fd5b6000612a2a858286016127e1565b9250506020612a3b85828601612889565b9150509250929050565b600060208284031215612a5757600080fd5b6000612a65848285016127f6565b91505092915050565b600060208284031215612a8057600080fd5b6000612a8e8482850161280b565b91505092915050565b600060208284031215612aa957600080fd5b6000612ab784828501612820565b91505092915050565b600060208284031215612ad257600080fd5b600082013567ffffffffffffffff811115612aec57600080fd5b612af88482850161285f565b91505092915050565b600060208284031215612b1357600080fd5b6000612b2184828501612889565b91505092915050565b612b338161347e565b82525050565b612b4281613490565b82525050565b6000612b5382613326565b612b5d818561333c565b9350612b6d818560208601613501565b612b76816136cd565b840191505092915050565b6000612b8c82613331565b612b96818561334d565b9350612ba6818560208601613501565b612baf816136cd565b840191505092915050565b6000612bc582613331565b612bcf818561335e565b9350612bdf818560208601613501565b80840191505092915050565b6000612bf860328361334d565b9150612c03826136de565b604082019050919050565b6000612c1b60268361334d565b9150612c268261372d565b604082019050919050565b6000612c3e60208361334d565b9150612c498261377c565b602082019050919050565b6000612c6160258361334d565b9150612c6c826137a5565b604082019050919050565b6000612c84601c8361334d565b9150612c8f826137f4565b602082019050919050565b6000612ca760308361334d565b9150612cb28261381d565b604082019050919050565b6000612cca60248361334d565b9150612cd58261386c565b604082019050919050565b6000612ced60198361334d565b9150612cf8826138bb565b602082019050919050565b6000612d10601f8361334d565b9150612d1b826138e4565b602082019050919050565b6000612d33602c8361334d565b9150612d3e8261390d565b604082019050919050565b6000612d5660388361334d565b9150612d618261395c565b604082019050919050565b6000612d79602a8361334d565b9150612d84826139ab565b604082019050919050565b6000612d9c60298361334d565b9150612da7826139fa565b604082019050919050565b6000612dbf60158361334d565b9150612dca82613a49565b602082019050919050565b6000612de260208361334d565b9150612ded82613a72565b602082019050919050565b6000612e0560188361334d565b9150612e1082613a9b565b602082019050919050565b6000612e28602c8361334d565b9150612e3382613ac4565b604082019050919050565b6000612e4b60208361334d565b9150612e5682613b13565b602082019050919050565b6000612e6e60228361334d565b9150612e7982613b3c565b604082019050919050565b6000612e9160218361334d565b9150612e9c82613b8b565b604082019050919050565b6000612eb460318361334d565b9150612ebf82613bda565b604082019050919050565b6000612ed760128361334d565b9150612ee282613c29565b602082019050919050565b612ef6816134e8565b82525050565b6000612f088285612bba565b9150612f148284612bba565b91508190509392505050565b6000602082019050612f356000830184612b2a565b92915050565b6000608082019050612f506000830187612b2a565b612f5d6020830186612b2a565b612f6a6040830185612eed565b8181036060830152612f7c8184612b48565b905095945050505050565b6000602082019050612f9c6000830184612b39565b92915050565b60006020820190508181036000830152612fbc8184612b81565b905092915050565b60006020820190508181036000830152612fdd81612beb565b9050919050565b60006020820190508181036000830152612ffd81612c0e565b9050919050565b6000602082019050818103600083015261301d81612c31565b9050919050565b6000602082019050818103600083015261303d81612c54565b9050919050565b6000602082019050818103600083015261305d81612c77565b9050919050565b6000602082019050818103600083015261307d81612c9a565b9050919050565b6000602082019050818103600083015261309d81612cbd565b9050919050565b600060208201905081810360008301526130bd81612ce0565b9050919050565b600060208201905081810360008301526130dd81612d03565b9050919050565b600060208201905081810360008301526130fd81612d26565b9050919050565b6000602082019050818103600083015261311d81612d49565b9050919050565b6000602082019050818103600083015261313d81612d6c565b9050919050565b6000602082019050818103600083015261315d81612d8f565b9050919050565b6000602082019050818103600083015261317d81612db2565b9050919050565b6000602082019050818103600083015261319d81612dd5565b9050919050565b600060208201905081810360008301526131bd81612df8565b9050919050565b600060208201905081810360008301526131dd81612e1b565b9050919050565b600060208201905081810360008301526131fd81612e3e565b9050919050565b6000602082019050818103600083015261321d81612e61565b9050919050565b6000602082019050818103600083015261323d81612e84565b9050919050565b6000602082019050818103600083015261325d81612ea7565b9050919050565b6000602082019050818103600083015261327d81612eca565b9050919050565b60006020820190506132996000830184612eed565b92915050565b60006132a96132ba565b90506132b58282613566565b919050565b6000604051905090565b600067ffffffffffffffff8211156132df576132de61369e565b5b6132e8826136cd565b9050602081019050919050565b600067ffffffffffffffff8211156133105761330f61369e565b5b613319826136cd565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613374826134e8565b915061337f836134e8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133b4576133b3613611565b5b828201905092915050565b60006133ca826134e8565b91506133d5836134e8565b9250826133e5576133e4613640565b5b828204905092915050565b60006133fb826134e8565b9150613406836134e8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561343f5761343e613611565b5b828202905092915050565b6000613455826134e8565b9150613460836134e8565b92508282101561347357613472613611565b5b828203905092915050565b6000613489826134c8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561351f578082015181840152602081019050613504565b8381111561352e576000848401525b50505050565b6000600282049050600182168061354c57607f821691505b602082108114156135605761355f61366f565b5b50919050565b61356f826136cd565b810181811067ffffffffffffffff8211171561358e5761358d61369e565b5b80604052505050565b60006135a2826134e8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135d5576135d4613611565b5b600182019050919050565b60006135eb826134e8565b91506135f6836134e8565b92508261360657613605613640565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e2100000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f7420636c61696d20616e79206d6f72650000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f43616e6e6f7420636c61696d206d6f7265207468616e20350000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d6178696d756d20323020706572207478210000000000000000000000000000600082015250565b613c5b8161347e565b8114613c6657600080fd5b50565b613c7281613490565b8114613c7d57600080fd5b50565b613c898161349c565b8114613c9457600080fd5b50565b613ca0816134e8565b8114613cab57600080fd5b5056fea2646970667358221220cd5a7bcd95dca53b6b1187d8effd122c5b8c658232011c70b4b942ec153ba5a464736f6c63430008040033697066733a2f2f516d63425a7a7567576b4b7444525679736e65643759624878316465324b393747486137694d344a413858784438
Deployed Bytecode
0x6080604052600436106101d85760003560e01c806365f1309711610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd14610677578063cd519e9a146106b4578063e985e9c5146106df578063f2fde38b1461071c576101d8565b8063a22cb465146105d1578063a45ba8e7146105fa578063b88d4fde14610625578063c4e370951461064e576101d8565b806384c99fb4116100d157806384c99fb4146105365780638da5cb5b1461055f57806395d89b411461058a578063a0712d68146105b5576101d8565b806365f130971461048c57806370a08231146104b7578063715018a6146104f4578063833b94991461050b576101d8565b80633432123d1161017a578063518302271161014957806351830227146103be57806355f804b3146103e95780636352211e1461041257806363ebcbf61461044f576101d8565b80633432123d1461032a5780633ccfd60b1461035557806342842e0e1461036c5780634fdd43cb14610395576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d657806332cb6b0c146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612a6e565b610745565b6040516102119190612f87565b60405180910390f35b34801561022657600080fd5b5061022f610827565b60405161023c9190612fa2565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612b01565b6108b9565b6040516102799190612f20565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612a09565b61093e565b005b3480156102b757600080fd5b506102c0610a56565b6040516102cd9190613284565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612903565b610a67565b005b34801561030b57600080fd5b50610314610ac7565b6040516103219190613284565b60405180910390f35b34801561033657600080fd5b5061033f610acd565b60405161034c9190612f87565b60405180910390f35b34801561036157600080fd5b5061036a610ae0565b005b34801561037857600080fd5b50610393600480360381019061038e9190612903565b610cb4565b005b3480156103a157600080fd5b506103bc60048036038101906103b79190612ac0565b610cd4565b005b3480156103ca57600080fd5b506103d3610d6a565b6040516103e09190612f87565b60405180910390f35b3480156103f557600080fd5b50610410600480360381019061040b9190612ac0565b610d7d565b005b34801561041e57600080fd5b5061043960048036038101906104349190612b01565b610e13565b6040516104469190612f20565b60405180910390f35b34801561045b57600080fd5b506104766004803603810190610471919061289e565b610ec5565b6040516104839190613284565b60405180910390f35b34801561049857600080fd5b506104a1610edd565b6040516104ae9190613284565b60405180910390f35b3480156104c357600080fd5b506104de60048036038101906104d9919061289e565b610ee2565b6040516104eb9190613284565b60405180910390f35b34801561050057600080fd5b50610509610f9a565b005b34801561051757600080fd5b50610520611022565b60405161052d9190613284565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190612a45565b61102d565b005b34801561056b57600080fd5b506105746110c6565b6040516105819190612f20565b60405180910390f35b34801561059657600080fd5b5061059f6110f0565b6040516105ac9190612fa2565b60405180910390f35b6105cf60048036038101906105ca9190612b01565b611182565b005b3480156105dd57600080fd5b506105f860048036038101906105f391906129cd565b611417565b005b34801561060657600080fd5b5061060f61142d565b60405161061c9190612fa2565b60405180910390f35b34801561063157600080fd5b5061064c60048036038101906106479190612952565b6114bb565b005b34801561065a57600080fd5b5061067560048036038101906106709190612a45565b61151d565b005b34801561068357600080fd5b5061069e60048036038101906106999190612b01565b6115b6565b6040516106ab9190612fa2565b60405180910390f35b3480156106c057600080fd5b506106c961170c565b6040516106d69190613284565b60405180910390f35b3480156106eb57600080fd5b50610706600480360381019061070191906128c7565b611711565b6040516107139190612f87565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e919061289e565b6117a5565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610820575061081f8261189d565b5b9050919050565b60606000805461083690613534565b80601f016020809104026020016040519081016040528092919081815260200182805461086290613534565b80156108af5780601f10610884576101008083540402835291602001916108af565b820191906000526020600020905b81548152906001019060200180831161089257829003601f168201915b5050505050905090565b60006108c482611907565b610903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fa906131c4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094982610e13565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b190613224565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109d9611973565b73ffffffffffffffffffffffffffffffffffffffff161480610a085750610a0781610a02611973565b611711565b5b610a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3e90613104565b60405180910390fd5b610a51838361197b565b505050565b6000610a626007611a34565b905090565b610a78610a72611973565b82611a42565b610ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aae90613244565b60405180910390fd5b610ac2838383611b20565b505050565b611b3981565b600860009054906101000a900460ff1681565b610ae8611973565b73ffffffffffffffffffffffffffffffffffffffff16610b066110c6565b73ffffffffffffffffffffffffffffffffffffffff1614610b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b53906131e4565b60405180910390fd5b6000606447610b6b91906133bf565b9050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc604683610bb691906133f0565b9081150290604051600060405180830381858888f19350505050610bd957600080fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc601483610c2291906133f0565b9081150290604051600060405180830381858888f19350505050610c4557600080fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc600a83610c8e91906133f0565b9081150290604051600060405180830381858888f19350505050610cb157600080fd5b50565b610ccf838383604051806020016040528060008152506114bb565b505050565b610cdc611973565b73ffffffffffffffffffffffffffffffffffffffff16610cfa6110c6565b73ffffffffffffffffffffffffffffffffffffffff1614610d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d47906131e4565b60405180910390fd5b80600b9080519060200190610d669291906126c2565b5050565b600a60009054906101000a900460ff1681565b610d85611973565b73ffffffffffffffffffffffffffffffffffffffff16610da36110c6565b73ffffffffffffffffffffffffffffffffffffffff1614610df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df0906131e4565b60405180910390fd5b8060099080519060200190610e0f9291906126c2565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb390613144565b60405180910390fd5b80915050919050565b600f6020528060005260406000206000915090505481565b601481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4a90613124565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fa2611973565b73ffffffffffffffffffffffffffffffffffffffff16610fc06110c6565b73ffffffffffffffffffffffffffffffffffffffff1614611016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100d906131e4565b60405180910390fd5b6110206000611d87565b565b66753d533d96800081565b611035611973565b73ffffffffffffffffffffffffffffffffffffffff166110536110c6565b73ffffffffffffffffffffffffffffffffffffffff16146110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a0906131e4565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546110ff90613534565b80601f016020809104026020016040519081016040528092919081815260200182805461112b90613534565b80156111785780601f1061114d57610100808354040283529160200191611178565b820191906000526020600020905b81548152906001019060200180831161115b57829003601f168201915b5050505050905090565b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600860009054906101000a900460ff16611215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120c90613204565b60405180910390fd5b611b3982611221610a56565b61122b9190613369565b111561126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390613004565b60405180910390fd5b61022b82611278610a56565b6112829190613369565b11156113265760148211156112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c390613264565b60405180910390fd5b348266753d533d9680006112e091906133f0565b1115611321576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611318906130c4565b60405180910390fd5b611409565b600582111561136a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611361906131a4565b60405180910390fd5b600582826113789190613369565b11156113b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b090613164565b60405180910390fd5b81816113c59190613369565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6114133383611e4d565b5050565b611429611422611973565b8383611e8d565b5050565b600b805461143a90613534565b80601f016020809104026020016040519081016040528092919081815260200182805461146690613534565b80156114b35780601f10611488576101008083540402835291602001916114b3565b820191906000526020600020905b81548152906001019060200180831161149657829003601f168201915b505050505081565b6114cc6114c6611973565b83611a42565b61150b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150290613244565b60405180910390fd5b61151784848484611ffa565b50505050565b611525611973565b73ffffffffffffffffffffffffffffffffffffffff166115436110c6565b73ffffffffffffffffffffffffffffffffffffffff1614611599576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611590906131e4565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b60606115c182611907565b611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f790613064565b60405180910390fd5b60001515600a60009054906101000a900460ff16151514156116ae57600b805461162990613534565b80601f016020809104026020016040519081016040528092919081815260200182805461165590613534565b80156116a25780601f10611677576101008083540402835291602001916116a2565b820191906000526020600020905b81548152906001019060200180831161168557829003601f168201915b50505050509050611707565b60006116b8612056565b905060008151116116d85760405180602001604052806000815250611703565b806116e2846120e8565b6040516020016116f3929190612efc565b6040516020818303038152906040525b9150505b919050565b600581565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117ad611973565b73ffffffffffffffffffffffffffffffffffffffff166117cb6110c6565b73ffffffffffffffffffffffffffffffffffffffff1614611821576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611818906131e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188890612fe4565b60405180910390fd5b61189a81611d87565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119ee83610e13565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611a4d82611907565b611a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a83906130e4565b60405180910390fd5b6000611a9783610e13565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b0657508373ffffffffffffffffffffffffffffffffffffffff16611aee846108b9565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b175750611b168185611711565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b4082610e13565b73ffffffffffffffffffffffffffffffffffffffff1614611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d90613024565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfd90613084565b60405180910390fd5b611c11838383612295565b611c1c60008261197b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c6c919061344a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cc39190613369565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d8283838361229a565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611e8857611e62600761229f565b611e7583611e706007611a34565b6122b5565b8080611e8090613597565b915050611e50565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef3906130a4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fed9190612f87565b60405180910390a3505050565b612005848484611b20565b612011848484846122d3565b612050576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204790612fc4565b60405180910390fd5b50505050565b60606009805461206590613534565b80601f016020809104026020016040519081016040528092919081815260200182805461209190613534565b80156120de5780601f106120b3576101008083540402835291602001916120de565b820191906000526020600020905b8154815290600101906020018083116120c157829003601f168201915b5050505050905090565b60606000821415612130576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612290565b600082905060005b6000821461216257808061214b90613597565b915050600a8261215b91906133bf565b9150612138565b60008167ffffffffffffffff8111156121a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121d65781602001600182028036833780820191505090505b5090505b60008514612289576001826121ef919061344a565b9150600a856121fe91906135e0565b603061220a9190613369565b60f81b818381518110612246577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561228291906133bf565b94506121da565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b6122cf82826040518060200160405280600081525061246a565b5050565b60006122f48473ffffffffffffffffffffffffffffffffffffffff166124c5565b1561245d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261231d611973565b8786866040518563ffffffff1660e01b815260040161233f9493929190612f3b565b602060405180830381600087803b15801561235957600080fd5b505af192505050801561238a57506040513d601f19601f820116820180604052508101906123879190612a97565b60015b61240d573d80600081146123ba576040519150601f19603f3d011682016040523d82523d6000602084013e6123bf565b606091505b50600081511415612405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc90612fc4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612462565b600190505b949350505050565b61247483836124e8565b61248160008484846122d3565b6124c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b790612fc4565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254f90613184565b60405180910390fd5b61256181611907565b156125a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259890613044565b60405180910390fd5b6125ad60008383612295565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125fd9190613369565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126be6000838361229a565b5050565b8280546126ce90613534565b90600052602060002090601f0160209004810192826126f05760008555612737565b82601f1061270957805160ff1916838001178555612737565b82800160010185558215612737579182015b8281111561273657825182559160200191906001019061271b565b5b5090506127449190612748565b5090565b5b80821115612761576000816000905550600101612749565b5090565b6000612778612773846132c4565b61329f565b90508281526020810184848401111561279057600080fd5b61279b8482856134f2565b509392505050565b60006127b66127b1846132f5565b61329f565b9050828152602081018484840111156127ce57600080fd5b6127d98482856134f2565b509392505050565b6000813590506127f081613c52565b92915050565b60008135905061280581613c69565b92915050565b60008135905061281a81613c80565b92915050565b60008151905061282f81613c80565b92915050565b600082601f83011261284657600080fd5b8135612856848260208601612765565b91505092915050565b600082601f83011261287057600080fd5b81356128808482602086016127a3565b91505092915050565b60008135905061289881613c97565b92915050565b6000602082840312156128b057600080fd5b60006128be848285016127e1565b91505092915050565b600080604083850312156128da57600080fd5b60006128e8858286016127e1565b92505060206128f9858286016127e1565b9150509250929050565b60008060006060848603121561291857600080fd5b6000612926868287016127e1565b9350506020612937868287016127e1565b925050604061294886828701612889565b9150509250925092565b6000806000806080858703121561296857600080fd5b6000612976878288016127e1565b9450506020612987878288016127e1565b935050604061299887828801612889565b925050606085013567ffffffffffffffff8111156129b557600080fd5b6129c187828801612835565b91505092959194509250565b600080604083850312156129e057600080fd5b60006129ee858286016127e1565b92505060206129ff858286016127f6565b9150509250929050565b60008060408385031215612a1c57600080fd5b6000612a2a858286016127e1565b9250506020612a3b85828601612889565b9150509250929050565b600060208284031215612a5757600080fd5b6000612a65848285016127f6565b91505092915050565b600060208284031215612a8057600080fd5b6000612a8e8482850161280b565b91505092915050565b600060208284031215612aa957600080fd5b6000612ab784828501612820565b91505092915050565b600060208284031215612ad257600080fd5b600082013567ffffffffffffffff811115612aec57600080fd5b612af88482850161285f565b91505092915050565b600060208284031215612b1357600080fd5b6000612b2184828501612889565b91505092915050565b612b338161347e565b82525050565b612b4281613490565b82525050565b6000612b5382613326565b612b5d818561333c565b9350612b6d818560208601613501565b612b76816136cd565b840191505092915050565b6000612b8c82613331565b612b96818561334d565b9350612ba6818560208601613501565b612baf816136cd565b840191505092915050565b6000612bc582613331565b612bcf818561335e565b9350612bdf818560208601613501565b80840191505092915050565b6000612bf860328361334d565b9150612c03826136de565b604082019050919050565b6000612c1b60268361334d565b9150612c268261372d565b604082019050919050565b6000612c3e60208361334d565b9150612c498261377c565b602082019050919050565b6000612c6160258361334d565b9150612c6c826137a5565b604082019050919050565b6000612c84601c8361334d565b9150612c8f826137f4565b602082019050919050565b6000612ca760308361334d565b9150612cb28261381d565b604082019050919050565b6000612cca60248361334d565b9150612cd58261386c565b604082019050919050565b6000612ced60198361334d565b9150612cf8826138bb565b602082019050919050565b6000612d10601f8361334d565b9150612d1b826138e4565b602082019050919050565b6000612d33602c8361334d565b9150612d3e8261390d565b604082019050919050565b6000612d5660388361334d565b9150612d618261395c565b604082019050919050565b6000612d79602a8361334d565b9150612d84826139ab565b604082019050919050565b6000612d9c60298361334d565b9150612da7826139fa565b604082019050919050565b6000612dbf60158361334d565b9150612dca82613a49565b602082019050919050565b6000612de260208361334d565b9150612ded82613a72565b602082019050919050565b6000612e0560188361334d565b9150612e1082613a9b565b602082019050919050565b6000612e28602c8361334d565b9150612e3382613ac4565b604082019050919050565b6000612e4b60208361334d565b9150612e5682613b13565b602082019050919050565b6000612e6e60228361334d565b9150612e7982613b3c565b604082019050919050565b6000612e9160218361334d565b9150612e9c82613b8b565b604082019050919050565b6000612eb460318361334d565b9150612ebf82613bda565b604082019050919050565b6000612ed760128361334d565b9150612ee282613c29565b602082019050919050565b612ef6816134e8565b82525050565b6000612f088285612bba565b9150612f148284612bba565b91508190509392505050565b6000602082019050612f356000830184612b2a565b92915050565b6000608082019050612f506000830187612b2a565b612f5d6020830186612b2a565b612f6a6040830185612eed565b8181036060830152612f7c8184612b48565b905095945050505050565b6000602082019050612f9c6000830184612b39565b92915050565b60006020820190508181036000830152612fbc8184612b81565b905092915050565b60006020820190508181036000830152612fdd81612beb565b9050919050565b60006020820190508181036000830152612ffd81612c0e565b9050919050565b6000602082019050818103600083015261301d81612c31565b9050919050565b6000602082019050818103600083015261303d81612c54565b9050919050565b6000602082019050818103600083015261305d81612c77565b9050919050565b6000602082019050818103600083015261307d81612c9a565b9050919050565b6000602082019050818103600083015261309d81612cbd565b9050919050565b600060208201905081810360008301526130bd81612ce0565b9050919050565b600060208201905081810360008301526130dd81612d03565b9050919050565b600060208201905081810360008301526130fd81612d26565b9050919050565b6000602082019050818103600083015261311d81612d49565b9050919050565b6000602082019050818103600083015261313d81612d6c565b9050919050565b6000602082019050818103600083015261315d81612d8f565b9050919050565b6000602082019050818103600083015261317d81612db2565b9050919050565b6000602082019050818103600083015261319d81612dd5565b9050919050565b600060208201905081810360008301526131bd81612df8565b9050919050565b600060208201905081810360008301526131dd81612e1b565b9050919050565b600060208201905081810360008301526131fd81612e3e565b9050919050565b6000602082019050818103600083015261321d81612e61565b9050919050565b6000602082019050818103600083015261323d81612e84565b9050919050565b6000602082019050818103600083015261325d81612ea7565b9050919050565b6000602082019050818103600083015261327d81612eca565b9050919050565b60006020820190506132996000830184612eed565b92915050565b60006132a96132ba565b90506132b58282613566565b919050565b6000604051905090565b600067ffffffffffffffff8211156132df576132de61369e565b5b6132e8826136cd565b9050602081019050919050565b600067ffffffffffffffff8211156133105761330f61369e565b5b613319826136cd565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613374826134e8565b915061337f836134e8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133b4576133b3613611565b5b828201905092915050565b60006133ca826134e8565b91506133d5836134e8565b9250826133e5576133e4613640565b5b828204905092915050565b60006133fb826134e8565b9150613406836134e8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561343f5761343e613611565b5b828202905092915050565b6000613455826134e8565b9150613460836134e8565b92508282101561347357613472613611565b5b828203905092915050565b6000613489826134c8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561351f578082015181840152602081019050613504565b8381111561352e576000848401525b50505050565b6000600282049050600182168061354c57607f821691505b602082108114156135605761355f61366f565b5b50919050565b61356f826136cd565b810181811067ffffffffffffffff8211171561358e5761358d61369e565b5b80604052505050565b60006135a2826134e8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135d5576135d4613611565b5b600182019050919050565b60006135eb826134e8565b91506135f6836134e8565b92508261360657613605613640565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e2100000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f7420636c61696d20616e79206d6f72650000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f43616e6e6f7420636c61696d206d6f7265207468616e20350000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d6178696d756d20323020706572207478210000000000000000000000000000600082015250565b613c5b8161347e565b8114613c6657600080fd5b50565b613c7281613490565b8114613c7d57600080fd5b50565b613c898161349c565b8114613c9457600080fd5b50565b613ca0816134e8565b8114613cab57600080fd5b5056fea2646970667358221220cd5a7bcd95dca53b6b1187d8effd122c5b8c658232011c70b4b942ec153ba5a464736f6c63430008040033
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.