Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
6,969 TT
Holders
2,679
Market
Volume (24H)
0.0096 ETH
Min Price (24H)
$25.20 @ 0.009600 ETH
Max Price (24H)
$25.20 @ 0.009600 ETH
Other Info
Token Contract
Balance
1 TTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TrippyToadz
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /* * Contract by pr0xy.io * ______ _ ______ __ * /_ __/___(_)__ ___ __ __ /_ __/__ ___ ____/ /__ * / / / __/ / _ \/ _ \/ // / / / / _ \/ _ `/ _ /_ / * /_/ /_/ /_/ .__/ .__/\_, / /_/ \___/\_,_/\_,_//__/ * /_/ /_/ /___/ */ pragma solidity ^0.8.7; import './ERC721Enumerable.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol'; contract TrippyToadz is ERC721Enumerable, Ownable { bytes32 public merkleRoot; string public baseTokenURI; uint public price; uint public status; mapping(uint => mapping(address => bool)) public denylist; constructor() ERC721("TrippyToadz", "TT") {} function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setBaseTokenURI(string calldata _baseTokenURI) external onlyOwner { baseTokenURI = _baseTokenURI; } function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner { merkleRoot = _merkleRoot; } function setPrice(uint _price) external onlyOwner { price = _price; } function setStatus(uint _status) external onlyOwner { status = _status; } function claim(bytes32[] calldata _merkleProof, uint256 _amount) external { uint256 supply = totalSupply(); bytes32 leaf = keccak256(abi.encodePacked(msg.sender, _amount)); require(status == 1, 'Not Active'); require(!denylist[0][msg.sender], 'Mint Claimed'); require(supply + _amount < 6970, 'Supply Denied'); require(tx.origin == msg.sender, 'Contract Denied'); require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Proof Invalid'); for(uint256 i; i < _amount; i++){ _safeMint( msg.sender, supply + i ); } denylist[0][msg.sender] = true; } function presale(bytes32[] calldata _merkleProof, uint _amount) external payable { uint supply = totalSupply(); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(status == 2, 'Not Active'); require(_amount < 4, 'Amount Denied'); require(!denylist[1][msg.sender], 'Mint Claimed'); require(supply + _amount < 6970, 'Supply Denied'); require(tx.origin == msg.sender, 'Contract Denied'); require(msg.value >= price * _amount, 'Ether Amount Denied'); require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Proof Invalid'); for(uint i; i < _amount; i++){ _safeMint( msg.sender, supply + i ); } denylist[1][msg.sender] = true; } function mint(uint _amount) external payable { uint supply = totalSupply(); require(status == 3, 'Not Active'); require(_amount < 4, 'Amount Denied'); require(supply + _amount < 6970, 'Supply Denied'); require(tx.origin == msg.sender, 'Contract Denied'); require(msg.value >= price * _amount, 'Ether Amount Denied'); for(uint i; i < _amount; i++){ _safeMint( msg.sender, supply + i ); } } function withdraw() external payable onlyOwner { uint256 p1 = address(this).balance * 23 / 100; uint256 p2 = address(this).balance * 19 / 100; uint256 p3 = address(this).balance * 16 / 100; uint256 p4 = address(this).balance * 1 / 25; uint256 p5 = address(this).balance * 7 / 200; require(payable(0xCfCF8357Df8f7D7C84a218312F815d3abBd11eb9).send(p1)); require(payable(0xd926C3dC7FeCA623ab94680082c6882c9783Cdd7).send(p1)); require(payable(0x3f2bc38758722916Fa074F9d4233cB44021f7702).send(p2)); require(payable(0x802ca1586De059DD7713779fD89e456Fb12DA976).send(p3)); require(payable(0x8b88130e3B6d99aC05e382C17bD28dcaD2F86D41).send(p4)); require(payable(0xB8ad035de7A570E0198C2d2c5D825aB40f61c2B7).send(p4)); require(payable(0xcfB2E8093438863d64735B7d71f4dcE8132B3b57).send(p4)); require(payable(0x748864f29ab58Fcf34F2B7c79a4dadbB2CafAe51).send(p5)); require(payable(0x3107719Bb181712a8C0ce25d7f6029efde10F90C).send(p5)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } }
// 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 pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; import "./ERC721.sol"; abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // See {IERC721Enumerable-totalSupply}. function totalSupply() public view virtual override returns (uint256) { return _owners.length; } // See {IERC721Enumerable-tokenByIndex}. function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < _owners.length, "ERC721Enumerable: global index out of bounds"); return index; } // See {IERC721Enumerable-tokenOfOwnerByIndex}. function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256 tokenId) { require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); uint count; for(uint i; i < _owners.length; i++){ if(owner == _owners[i]){ if(count == index) return i; else count++; } } revert("ERC721Enumerable: owner index out of bounds"); } // See {IERC165-supportsInterface}. function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; string private _name; string private _symbol; address[] internal _owners; mapping(uint256 => address) private _tokenApprovals; mapping(address => mapping(address => bool)) private _operatorApprovals; // 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_; } // See {IERC721Metadata-name}. function name() public view virtual override returns (string memory) { return _name; } // See {IERC721Metadata-symbol}. function symbol() public view virtual override returns (string memory) { return _symbol; } // Base URI for computing {tokenURI}. function _baseURI() internal view virtual returns (string memory) { return ""; } // 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())) : ""; } // Returns whether `tokenId` exists. function _exists(uint256 tokenId) internal view virtual returns (bool) { return tokenId < _owners.length && _owners[tokenId] != address(0); } // See {IERC721-balanceOf}. function balanceOf(address owner) public view virtual override returns (uint) { require(owner != address(0), "ERC721: balance query for the zero address"); uint count; for(uint i; i < _owners.length; ++i){ if(owner == _owners[i]) ++count; } return count; } // 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; } // Approve `to` to operate on `tokenId` function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } // 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); } // 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]; } // See {IERC721-setApprovalForAll}. function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } // Returns whether `spender` is allowed to manage `tokenId`. 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)); } // See {IERC721-isApprovedForAll}. function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } // Transfers `tokenId` from `from` to `to`. (No restrictions on sender) function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); _approve(address(0), tokenId); _owners[tokenId] = to; emit Transfer(from, to, tokenId); } // See {IERC721-transferFrom}. function transferFrom(address from, address to, uint256 tokenId) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } // Safely transfers `tokenId` token from `from` to `to`. 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"); } // 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); } // See {IERC721-safeTransferFrom}. function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } // Mints `tokenId` and transfers it to `to`. 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); _owners.push(to); emit Transfer(address(0), to, tokenId); } // Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter. 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"); } // Safely mints `tokenId` and transfers it to `to`. function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } // Destroys `tokenId`. function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); _approve(address(0), tokenId); _owners[tokenId] = address(0); emit Transfer(owner, address(0), tokenId); } // 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); } // Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. 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; } } // Hook that is called before any token transfer. function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// 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 (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 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/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 (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/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/Address.sol) pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"denylist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","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":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"presale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_status","type":"uint256"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"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":"payable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600b81526020017f547269707079546f61647a0000000000000000000000000000000000000000008152506040518060400160405280600281526020017f5454000000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620001a6565b508060019080519060200190620000af929190620001a6565b505050620000d2620000c6620000d860201b60201c565b620000e060201b60201c565b620002bb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b49062000256565b90600052602060002090601f016020900481019282620001d8576000855562000224565b82601f10620001f357805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022357825182559160200191906001019062000206565b5b50905062000233919062000237565b5090565b5b808211156200025257600081600090555060010162000238565b5090565b600060028204905060018216806200026f57607f821691505b602082108114156200028657620002856200028c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6149cc80620002cb6000396000f3fe6080604052600436106101e25760003560e01c80636352211e11610102578063a035b1fe11610095578063c87b56dd11610064578063c87b56dd146106b2578063d547cfb7146106ef578063e985e9c51461071a578063f2fde38b14610757576101e2565b8063a035b1fe14610619578063a0712d6814610644578063a22cb46514610660578063b88d4fde14610689576101e2565b80637cb64759116100d15780637cb64759146105715780638da5cb5b1461059a57806391b7f5ed146105c557806395d89b41146105ee576101e2565b80636352211e146104b757806369ba1a75146104f457806370a082311461051d578063715018a61461055a576101e2565b806327ed3dce1161017a5780633b439351116101495780633b4393511461041e5780633ccfd60b1461044757806342842e0e146104515780634f6ccce71461047a576101e2565b806327ed3dce146103715780632eb4a7ab1461038d5780632f745c59146103b857806330176e13146103f5576101e2565b8063095ea7b3116101b6578063095ea7b3146102c957806318160ddd146102f2578063200d2ed21461031d57806323b872dd14610348576101e2565b8062592289146101e757806301ffc9a71461022457806306fdde0314610261578063081812fc1461028c575b600080fd5b3480156101f357600080fd5b5061020e60048036038101906102099190613504565b610780565b60405161021b9190613ad1565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190613430565b6107af565b6040516102589190613ad1565b60405180910390f35b34801561026d57600080fd5b50610276610829565b6040516102839190613b07565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae91906134d7565b6108bb565b6040516102c09190613a6a565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190613363565b610940565b005b3480156102fe57600080fd5b50610307610a58565b6040516103149190613e49565b60405180910390f35b34801561032957600080fd5b50610332610a65565b60405161033f9190613e49565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a919061324d565b610a6b565b005b61038b600480360381019061038691906133a3565b610acb565b005b34801561039957600080fd5b506103a2610e68565b6040516103af9190613aec565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da9190613363565b610e6e565b6040516103ec9190613e49565b60405180910390f35b34801561040157600080fd5b5061041c6004803603810190610417919061348a565b610fb3565b005b34801561042a57600080fd5b50610445600480360381019061044091906133a3565b611045565b005b61044f61134f565b005b34801561045d57600080fd5b506104786004803603810190610473919061324d565b611745565b005b34801561048657600080fd5b506104a1600480360381019061049c91906134d7565b611765565b6040516104ae9190613e49565b60405180910390f35b3480156104c357600080fd5b506104de60048036038101906104d991906134d7565b6117b6565b6040516104eb9190613a6a565b60405180910390f35b34801561050057600080fd5b5061051b600480360381019061051691906134d7565b611873565b005b34801561052957600080fd5b50610544600480360381019061053f91906131e0565b6118f9565b6040516105519190613e49565b60405180910390f35b34801561056657600080fd5b5061056f611a15565b005b34801561057d57600080fd5b5061059860048036038101906105939190613403565b611a9d565b005b3480156105a657600080fd5b506105af611b23565b6040516105bc9190613a6a565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e791906134d7565b611b4d565b005b3480156105fa57600080fd5b50610603611bd3565b6040516106109190613b07565b60405180910390f35b34801561062557600080fd5b5061062e611c65565b60405161063b9190613e49565b60405180910390f35b61065e600480360381019061065991906134d7565b611c6b565b005b34801561066c57600080fd5b5061068760048036038101906106829190613323565b611e44565b005b34801561069557600080fd5b506106b060048036038101906106ab91906132a0565b611fc5565b005b3480156106be57600080fd5b506106d960048036038101906106d491906134d7565b612027565b6040516106e69190613b07565b60405180910390f35b3480156106fb57600080fd5b506107046120ce565b6040516107119190613b07565b60405180910390f35b34801561072657600080fd5b50610741600480360381019061073c919061320d565b61215c565b60405161074e9190613ad1565b60405180910390f35b34801561076357600080fd5b5061077e600480360381019061077991906131e0565b6121f0565b005b600a6020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108225750610821826122e8565b5b9050919050565b606060008054610838906140d2565b80601f0160208091040260200160405190810160405280929190818152602001828054610864906140d2565b80156108b15780601f10610886576101008083540402835291602001916108b1565b820191906000526020600020905b81548152906001019060200180831161089457829003601f168201915b5050505050905090565b60006108c6826123ca565b610905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fc90613d09565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094b826117b6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b390613dc9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109db612452565b73ffffffffffffffffffffffffffffffffffffffff161480610a0a5750610a0981610a04612452565b61215c565b5b610a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4090613c69565b60405180910390fd5b610a53838361245a565b505050565b6000600280549050905090565b60095481565b610a7c610a76612452565b82612513565b610abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab290613e09565b60405180910390fd5b610ac68383836125f1565b505050565b6000610ad5610a58565b9050600033604051602001610aea91906139d3565b604051602081830303815290604052805190602001209050600260095414610b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3e90613bc9565b60405180910390fd5b60048310610b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8190613da9565b60405180910390fd5b600a60006001815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2090613c29565b60405180910390fd5b611b3a8383610c389190613efd565b10610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f90613d89565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd90613ba9565b60405180910390fd5b82600854610cf49190613f84565b341015610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d90613de9565b60405180910390fd5b610d84858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600654836127aa565b610dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dba90613cc9565b60405180910390fd5b60005b83811015610df657610de3338285610dde9190613efd565b6127c1565b8080610dee90614135565b915050610dc6565b506001600a60006001815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050505050565b60065481565b6000610e79836118f9565b8210610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb190613b29565b60405180910390fd5b6000805b600280549050811015610f715760028181548110610edf57610ede614274565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610f5e5783821415610f4f578092505050610fad565b8180610f5a90614135565b9250505b8080610f6990614135565b915050610ebe565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa490613b29565b60405180910390fd5b92915050565b610fbb612452565b73ffffffffffffffffffffffffffffffffffffffff16610fd9611b23565b73ffffffffffffffffffffffffffffffffffffffff161461102f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102690613d29565b60405180910390fd5b818160079190611040929190612fa3565b505050565b600061104f610a58565b9050600033836040516020016110669291906139ee565b6040516020818303038152906040528051906020012090506001600954146110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba90613bc9565b60405180910390fd5b600a600080815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611161576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115890613c29565b60405180910390fd5b611b3a83836111709190613efd565b106111b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a790613d89565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121590613ba9565b60405180910390fd5b61126c858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600654836127aa565b6112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290613cc9565b60405180910390fd5b60005b838110156112de576112cb3382856112c69190613efd565b6127c1565b80806112d690614135565b9150506112ae565b506001600a600080815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050505050565b611357612452565b73ffffffffffffffffffffffffffffffffffffffff16611375611b23565b73ffffffffffffffffffffffffffffffffffffffff16146113cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c290613d29565b60405180910390fd5b600060646017476113dc9190613f84565b6113e69190613f53565b9050600060646013476113f99190613f84565b6114039190613f53565b9050600060646010476114169190613f84565b6114209190613f53565b9050600060196001476114339190613f84565b61143d9190613f53565b9050600060c86007476114509190613f84565b61145a9190613f53565b905073cfcf8357df8f7d7c84a218312f815d3abbd11eb973ffffffffffffffffffffffffffffffffffffffff166108fc869081150290604051600060405180830381858888f193505050506114ae57600080fd5b73d926c3dc7feca623ab94680082c6882c9783cdd773ffffffffffffffffffffffffffffffffffffffff166108fc869081150290604051600060405180830381858888f1935050505061150057600080fd5b733f2bc38758722916fa074f9d4233cb44021f770273ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f1935050505061155257600080fd5b73802ca1586de059dd7713779fd89e456fb12da97673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f193505050506115a457600080fd5b738b88130e3b6d99ac05e382c17bd28dcad2f86d4173ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050506115f657600080fd5b73b8ad035de7a570e0198c2d2c5d825ab40f61c2b773ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505061164857600080fd5b73cfb2e8093438863d64735b7d71f4dce8132b3b5773ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505061169a57600080fd5b73748864f29ab58fcf34f2b7c79a4dadbb2cafae5173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506116ec57600080fd5b733107719bb181712a8c0ce25d7f6029efde10f90c73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061173e57600080fd5b5050505050565b61176083838360405180602001604052806000815250611fc5565b505050565b600060028054905082106117ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a590613e29565b60405180910390fd5b819050919050565b600080600283815481106117cd576117cc614274565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561186a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186190613ca9565b60405180910390fd5b80915050919050565b61187b612452565b73ffffffffffffffffffffffffffffffffffffffff16611899611b23565b73ffffffffffffffffffffffffffffffffffffffff16146118ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e690613d29565b60405180910390fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561196a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196190613c89565b60405180910390fd5b6000805b600280549050811015611a0b576002818154811061198f5761198e614274565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119fa57816119f790614135565b91505b80611a0490614135565b905061196e565b5080915050919050565b611a1d612452565b73ffffffffffffffffffffffffffffffffffffffff16611a3b611b23565b73ffffffffffffffffffffffffffffffffffffffff1614611a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8890613d29565b60405180910390fd5b611a9b60006127df565b565b611aa5612452565b73ffffffffffffffffffffffffffffffffffffffff16611ac3611b23565b73ffffffffffffffffffffffffffffffffffffffff1614611b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1090613d29565b60405180910390fd5b8060068190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b55612452565b73ffffffffffffffffffffffffffffffffffffffff16611b73611b23565b73ffffffffffffffffffffffffffffffffffffffff1614611bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc090613d29565b60405180910390fd5b8060088190555050565b606060018054611be2906140d2565b80601f0160208091040260200160405190810160405280929190818152602001828054611c0e906140d2565b8015611c5b5780601f10611c3057610100808354040283529160200191611c5b565b820191906000526020600020905b815481529060010190602001808311611c3e57829003601f168201915b5050505050905090565b60085481565b6000611c75610a58565b9050600360095414611cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb390613bc9565b60405180910390fd5b60048210611cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf690613da9565b60405180910390fd5b611b3a8282611d0e9190613efd565b10611d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4590613d89565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db390613ba9565b60405180910390fd5b81600854611dca9190613f84565b341015611e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0390613de9565b60405180910390fd5b60005b82811015611e3f57611e2c338284611e279190613efd565b6127c1565b8080611e3790614135565b915050611e0f565b505050565b611e4c612452565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb190613c09565b60405180910390fd5b8060046000611ec7612452565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f74612452565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fb99190613ad1565b60405180910390a35050565b611fd6611fd0612452565b83612513565b612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c90613e09565b60405180910390fd5b612021848484846128a5565b50505050565b6060612032826123ca565b612071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206890613d69565b60405180910390fd5b600061207b612901565b9050600081511161209b57604051806020016040528060008152506120c6565b806120a584612993565b6040516020016120b6929190613a46565b6040516020818303038152906040525b915050919050565b600780546120db906140d2565b80601f0160208091040260200160405190810160405280929190818152602001828054612107906140d2565b80156121545780601f1061212957610100808354040283529160200191612154565b820191906000526020600020905b81548152906001019060200180831161213757829003601f168201915b505050505081565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121f8612452565b73ffffffffffffffffffffffffffffffffffffffff16612216611b23565b73ffffffffffffffffffffffffffffffffffffffff161461226c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226390613d29565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d390613b69565b60405180910390fd5b6122e5816127df565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806123b357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806123c357506123c282612af4565b5b9050919050565b60006002805490508210801561244b5750600073ffffffffffffffffffffffffffffffffffffffff166002838154811061240757612406614274565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166124cd836117b6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061251e826123ca565b61255d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255490613c49565b60405180910390fd5b6000612568836117b6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806125d757508373ffffffffffffffffffffffffffffffffffffffff166125bf846108bb565b73ffffffffffffffffffffffffffffffffffffffff16145b806125e857506125e7818561215c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612611826117b6565b73ffffffffffffffffffffffffffffffffffffffff1614612667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265e90613d49565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ce90613be9565b60405180910390fd5b6126e2838383612b5e565b6126ed60008261245a565b816002828154811061270257612701614274565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000826127b78584612b63565b1490509392505050565b6127db828260405180602001604052806000815250612c16565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128b08484846125f1565b6128bc84848484612c71565b6128fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f290613b49565b60405180910390fd5b50505050565b606060078054612910906140d2565b80601f016020809104026020016040519081016040528092919081815260200182805461293c906140d2565b80156129895780601f1061295e57610100808354040283529160200191612989565b820191906000526020600020905b81548152906001019060200180831161296c57829003601f168201915b5050505050905090565b606060008214156129db576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612aef565b600082905060005b60008214612a0d5780806129f690614135565b915050600a82612a069190613f53565b91506129e3565b60008167ffffffffffffffff811115612a2957612a286142a3565b5b6040519080825280601f01601f191660200182016040528015612a5b5781602001600182028036833780820191505090505b5090505b60008514612ae857600182612a749190613fde565b9150600a85612a8391906141b6565b6030612a8f9190613efd565b60f81b818381518110612aa557612aa4614274565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ae19190613f53565b9450612a5f565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b60008082905060005b8451811015612c0b576000858281518110612b8a57612b89614274565b5b60200260200101519050808311612bcb578281604051602001612bae929190613a1a565b604051602081830303815290604052805190602001209250612bf7565b8083604051602001612bde929190613a1a565b6040516020818303038152906040528051906020012092505b508080612c0390614135565b915050612b6c565b508091505092915050565b612c208383612e08565b612c2d6000848484612c71565b612c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6390613b49565b60405180910390fd5b505050565b6000612c928473ffffffffffffffffffffffffffffffffffffffff16612f90565b15612dfb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612cbb612452565b8786866040518563ffffffff1660e01b8152600401612cdd9493929190613a85565b602060405180830381600087803b158015612cf757600080fd5b505af1925050508015612d2857506040513d601f19601f82011682018060405250810190612d25919061345d565b60015b612dab573d8060008114612d58576040519150601f19603f3d011682016040523d82523d6000602084013e612d5d565b606091505b50600081511415612da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9a90613b49565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e00565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6f90613ce9565b60405180910390fd5b612e81816123ca565b15612ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb890613b89565b60405180910390fd5b612ecd60008383612b5e565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612faf906140d2565b90600052602060002090601f016020900481019282612fd15760008555613018565b82601f10612fea57803560ff1916838001178555613018565b82800160010185558215613018579182015b82811115613017578235825591602001919060010190612ffc565b5b5090506130259190613029565b5090565b5b8082111561304257600081600090555060010161302a565b5090565b600061305961305484613e89565b613e64565b905082815260208101848484011115613075576130746142e1565b5b613080848285614090565b509392505050565b60008135905061309781614923565b92915050565b60008083601f8401126130b3576130b26142d7565b5b8235905067ffffffffffffffff8111156130d0576130cf6142d2565b5b6020830191508360208202830111156130ec576130eb6142dc565b5b9250929050565b6000813590506131028161493a565b92915050565b60008135905061311781614951565b92915050565b60008135905061312c81614968565b92915050565b60008151905061314181614968565b92915050565b600082601f83011261315c5761315b6142d7565b5b813561316c848260208601613046565b91505092915050565b60008083601f84011261318b5761318a6142d7565b5b8235905067ffffffffffffffff8111156131a8576131a76142d2565b5b6020830191508360018202830111156131c4576131c36142dc565b5b9250929050565b6000813590506131da8161497f565b92915050565b6000602082840312156131f6576131f56142eb565b5b600061320484828501613088565b91505092915050565b60008060408385031215613224576132236142eb565b5b600061323285828601613088565b925050602061324385828601613088565b9150509250929050565b600080600060608486031215613266576132656142eb565b5b600061327486828701613088565b935050602061328586828701613088565b9250506040613296868287016131cb565b9150509250925092565b600080600080608085870312156132ba576132b96142eb565b5b60006132c887828801613088565b94505060206132d987828801613088565b93505060406132ea878288016131cb565b925050606085013567ffffffffffffffff81111561330b5761330a6142e6565b5b61331787828801613147565b91505092959194509250565b6000806040838503121561333a576133396142eb565b5b600061334885828601613088565b9250506020613359858286016130f3565b9150509250929050565b6000806040838503121561337a576133796142eb565b5b600061338885828601613088565b9250506020613399858286016131cb565b9150509250929050565b6000806000604084860312156133bc576133bb6142eb565b5b600084013567ffffffffffffffff8111156133da576133d96142e6565b5b6133e68682870161309d565b935093505060206133f9868287016131cb565b9150509250925092565b600060208284031215613419576134186142eb565b5b600061342784828501613108565b91505092915050565b600060208284031215613446576134456142eb565b5b60006134548482850161311d565b91505092915050565b600060208284031215613473576134726142eb565b5b600061348184828501613132565b91505092915050565b600080602083850312156134a1576134a06142eb565b5b600083013567ffffffffffffffff8111156134bf576134be6142e6565b5b6134cb85828601613175565b92509250509250929050565b6000602082840312156134ed576134ec6142eb565b5b60006134fb848285016131cb565b91505092915050565b6000806040838503121561351b5761351a6142eb565b5b6000613529858286016131cb565b925050602061353a85828601613088565b9150509250929050565b61354d81614012565b82525050565b61356461355f82614012565b61417e565b82525050565b61357381614024565b82525050565b61358281614030565b82525050565b61359961359482614030565b614190565b82525050565b60006135aa82613eba565b6135b48185613ed0565b93506135c481856020860161409f565b6135cd816142f0565b840191505092915050565b60006135e382613ec5565b6135ed8185613ee1565b93506135fd81856020860161409f565b613606816142f0565b840191505092915050565b600061361c82613ec5565b6136268185613ef2565b935061363681856020860161409f565b80840191505092915050565b600061364f602b83613ee1565b915061365a8261430e565b604082019050919050565b6000613672603283613ee1565b915061367d8261435d565b604082019050919050565b6000613695602683613ee1565b91506136a0826143ac565b604082019050919050565b60006136b8601c83613ee1565b91506136c3826143fb565b602082019050919050565b60006136db600f83613ee1565b91506136e682614424565b602082019050919050565b60006136fe600a83613ee1565b91506137098261444d565b602082019050919050565b6000613721602483613ee1565b915061372c82614476565b604082019050919050565b6000613744601983613ee1565b915061374f826144c5565b602082019050919050565b6000613767600c83613ee1565b9150613772826144ee565b602082019050919050565b600061378a602c83613ee1565b915061379582614517565b604082019050919050565b60006137ad603883613ee1565b91506137b882614566565b604082019050919050565b60006137d0602a83613ee1565b91506137db826145b5565b604082019050919050565b60006137f3602983613ee1565b91506137fe82614604565b604082019050919050565b6000613816600d83613ee1565b915061382182614653565b602082019050919050565b6000613839602083613ee1565b91506138448261467c565b602082019050919050565b600061385c602c83613ee1565b9150613867826146a5565b604082019050919050565b600061387f602083613ee1565b915061388a826146f4565b602082019050919050565b60006138a2602983613ee1565b91506138ad8261471d565b604082019050919050565b60006138c5602f83613ee1565b91506138d08261476c565b604082019050919050565b60006138e8600d83613ee1565b91506138f3826147bb565b602082019050919050565b600061390b600d83613ee1565b9150613916826147e4565b602082019050919050565b600061392e602183613ee1565b91506139398261480d565b604082019050919050565b6000613951601383613ee1565b915061395c8261485c565b602082019050919050565b6000613974603183613ee1565b915061397f82614885565b604082019050919050565b6000613997602c83613ee1565b91506139a2826148d4565b604082019050919050565b6139b681614086565b82525050565b6139cd6139c882614086565b6141ac565b82525050565b60006139df8284613553565b60148201915081905092915050565b60006139fa8285613553565b601482019150613a0a82846139bc565b6020820191508190509392505050565b6000613a268285613588565b602082019150613a368284613588565b6020820191508190509392505050565b6000613a528285613611565b9150613a5e8284613611565b91508190509392505050565b6000602082019050613a7f6000830184613544565b92915050565b6000608082019050613a9a6000830187613544565b613aa76020830186613544565b613ab460408301856139ad565b8181036060830152613ac6818461359f565b905095945050505050565b6000602082019050613ae6600083018461356a565b92915050565b6000602082019050613b016000830184613579565b92915050565b60006020820190508181036000830152613b2181846135d8565b905092915050565b60006020820190508181036000830152613b4281613642565b9050919050565b60006020820190508181036000830152613b6281613665565b9050919050565b60006020820190508181036000830152613b8281613688565b9050919050565b60006020820190508181036000830152613ba2816136ab565b9050919050565b60006020820190508181036000830152613bc2816136ce565b9050919050565b60006020820190508181036000830152613be2816136f1565b9050919050565b60006020820190508181036000830152613c0281613714565b9050919050565b60006020820190508181036000830152613c2281613737565b9050919050565b60006020820190508181036000830152613c428161375a565b9050919050565b60006020820190508181036000830152613c628161377d565b9050919050565b60006020820190508181036000830152613c82816137a0565b9050919050565b60006020820190508181036000830152613ca2816137c3565b9050919050565b60006020820190508181036000830152613cc2816137e6565b9050919050565b60006020820190508181036000830152613ce281613809565b9050919050565b60006020820190508181036000830152613d028161382c565b9050919050565b60006020820190508181036000830152613d228161384f565b9050919050565b60006020820190508181036000830152613d4281613872565b9050919050565b60006020820190508181036000830152613d6281613895565b9050919050565b60006020820190508181036000830152613d82816138b8565b9050919050565b60006020820190508181036000830152613da2816138db565b9050919050565b60006020820190508181036000830152613dc2816138fe565b9050919050565b60006020820190508181036000830152613de281613921565b9050919050565b60006020820190508181036000830152613e0281613944565b9050919050565b60006020820190508181036000830152613e2281613967565b9050919050565b60006020820190508181036000830152613e428161398a565b9050919050565b6000602082019050613e5e60008301846139ad565b92915050565b6000613e6e613e7f565b9050613e7a8282614104565b919050565b6000604051905090565b600067ffffffffffffffff821115613ea457613ea36142a3565b5b613ead826142f0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f0882614086565b9150613f1383614086565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f4857613f476141e7565b5b828201905092915050565b6000613f5e82614086565b9150613f6983614086565b925082613f7957613f78614216565b5b828204905092915050565b6000613f8f82614086565b9150613f9a83614086565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fd357613fd26141e7565b5b828202905092915050565b6000613fe982614086565b9150613ff483614086565b925082821015614007576140066141e7565b5b828203905092915050565b600061401d82614066565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156140bd5780820151818401526020810190506140a2565b838111156140cc576000848401525b50505050565b600060028204905060018216806140ea57607f821691505b602082108114156140fe576140fd614245565b5b50919050565b61410d826142f0565b810181811067ffffffffffffffff8211171561412c5761412b6142a3565b5b80604052505050565b600061414082614086565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614173576141726141e7565b5b600182019050919050565b60006141898261419a565b9050919050565b6000819050919050565b60006141a582614301565b9050919050565b6000819050919050565b60006141c182614086565b91506141cc83614086565b9250826141dc576141db614216565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f436f6e74726163742044656e6965640000000000000000000000000000000000600082015250565b7f4e6f742041637469766500000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d696e7420436c61696d65640000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f50726f6f6620496e76616c696400000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f537570706c792044656e69656400000000000000000000000000000000000000600082015250565b7f416d6f756e742044656e69656400000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f457468657220416d6f756e742044656e69656400000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61492c81614012565b811461493757600080fd5b50565b61494381614024565b811461494e57600080fd5b50565b61495a81614030565b811461496557600080fd5b50565b6149718161403a565b811461497c57600080fd5b50565b61498881614086565b811461499357600080fd5b5056fea264697066735822122043cec8950356a4e5345b809bc96460027f467437a6c07b38b1fe7e0aef1b735664736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101e25760003560e01c80636352211e11610102578063a035b1fe11610095578063c87b56dd11610064578063c87b56dd146106b2578063d547cfb7146106ef578063e985e9c51461071a578063f2fde38b14610757576101e2565b8063a035b1fe14610619578063a0712d6814610644578063a22cb46514610660578063b88d4fde14610689576101e2565b80637cb64759116100d15780637cb64759146105715780638da5cb5b1461059a57806391b7f5ed146105c557806395d89b41146105ee576101e2565b80636352211e146104b757806369ba1a75146104f457806370a082311461051d578063715018a61461055a576101e2565b806327ed3dce1161017a5780633b439351116101495780633b4393511461041e5780633ccfd60b1461044757806342842e0e146104515780634f6ccce71461047a576101e2565b806327ed3dce146103715780632eb4a7ab1461038d5780632f745c59146103b857806330176e13146103f5576101e2565b8063095ea7b3116101b6578063095ea7b3146102c957806318160ddd146102f2578063200d2ed21461031d57806323b872dd14610348576101e2565b8062592289146101e757806301ffc9a71461022457806306fdde0314610261578063081812fc1461028c575b600080fd5b3480156101f357600080fd5b5061020e60048036038101906102099190613504565b610780565b60405161021b9190613ad1565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190613430565b6107af565b6040516102589190613ad1565b60405180910390f35b34801561026d57600080fd5b50610276610829565b6040516102839190613b07565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae91906134d7565b6108bb565b6040516102c09190613a6a565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190613363565b610940565b005b3480156102fe57600080fd5b50610307610a58565b6040516103149190613e49565b60405180910390f35b34801561032957600080fd5b50610332610a65565b60405161033f9190613e49565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a919061324d565b610a6b565b005b61038b600480360381019061038691906133a3565b610acb565b005b34801561039957600080fd5b506103a2610e68565b6040516103af9190613aec565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da9190613363565b610e6e565b6040516103ec9190613e49565b60405180910390f35b34801561040157600080fd5b5061041c6004803603810190610417919061348a565b610fb3565b005b34801561042a57600080fd5b50610445600480360381019061044091906133a3565b611045565b005b61044f61134f565b005b34801561045d57600080fd5b506104786004803603810190610473919061324d565b611745565b005b34801561048657600080fd5b506104a1600480360381019061049c91906134d7565b611765565b6040516104ae9190613e49565b60405180910390f35b3480156104c357600080fd5b506104de60048036038101906104d991906134d7565b6117b6565b6040516104eb9190613a6a565b60405180910390f35b34801561050057600080fd5b5061051b600480360381019061051691906134d7565b611873565b005b34801561052957600080fd5b50610544600480360381019061053f91906131e0565b6118f9565b6040516105519190613e49565b60405180910390f35b34801561056657600080fd5b5061056f611a15565b005b34801561057d57600080fd5b5061059860048036038101906105939190613403565b611a9d565b005b3480156105a657600080fd5b506105af611b23565b6040516105bc9190613a6a565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e791906134d7565b611b4d565b005b3480156105fa57600080fd5b50610603611bd3565b6040516106109190613b07565b60405180910390f35b34801561062557600080fd5b5061062e611c65565b60405161063b9190613e49565b60405180910390f35b61065e600480360381019061065991906134d7565b611c6b565b005b34801561066c57600080fd5b5061068760048036038101906106829190613323565b611e44565b005b34801561069557600080fd5b506106b060048036038101906106ab91906132a0565b611fc5565b005b3480156106be57600080fd5b506106d960048036038101906106d491906134d7565b612027565b6040516106e69190613b07565b60405180910390f35b3480156106fb57600080fd5b506107046120ce565b6040516107119190613b07565b60405180910390f35b34801561072657600080fd5b50610741600480360381019061073c919061320d565b61215c565b60405161074e9190613ad1565b60405180910390f35b34801561076357600080fd5b5061077e600480360381019061077991906131e0565b6121f0565b005b600a6020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108225750610821826122e8565b5b9050919050565b606060008054610838906140d2565b80601f0160208091040260200160405190810160405280929190818152602001828054610864906140d2565b80156108b15780601f10610886576101008083540402835291602001916108b1565b820191906000526020600020905b81548152906001019060200180831161089457829003601f168201915b5050505050905090565b60006108c6826123ca565b610905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fc90613d09565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094b826117b6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b390613dc9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109db612452565b73ffffffffffffffffffffffffffffffffffffffff161480610a0a5750610a0981610a04612452565b61215c565b5b610a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4090613c69565b60405180910390fd5b610a53838361245a565b505050565b6000600280549050905090565b60095481565b610a7c610a76612452565b82612513565b610abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab290613e09565b60405180910390fd5b610ac68383836125f1565b505050565b6000610ad5610a58565b9050600033604051602001610aea91906139d3565b604051602081830303815290604052805190602001209050600260095414610b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3e90613bc9565b60405180910390fd5b60048310610b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8190613da9565b60405180910390fd5b600a60006001815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2090613c29565b60405180910390fd5b611b3a8383610c389190613efd565b10610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f90613d89565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd90613ba9565b60405180910390fd5b82600854610cf49190613f84565b341015610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d90613de9565b60405180910390fd5b610d84858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600654836127aa565b610dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dba90613cc9565b60405180910390fd5b60005b83811015610df657610de3338285610dde9190613efd565b6127c1565b8080610dee90614135565b915050610dc6565b506001600a60006001815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050505050565b60065481565b6000610e79836118f9565b8210610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb190613b29565b60405180910390fd5b6000805b600280549050811015610f715760028181548110610edf57610ede614274565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610f5e5783821415610f4f578092505050610fad565b8180610f5a90614135565b9250505b8080610f6990614135565b915050610ebe565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa490613b29565b60405180910390fd5b92915050565b610fbb612452565b73ffffffffffffffffffffffffffffffffffffffff16610fd9611b23565b73ffffffffffffffffffffffffffffffffffffffff161461102f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102690613d29565b60405180910390fd5b818160079190611040929190612fa3565b505050565b600061104f610a58565b9050600033836040516020016110669291906139ee565b6040516020818303038152906040528051906020012090506001600954146110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba90613bc9565b60405180910390fd5b600a600080815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611161576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115890613c29565b60405180910390fd5b611b3a83836111709190613efd565b106111b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a790613d89565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121590613ba9565b60405180910390fd5b61126c858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600654836127aa565b6112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290613cc9565b60405180910390fd5b60005b838110156112de576112cb3382856112c69190613efd565b6127c1565b80806112d690614135565b9150506112ae565b506001600a600080815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050505050565b611357612452565b73ffffffffffffffffffffffffffffffffffffffff16611375611b23565b73ffffffffffffffffffffffffffffffffffffffff16146113cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c290613d29565b60405180910390fd5b600060646017476113dc9190613f84565b6113e69190613f53565b9050600060646013476113f99190613f84565b6114039190613f53565b9050600060646010476114169190613f84565b6114209190613f53565b9050600060196001476114339190613f84565b61143d9190613f53565b9050600060c86007476114509190613f84565b61145a9190613f53565b905073cfcf8357df8f7d7c84a218312f815d3abbd11eb973ffffffffffffffffffffffffffffffffffffffff166108fc869081150290604051600060405180830381858888f193505050506114ae57600080fd5b73d926c3dc7feca623ab94680082c6882c9783cdd773ffffffffffffffffffffffffffffffffffffffff166108fc869081150290604051600060405180830381858888f1935050505061150057600080fd5b733f2bc38758722916fa074f9d4233cb44021f770273ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f1935050505061155257600080fd5b73802ca1586de059dd7713779fd89e456fb12da97673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f193505050506115a457600080fd5b738b88130e3b6d99ac05e382c17bd28dcad2f86d4173ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050506115f657600080fd5b73b8ad035de7a570e0198c2d2c5d825ab40f61c2b773ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505061164857600080fd5b73cfb2e8093438863d64735b7d71f4dce8132b3b5773ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505061169a57600080fd5b73748864f29ab58fcf34f2b7c79a4dadbb2cafae5173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506116ec57600080fd5b733107719bb181712a8c0ce25d7f6029efde10f90c73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061173e57600080fd5b5050505050565b61176083838360405180602001604052806000815250611fc5565b505050565b600060028054905082106117ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a590613e29565b60405180910390fd5b819050919050565b600080600283815481106117cd576117cc614274565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561186a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186190613ca9565b60405180910390fd5b80915050919050565b61187b612452565b73ffffffffffffffffffffffffffffffffffffffff16611899611b23565b73ffffffffffffffffffffffffffffffffffffffff16146118ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e690613d29565b60405180910390fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561196a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196190613c89565b60405180910390fd5b6000805b600280549050811015611a0b576002818154811061198f5761198e614274565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119fa57816119f790614135565b91505b80611a0490614135565b905061196e565b5080915050919050565b611a1d612452565b73ffffffffffffffffffffffffffffffffffffffff16611a3b611b23565b73ffffffffffffffffffffffffffffffffffffffff1614611a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8890613d29565b60405180910390fd5b611a9b60006127df565b565b611aa5612452565b73ffffffffffffffffffffffffffffffffffffffff16611ac3611b23565b73ffffffffffffffffffffffffffffffffffffffff1614611b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1090613d29565b60405180910390fd5b8060068190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b55612452565b73ffffffffffffffffffffffffffffffffffffffff16611b73611b23565b73ffffffffffffffffffffffffffffffffffffffff1614611bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc090613d29565b60405180910390fd5b8060088190555050565b606060018054611be2906140d2565b80601f0160208091040260200160405190810160405280929190818152602001828054611c0e906140d2565b8015611c5b5780601f10611c3057610100808354040283529160200191611c5b565b820191906000526020600020905b815481529060010190602001808311611c3e57829003601f168201915b5050505050905090565b60085481565b6000611c75610a58565b9050600360095414611cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb390613bc9565b60405180910390fd5b60048210611cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf690613da9565b60405180910390fd5b611b3a8282611d0e9190613efd565b10611d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4590613d89565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db390613ba9565b60405180910390fd5b81600854611dca9190613f84565b341015611e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0390613de9565b60405180910390fd5b60005b82811015611e3f57611e2c338284611e279190613efd565b6127c1565b8080611e3790614135565b915050611e0f565b505050565b611e4c612452565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb190613c09565b60405180910390fd5b8060046000611ec7612452565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f74612452565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fb99190613ad1565b60405180910390a35050565b611fd6611fd0612452565b83612513565b612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c90613e09565b60405180910390fd5b612021848484846128a5565b50505050565b6060612032826123ca565b612071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206890613d69565b60405180910390fd5b600061207b612901565b9050600081511161209b57604051806020016040528060008152506120c6565b806120a584612993565b6040516020016120b6929190613a46565b6040516020818303038152906040525b915050919050565b600780546120db906140d2565b80601f0160208091040260200160405190810160405280929190818152602001828054612107906140d2565b80156121545780601f1061212957610100808354040283529160200191612154565b820191906000526020600020905b81548152906001019060200180831161213757829003601f168201915b505050505081565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121f8612452565b73ffffffffffffffffffffffffffffffffffffffff16612216611b23565b73ffffffffffffffffffffffffffffffffffffffff161461226c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226390613d29565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d390613b69565b60405180910390fd5b6122e5816127df565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806123b357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806123c357506123c282612af4565b5b9050919050565b60006002805490508210801561244b5750600073ffffffffffffffffffffffffffffffffffffffff166002838154811061240757612406614274565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166124cd836117b6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061251e826123ca565b61255d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255490613c49565b60405180910390fd5b6000612568836117b6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806125d757508373ffffffffffffffffffffffffffffffffffffffff166125bf846108bb565b73ffffffffffffffffffffffffffffffffffffffff16145b806125e857506125e7818561215c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612611826117b6565b73ffffffffffffffffffffffffffffffffffffffff1614612667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265e90613d49565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ce90613be9565b60405180910390fd5b6126e2838383612b5e565b6126ed60008261245a565b816002828154811061270257612701614274565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000826127b78584612b63565b1490509392505050565b6127db828260405180602001604052806000815250612c16565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128b08484846125f1565b6128bc84848484612c71565b6128fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f290613b49565b60405180910390fd5b50505050565b606060078054612910906140d2565b80601f016020809104026020016040519081016040528092919081815260200182805461293c906140d2565b80156129895780601f1061295e57610100808354040283529160200191612989565b820191906000526020600020905b81548152906001019060200180831161296c57829003601f168201915b5050505050905090565b606060008214156129db576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612aef565b600082905060005b60008214612a0d5780806129f690614135565b915050600a82612a069190613f53565b91506129e3565b60008167ffffffffffffffff811115612a2957612a286142a3565b5b6040519080825280601f01601f191660200182016040528015612a5b5781602001600182028036833780820191505090505b5090505b60008514612ae857600182612a749190613fde565b9150600a85612a8391906141b6565b6030612a8f9190613efd565b60f81b818381518110612aa557612aa4614274565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ae19190613f53565b9450612a5f565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b60008082905060005b8451811015612c0b576000858281518110612b8a57612b89614274565b5b60200260200101519050808311612bcb578281604051602001612bae929190613a1a565b604051602081830303815290604052805190602001209250612bf7565b8083604051602001612bde929190613a1a565b6040516020818303038152906040528051906020012092505b508080612c0390614135565b915050612b6c565b508091505092915050565b612c208383612e08565b612c2d6000848484612c71565b612c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6390613b49565b60405180910390fd5b505050565b6000612c928473ffffffffffffffffffffffffffffffffffffffff16612f90565b15612dfb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612cbb612452565b8786866040518563ffffffff1660e01b8152600401612cdd9493929190613a85565b602060405180830381600087803b158015612cf757600080fd5b505af1925050508015612d2857506040513d601f19601f82011682018060405250810190612d25919061345d565b60015b612dab573d8060008114612d58576040519150601f19603f3d011682016040523d82523d6000602084013e612d5d565b606091505b50600081511415612da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9a90613b49565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e00565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6f90613ce9565b60405180910390fd5b612e81816123ca565b15612ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb890613b89565b60405180910390fd5b612ecd60008383612b5e565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612faf906140d2565b90600052602060002090601f016020900481019282612fd15760008555613018565b82601f10612fea57803560ff1916838001178555613018565b82800160010185558215613018579182015b82811115613017578235825591602001919060010190612ffc565b5b5090506130259190613029565b5090565b5b8082111561304257600081600090555060010161302a565b5090565b600061305961305484613e89565b613e64565b905082815260208101848484011115613075576130746142e1565b5b613080848285614090565b509392505050565b60008135905061309781614923565b92915050565b60008083601f8401126130b3576130b26142d7565b5b8235905067ffffffffffffffff8111156130d0576130cf6142d2565b5b6020830191508360208202830111156130ec576130eb6142dc565b5b9250929050565b6000813590506131028161493a565b92915050565b60008135905061311781614951565b92915050565b60008135905061312c81614968565b92915050565b60008151905061314181614968565b92915050565b600082601f83011261315c5761315b6142d7565b5b813561316c848260208601613046565b91505092915050565b60008083601f84011261318b5761318a6142d7565b5b8235905067ffffffffffffffff8111156131a8576131a76142d2565b5b6020830191508360018202830111156131c4576131c36142dc565b5b9250929050565b6000813590506131da8161497f565b92915050565b6000602082840312156131f6576131f56142eb565b5b600061320484828501613088565b91505092915050565b60008060408385031215613224576132236142eb565b5b600061323285828601613088565b925050602061324385828601613088565b9150509250929050565b600080600060608486031215613266576132656142eb565b5b600061327486828701613088565b935050602061328586828701613088565b9250506040613296868287016131cb565b9150509250925092565b600080600080608085870312156132ba576132b96142eb565b5b60006132c887828801613088565b94505060206132d987828801613088565b93505060406132ea878288016131cb565b925050606085013567ffffffffffffffff81111561330b5761330a6142e6565b5b61331787828801613147565b91505092959194509250565b6000806040838503121561333a576133396142eb565b5b600061334885828601613088565b9250506020613359858286016130f3565b9150509250929050565b6000806040838503121561337a576133796142eb565b5b600061338885828601613088565b9250506020613399858286016131cb565b9150509250929050565b6000806000604084860312156133bc576133bb6142eb565b5b600084013567ffffffffffffffff8111156133da576133d96142e6565b5b6133e68682870161309d565b935093505060206133f9868287016131cb565b9150509250925092565b600060208284031215613419576134186142eb565b5b600061342784828501613108565b91505092915050565b600060208284031215613446576134456142eb565b5b60006134548482850161311d565b91505092915050565b600060208284031215613473576134726142eb565b5b600061348184828501613132565b91505092915050565b600080602083850312156134a1576134a06142eb565b5b600083013567ffffffffffffffff8111156134bf576134be6142e6565b5b6134cb85828601613175565b92509250509250929050565b6000602082840312156134ed576134ec6142eb565b5b60006134fb848285016131cb565b91505092915050565b6000806040838503121561351b5761351a6142eb565b5b6000613529858286016131cb565b925050602061353a85828601613088565b9150509250929050565b61354d81614012565b82525050565b61356461355f82614012565b61417e565b82525050565b61357381614024565b82525050565b61358281614030565b82525050565b61359961359482614030565b614190565b82525050565b60006135aa82613eba565b6135b48185613ed0565b93506135c481856020860161409f565b6135cd816142f0565b840191505092915050565b60006135e382613ec5565b6135ed8185613ee1565b93506135fd81856020860161409f565b613606816142f0565b840191505092915050565b600061361c82613ec5565b6136268185613ef2565b935061363681856020860161409f565b80840191505092915050565b600061364f602b83613ee1565b915061365a8261430e565b604082019050919050565b6000613672603283613ee1565b915061367d8261435d565b604082019050919050565b6000613695602683613ee1565b91506136a0826143ac565b604082019050919050565b60006136b8601c83613ee1565b91506136c3826143fb565b602082019050919050565b60006136db600f83613ee1565b91506136e682614424565b602082019050919050565b60006136fe600a83613ee1565b91506137098261444d565b602082019050919050565b6000613721602483613ee1565b915061372c82614476565b604082019050919050565b6000613744601983613ee1565b915061374f826144c5565b602082019050919050565b6000613767600c83613ee1565b9150613772826144ee565b602082019050919050565b600061378a602c83613ee1565b915061379582614517565b604082019050919050565b60006137ad603883613ee1565b91506137b882614566565b604082019050919050565b60006137d0602a83613ee1565b91506137db826145b5565b604082019050919050565b60006137f3602983613ee1565b91506137fe82614604565b604082019050919050565b6000613816600d83613ee1565b915061382182614653565b602082019050919050565b6000613839602083613ee1565b91506138448261467c565b602082019050919050565b600061385c602c83613ee1565b9150613867826146a5565b604082019050919050565b600061387f602083613ee1565b915061388a826146f4565b602082019050919050565b60006138a2602983613ee1565b91506138ad8261471d565b604082019050919050565b60006138c5602f83613ee1565b91506138d08261476c565b604082019050919050565b60006138e8600d83613ee1565b91506138f3826147bb565b602082019050919050565b600061390b600d83613ee1565b9150613916826147e4565b602082019050919050565b600061392e602183613ee1565b91506139398261480d565b604082019050919050565b6000613951601383613ee1565b915061395c8261485c565b602082019050919050565b6000613974603183613ee1565b915061397f82614885565b604082019050919050565b6000613997602c83613ee1565b91506139a2826148d4565b604082019050919050565b6139b681614086565b82525050565b6139cd6139c882614086565b6141ac565b82525050565b60006139df8284613553565b60148201915081905092915050565b60006139fa8285613553565b601482019150613a0a82846139bc565b6020820191508190509392505050565b6000613a268285613588565b602082019150613a368284613588565b6020820191508190509392505050565b6000613a528285613611565b9150613a5e8284613611565b91508190509392505050565b6000602082019050613a7f6000830184613544565b92915050565b6000608082019050613a9a6000830187613544565b613aa76020830186613544565b613ab460408301856139ad565b8181036060830152613ac6818461359f565b905095945050505050565b6000602082019050613ae6600083018461356a565b92915050565b6000602082019050613b016000830184613579565b92915050565b60006020820190508181036000830152613b2181846135d8565b905092915050565b60006020820190508181036000830152613b4281613642565b9050919050565b60006020820190508181036000830152613b6281613665565b9050919050565b60006020820190508181036000830152613b8281613688565b9050919050565b60006020820190508181036000830152613ba2816136ab565b9050919050565b60006020820190508181036000830152613bc2816136ce565b9050919050565b60006020820190508181036000830152613be2816136f1565b9050919050565b60006020820190508181036000830152613c0281613714565b9050919050565b60006020820190508181036000830152613c2281613737565b9050919050565b60006020820190508181036000830152613c428161375a565b9050919050565b60006020820190508181036000830152613c628161377d565b9050919050565b60006020820190508181036000830152613c82816137a0565b9050919050565b60006020820190508181036000830152613ca2816137c3565b9050919050565b60006020820190508181036000830152613cc2816137e6565b9050919050565b60006020820190508181036000830152613ce281613809565b9050919050565b60006020820190508181036000830152613d028161382c565b9050919050565b60006020820190508181036000830152613d228161384f565b9050919050565b60006020820190508181036000830152613d4281613872565b9050919050565b60006020820190508181036000830152613d6281613895565b9050919050565b60006020820190508181036000830152613d82816138b8565b9050919050565b60006020820190508181036000830152613da2816138db565b9050919050565b60006020820190508181036000830152613dc2816138fe565b9050919050565b60006020820190508181036000830152613de281613921565b9050919050565b60006020820190508181036000830152613e0281613944565b9050919050565b60006020820190508181036000830152613e2281613967565b9050919050565b60006020820190508181036000830152613e428161398a565b9050919050565b6000602082019050613e5e60008301846139ad565b92915050565b6000613e6e613e7f565b9050613e7a8282614104565b919050565b6000604051905090565b600067ffffffffffffffff821115613ea457613ea36142a3565b5b613ead826142f0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f0882614086565b9150613f1383614086565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f4857613f476141e7565b5b828201905092915050565b6000613f5e82614086565b9150613f6983614086565b925082613f7957613f78614216565b5b828204905092915050565b6000613f8f82614086565b9150613f9a83614086565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fd357613fd26141e7565b5b828202905092915050565b6000613fe982614086565b9150613ff483614086565b925082821015614007576140066141e7565b5b828203905092915050565b600061401d82614066565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156140bd5780820151818401526020810190506140a2565b838111156140cc576000848401525b50505050565b600060028204905060018216806140ea57607f821691505b602082108114156140fe576140fd614245565b5b50919050565b61410d826142f0565b810181811067ffffffffffffffff8211171561412c5761412b6142a3565b5b80604052505050565b600061414082614086565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614173576141726141e7565b5b600182019050919050565b60006141898261419a565b9050919050565b6000819050919050565b60006141a582614301565b9050919050565b6000819050919050565b60006141c182614086565b91506141cc83614086565b9250826141dc576141db614216565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f436f6e74726163742044656e6965640000000000000000000000000000000000600082015250565b7f4e6f742041637469766500000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d696e7420436c61696d65640000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f50726f6f6620496e76616c696400000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f537570706c792044656e69656400000000000000000000000000000000000000600082015250565b7f416d6f756e742044656e69656400000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f457468657220416d6f756e742044656e69656400000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61492c81614012565b811461493757600080fd5b50565b61494381614024565b811461494e57600080fd5b50565b61495a81614030565b811461496557600080fd5b50565b6149718161403a565b811461497c57600080fd5b50565b61498881614086565b811461499357600080fd5b5056fea264697066735822122043cec8950356a4e5345b809bc96460027f467437a6c07b38b1fe7e0aef1b735664736f6c63430008070033
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.