ERC-721
Overview
Max Total Supply
999 JPOP
Holders
503
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 JPOPLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
JunglePOP
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.13; // @name: Jungle POP // @symbol: JPOP // @desc: 7,777 Jungle POP // @project: https://twitter.com/Junglepop_NFT // @url: https://www.jungle-pop.io/ // @code: MT Blockchain Services /* * * * * * * * * * * * * * * * * * * * ██╗██████╗ ██████╗ ██████╗ * * ██║██╔══██╗██╔═══██╗██╔══██╗ * * ██║██████╔╝██║ ██║██████╔╝ * * ██ ██║██╔═══╝ ██║ ██║██╔═══╝ * * ╚█████╔╝██║ ╚██████╔╝██║ * * ╚════╝ ╚═╝ ╚═════╝ ╚═╝ * * * * * * * * * * * * * * * * * * * */ import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract JunglePOP is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; /* set variables */ bool public collection_revealed = false; bool public free_whitelist_sale = false; bool public whitelist_sale = false; bool public public_sale = false; uint256 public cost = 0.065 ether; uint256 public max_supply = 7777; uint256 public max_per_wallet = 2; uint256 public free_max_per_wallet = 1; bytes32 public free_whitelist_merkle_root; bytes32 public whitelist_merkle_root; string public baseURI; string public revealURI = "https://ipfs.io/ipfs/QmfVJp62ATN4k63mBbe7YkYZnd3nwnh5TEhYn59ntqDjUD"; /* address mapping */ mapping(address => uint256) block_address; mapping(address => uint256) public wallet_minted; mapping(address => uint256) public free_wallet_minted; mapping(address => bool) public is_whitelisted; /* constructor */ constructor() ERC721A("JunglePOP", "JPOP") {} /* secure buy */ modifier saleModifier(uint8 purchase_type) { require(tx.origin == msg.sender, "contracts_not_allowed_to_mint"); require(block_address[msg.sender] < block.timestamp, "no_mint_on_the_same_block"); if(purchase_type == 1) { require(free_whitelist_sale, "free_whitelist_sale_not_activated"); } if(purchase_type == 2) { require(whitelist_sale, "whitelist_sale_not_activated"); } if(purchase_type == 3) { require(public_sale, "public_sale_not_activated"); } _; } /* free whitelist sale */ function freeWhitelistBuy(uint256 _token_amount, bytes32[] calldata _merkle_proof) external payable saleModifier(1) nonReentrant { uint256 supply = totalSupply(); require(_token_amount > 0, "quantity_is_required"); require(_token_amount + supply <= max_supply, "max_supply_exceedeed" ); require(free_wallet_minted[msg.sender] + _token_amount <= free_max_per_wallet, "free_max_per_wallet_exceeded"); require(wallet_minted[msg.sender] + _token_amount <= max_per_wallet, "max_per_wallet_exceeded"); if(!is_whitelisted[msg.sender]) { bytes32 leaf_node = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_merkle_proof, free_whitelist_merkle_root, leaf_node), "invalid_free_whitelist_merkle_proof"); } free_wallet_minted[msg.sender] += _token_amount; wallet_minted[msg.sender] += _token_amount; _safeMint(msg.sender, _token_amount); } /* whitelist sale */ function whitelistBuy(uint256 _token_amount, bytes32[] calldata _merkle_proof) external payable saleModifier(2) nonReentrant { require(msg.value >= cost * _token_amount, "insufficient_funds"); uint256 supply = totalSupply(); require(_token_amount > 0, "quantity_is_required"); require(_token_amount + supply <= max_supply, "max_supply_exceedeed" ); require(wallet_minted[msg.sender] + _token_amount <= max_per_wallet, "max_per_wallet_exceeded"); if(!is_whitelisted[msg.sender]) { bytes32 leaf_node = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_merkle_proof, free_whitelist_merkle_root, leaf_node), "invalid_free_whitelist_merkle_proof"); } wallet_minted[msg.sender] += _token_amount; _safeMint(msg.sender, _token_amount); } /* public mint */ function publicBuy(uint256 _token_amount) external payable saleModifier(3) nonReentrant { require(msg.value >= cost * _token_amount, "insufficient_funds"); uint256 supply = totalSupply(); require(_token_amount > 0, "quantity_is_required"); require(_token_amount + supply <= max_supply, "max_supply_exceedeed" ); require(wallet_minted[msg.sender] + _token_amount <= max_per_wallet, "max_per_wallet_exceeded"); wallet_minted[msg.sender] += _token_amount; _safeMint(msg.sender, _token_amount); } /* token return */ function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "non_existant_token"); if (collection_revealed) { return string(abi.encodePacked(baseURI, _tokenId.toString())); } else { return revealURI; } } /* functions */ function set_base_uri(string memory _new_base_uri) public onlyOwner { baseURI = _new_base_uri; } function set_reveal_uri(string memory _new_reveal_uri) public onlyOwner { revealURI = _new_reveal_uri; } function set_free_whitelist_sale_state(bool _new_free_whitelist_sale_state) public onlyOwner { free_whitelist_sale = _new_free_whitelist_sale_state; } function set_whitelist_sale_state(bool _new_whitelist_sale_state) public onlyOwner { whitelist_sale = _new_whitelist_sale_state; } function set_public_sale_state(bool _new_public_sale_state) public onlyOwner { public_sale = _new_public_sale_state; } function set_collection_revealed(bool _new_collection_revealed_state) public onlyOwner { collection_revealed = _new_collection_revealed_state; } function set_max_supply(uint256 _new_max_supply) public onlyOwner { max_supply = _new_max_supply; } function set_cost(uint256 _new_cost) public onlyOwner { cost = _new_cost; } function set_max_per_wallet(uint256 _new_max_per_wallet) public onlyOwner { max_per_wallet = _new_max_per_wallet; } function set_free_max_per_wallet(uint256 _new_free_max_per_wallet) public onlyOwner { free_max_per_wallet = _new_free_max_per_wallet; } function set_free_whitelist_merkle_root(bytes32 _new_free_whitelist_merkle_root) public onlyOwner { free_whitelist_merkle_root = _new_free_whitelist_merkle_root; } function set_whitelist_merkle_root(bytes32 _new_whitelist_merkle_root) public onlyOwner { whitelist_merkle_root = _new_whitelist_merkle_root; } /* withdraw */ function withdraw() public payable onlyOwner { uint256 balance = address(this).balance; payable(0xD45dd68C8cA3fa971Bc0e767F227C935997A7bE5).transfer(balance); } }
// 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 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (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. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ 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 Merkle 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 = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// 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 // Creator: Chiru Labs pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; 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'; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts 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"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collection_revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_token_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkle_proof","type":"bytes32[]"}],"name":"freeWhitelistBuy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"free_max_per_wallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"free_wallet_minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"free_whitelist_merkle_root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"free_whitelist_sale","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":[{"internalType":"address","name":"","type":"address"}],"name":"is_whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_per_wallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"uint256","name":"_token_amount","type":"uint256"}],"name":"publicBuy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"public_sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"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":"_new_base_uri","type":"string"}],"name":"set_base_uri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_new_collection_revealed_state","type":"bool"}],"name":"set_collection_revealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_new_cost","type":"uint256"}],"name":"set_cost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_new_free_max_per_wallet","type":"uint256"}],"name":"set_free_max_per_wallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_new_free_whitelist_merkle_root","type":"bytes32"}],"name":"set_free_whitelist_merkle_root","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_new_free_whitelist_sale_state","type":"bool"}],"name":"set_free_whitelist_sale_state","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_new_max_per_wallet","type":"uint256"}],"name":"set_max_per_wallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_new_max_supply","type":"uint256"}],"name":"set_max_supply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_new_public_sale_state","type":"bool"}],"name":"set_public_sale_state","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_new_reveal_uri","type":"string"}],"name":"set_reveal_uri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_new_whitelist_merkle_root","type":"bytes32"}],"name":"set_whitelist_merkle_root","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_new_whitelist_sale_state","type":"bool"}],"name":"set_whitelist_sale_state","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wallet_minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_token_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkle_proof","type":"bytes32[]"}],"name":"whitelistBuy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelist_merkle_root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelist_sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526000600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506000600a60026101000a81548160ff0219169083151502179055506000600a60036101000a81548160ff02191690831515021790555066e6ed27d6668000600b55611e61600c556002600d556001600e55604051806080016040528060438152602001620056fc6043913960129080519060200190620000bc92919062000282565b50348015620000ca57600080fd5b506040518060400160405280600981526020017f4a756e676c65504f5000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4a504f500000000000000000000000000000000000000000000000000000000081525081600290805190602001906200014f92919062000282565b5080600390805190602001906200016892919062000282565b5062000179620001af60201b60201c565b6000819055505050620001a162000195620001b460201b60201c565b620001bc60201b60201c565b600160098190555062000396565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002909062000361565b90600052602060002090601f016020900481019282620002b4576000855562000300565b82601f10620002cf57805160ff191683800117855562000300565b8280016001018555821562000300579182015b82811115620002ff578251825591602001919060010190620002e2565b5b5090506200030f919062000313565b5090565b5b808211156200032e57600081600090555060010162000314565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200037a57607f821691505b60208210810362000390576200038f62000332565b5b50919050565b61535680620003a66000396000f3fe6080604052600436106102935760003560e01c80636c0360eb1161015a578063a22cb465116100c1578063bd742dd81161007a578063bd742dd8146109b3578063c0188b6b146109dc578063c87b56dd146109f8578063d5884cd514610a35578063e985e9c514610a5e578063f2fde38b14610a9b57610293565b8063a22cb465146108b9578063a2a7320f146108e2578063ab53fcaa1461090b578063ae9c1fd514610936578063af1c521114610961578063b88d4fde1461098a57610293565b80638a333b50116101135780638a333b50146107bb5780638a938f2f146107e65780638da5cb5b1461080f5780638f31225b1461083a57806391ed094d1461086357806395d89b411461088e57610293565b80636c0360eb146106b85780636d6bfb77146106e357806370a08231146106ff578063715018a61461073c578063779ee62814610753578063780a707a1461079057610293565b806339376818116101fe5780634ce18b7f116101b75780634ce18b7f146105b7578063585aff94146105e05780635b40fb6f1461060b5780635caeb579146106365780636352211e1461065f57806368124a6a1461069c57610293565b806339376818146104de5780633bf65311146105075780633ccfd60b14610532578063415161451461053c57806342842e0e146105655780634c6d18c61461058e57610293565b806313faede61161025057806313faede6146103ce578063160fba56146103f957806318160ddd146104245780631a2616ca1461044f5780631e8d03111461048c57806323b872dd146104b557610293565b806301ffc9a71461029857806306fdde03146102d5578063081812fc14610300578063095ea7b31461033d5780630c1ba1991461036657806310a5cdef146103a3575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613fea565b610ac4565b6040516102cc9190614032565b60405180910390f35b3480156102e157600080fd5b506102ea610ba6565b6040516102f791906140e6565b60405180910390f35b34801561030c57600080fd5b506103276004803603810190610322919061413e565b610c38565b60405161033491906141ac565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f91906141f3565b610cb4565b005b34801561037257600080fd5b5061038d60048036038101906103889190614233565b610dbe565b60405161039a919061426f565b60405180910390f35b3480156103af57600080fd5b506103b8610dd6565b6040516103c5919061426f565b60405180910390f35b3480156103da57600080fd5b506103e3610ddc565b6040516103f0919061426f565b60405180910390f35b34801561040557600080fd5b5061040e610de2565b60405161041b91906140e6565b60405180910390f35b34801561043057600080fd5b50610439610e70565b604051610446919061426f565b60405180910390f35b34801561045b57600080fd5b5061047660048036038101906104719190614233565b610e87565b604051610483919061426f565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae919061413e565b610e9f565b005b3480156104c157600080fd5b506104dc60048036038101906104d7919061428a565b610f25565b005b3480156104ea57600080fd5b5061050560048036038101906105009190614313565b610f35565b005b34801561051357600080fd5b5061051c610fbb565b6040516105299190614032565b60405180910390f35b61053a610fce565b005b34801561054857600080fd5b50610563600480360381019061055e919061413e565b6110ad565b005b34801561057157600080fd5b5061058c6004803603810190610587919061428a565b611133565b005b34801561059a57600080fd5b506105b560048036038101906105b09190614313565b611153565b005b3480156105c357600080fd5b506105de60048036038101906105d9919061436c565b6111d9565b005b3480156105ec57600080fd5b506105f5611272565b6040516106029190614032565b60405180910390f35b34801561061757600080fd5b50610620611285565b60405161062d91906143a8565b60405180910390f35b34801561064257600080fd5b5061065d6004803603810190610658919061413e565b61128b565b005b34801561066b57600080fd5b506106866004803603810190610681919061413e565b611311565b60405161069391906141ac565b60405180910390f35b6106b660048036038101906106b19190614428565b611327565b005b3480156106c457600080fd5b506106cd61186e565b6040516106da91906140e6565b60405180910390f35b6106fd60048036038101906106f89190614428565b6118fc565b005b34801561070b57600080fd5b5061072660048036038101906107219190614233565b611ed8565b604051610733919061426f565b60405180910390f35b34801561074857600080fd5b50610751611fa7565b005b34801561075f57600080fd5b5061077a60048036038101906107759190614233565b61202f565b6040516107879190614032565b60405180910390f35b34801561079c57600080fd5b506107a561204f565b6040516107b29190614032565b60405180910390f35b3480156107c757600080fd5b506107d0612062565b6040516107dd919061426f565b60405180910390f35b3480156107f257600080fd5b5061080d6004803603810190610808919061413e565b612068565b005b34801561081b57600080fd5b506108246120ee565b60405161083191906141ac565b60405180910390f35b34801561084657600080fd5b50610861600480360381019061085c919061436c565b612118565b005b34801561086f57600080fd5b506108786121b1565b6040516108859190614032565b60405180910390f35b34801561089a57600080fd5b506108a36121c4565b6040516108b091906140e6565b60405180910390f35b3480156108c557600080fd5b506108e060048036038101906108db9190614488565b612256565b005b3480156108ee57600080fd5b506109096004803603810190610904919061436c565b6123cd565b005b34801561091757600080fd5b50610920612466565b60405161092d919061426f565b60405180910390f35b34801561094257600080fd5b5061094b61246c565b60405161095891906143a8565b60405180910390f35b34801561096d57600080fd5b50610988600480360381019061098391906145f8565b612472565b005b34801561099657600080fd5b506109b160048036038101906109ac91906146e2565b612508565b005b3480156109bf57600080fd5b506109da60048036038101906109d591906145f8565b612584565b005b6109f660048036038101906109f1919061413e565b61261a565b005b348015610a0457600080fd5b50610a1f6004803603810190610a1a919061413e565b612a54565b604051610a2c91906140e6565b60405180910390f35b348015610a4157600080fd5b50610a5c6004803603810190610a57919061436c565b612b78565b005b348015610a6a57600080fd5b50610a856004803603810190610a809190614765565b612c11565b604051610a929190614032565b60405180910390f35b348015610aa757600080fd5b50610ac26004803603810190610abd9190614233565b612ca5565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b8f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b9f5750610b9e82612d9c565b5b9050919050565b606060028054610bb5906147d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610be1906147d4565b8015610c2e5780601f10610c0357610100808354040283529160200191610c2e565b820191906000526020600020905b815481529060010190602001808311610c1157829003601f168201915b5050505050905090565b6000610c4382612e06565b610c79576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cbf82611311565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d26576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d45612e54565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d775750610d7581610d70612e54565b612c11565b155b15610dae576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610db9838383612e5c565b505050565b60146020528060005260406000206000915090505481565b600e5481565b600b5481565b60128054610def906147d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1b906147d4565b8015610e685780601f10610e3d57610100808354040283529160200191610e68565b820191906000526020600020905b815481529060010190602001808311610e4b57829003601f168201915b505050505081565b6000610e7a612f0e565b6001546000540303905090565b60156020528060005260406000206000915090505481565b610ea7612e54565b73ffffffffffffffffffffffffffffffffffffffff16610ec56120ee565b73ffffffffffffffffffffffffffffffffffffffff1614610f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1290614851565b60405180910390fd5b80600b8190555050565b610f30838383612f13565b505050565b610f3d612e54565b73ffffffffffffffffffffffffffffffffffffffff16610f5b6120ee565b73ffffffffffffffffffffffffffffffffffffffff1614610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890614851565b60405180910390fd5b80600f8190555050565b600a60019054906101000a900460ff1681565b610fd6612e54565b73ffffffffffffffffffffffffffffffffffffffff16610ff46120ee565b73ffffffffffffffffffffffffffffffffffffffff161461104a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104190614851565b60405180910390fd5b600047905073d45dd68c8ca3fa971bc0e767f227c935997a7be573ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156110a9573d6000803e3d6000fd5b5050565b6110b5612e54565b73ffffffffffffffffffffffffffffffffffffffff166110d36120ee565b73ffffffffffffffffffffffffffffffffffffffff1614611129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112090614851565b60405180910390fd5b80600e8190555050565b61114e83838360405180602001604052806000815250612508565b505050565b61115b612e54565b73ffffffffffffffffffffffffffffffffffffffff166111796120ee565b73ffffffffffffffffffffffffffffffffffffffff16146111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690614851565b60405180910390fd5b8060108190555050565b6111e1612e54565b73ffffffffffffffffffffffffffffffffffffffff166111ff6120ee565b73ffffffffffffffffffffffffffffffffffffffff1614611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c90614851565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b600a60009054906101000a900460ff1681565b60105481565b611293612e54565b73ffffffffffffffffffffffffffffffffffffffff166112b16120ee565b73ffffffffffffffffffffffffffffffffffffffff1614611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe90614851565b60405180910390fd5b80600d8190555050565b600061131c826133c7565b600001519050919050565b60023373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138e906148bd565b60405180910390fd5b42601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f90614929565b60405180910390fd5b60018160ff160361147357600a60019054906101000a900460ff16611472576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611469906149bb565b60405180910390fd5b5b60028160ff16036114ce57600a60029054906101000a900460ff166114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c490614a27565b60405180910390fd5b5b60038160ff160361152957600a60039054906101000a900460ff16611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f90614a93565b60405180910390fd5b5b60026009540361156e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156590614aff565b60405180910390fd5b600260098190555083600b546115849190614b4e565b3410156115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd90614bf4565b60405180910390fd5b60006115d0610e70565b905060008511611615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160c90614c60565b60405180910390fd5b600c5481866116249190614c80565b1115611665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165c90614d22565b60405180910390fd5b600d5485601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116b39190614c80565b11156116f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116eb90614d8e565b60405180910390fd5b601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166117ff576000336040516020016117589190614df6565b6040516020818303038152906040528051906020012090506117be858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483613656565b6117fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f490614e83565b60405180910390fd5b505b84601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461184e9190614c80565b9250508190555061185f338661366d565b50600160098190555050505050565b6011805461187b906147d4565b80601f01602080910402602001604051908101604052809291908181526020018280546118a7906147d4565b80156118f45780601f106118c9576101008083540402835291602001916118f4565b820191906000526020600020905b8154815290600101906020018083116118d757829003601f168201915b505050505081565b60013373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461196c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611963906148bd565b60405180910390fd5b42601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e490614929565b60405180910390fd5b60018160ff1603611a4857600a60019054906101000a900460ff16611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e906149bb565b60405180910390fd5b5b60028160ff1603611aa357600a60029054906101000a900460ff16611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9990614a27565b60405180910390fd5b5b60038160ff1603611afe57600a60039054906101000a900460ff16611afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af490614a93565b60405180910390fd5b5b600260095403611b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3a90614aff565b60405180910390fd5b60026009819055506000611b55610e70565b905060008511611b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9190614c60565b60405180910390fd5b600c548186611ba99190614c80565b1115611bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be190614d22565b60405180910390fd5b600e5485601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c389190614c80565b1115611c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7090614eef565b60405180910390fd5b600d5485601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cc79190614c80565b1115611d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cff90614d8e565b60405180910390fd5b601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611e1357600033604051602001611d6c9190614df6565b604051602081830303815290604052805190602001209050611dd2858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483613656565b611e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0890614e83565b60405180910390fd5b505b84601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e629190614c80565b9250508190555084601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eb89190614c80565b92505081905550611ec9338661366d565b50600160098190555050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f3f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611faf612e54565b73ffffffffffffffffffffffffffffffffffffffff16611fcd6120ee565b73ffffffffffffffffffffffffffffffffffffffff1614612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a90614851565b60405180910390fd5b61202d600061368b565b565b60166020528060005260406000206000915054906101000a900460ff1681565b600a60029054906101000a900460ff1681565b600c5481565b612070612e54565b73ffffffffffffffffffffffffffffffffffffffff1661208e6120ee565b73ffffffffffffffffffffffffffffffffffffffff16146120e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120db90614851565b60405180910390fd5b80600c8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612120612e54565b73ffffffffffffffffffffffffffffffffffffffff1661213e6120ee565b73ffffffffffffffffffffffffffffffffffffffff1614612194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218b90614851565b60405180910390fd5b80600a60036101000a81548160ff02191690831515021790555050565b600a60039054906101000a900460ff1681565b6060600380546121d3906147d4565b80601f01602080910402602001604051908101604052809291908181526020018280546121ff906147d4565b801561224c5780601f106122215761010080835404028352916020019161224c565b820191906000526020600020905b81548152906001019060200180831161222f57829003601f168201915b5050505050905090565b61225e612e54565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122c2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006122cf612e54565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661237c612e54565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123c19190614032565b60405180910390a35050565b6123d5612e54565b73ffffffffffffffffffffffffffffffffffffffff166123f36120ee565b73ffffffffffffffffffffffffffffffffffffffff1614612449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244090614851565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b600d5481565b600f5481565b61247a612e54565b73ffffffffffffffffffffffffffffffffffffffff166124986120ee565b73ffffffffffffffffffffffffffffffffffffffff16146124ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e590614851565b60405180910390fd5b8060119080519060200190612504929190613e98565b5050565b612513848484612f13565b6125328373ffffffffffffffffffffffffffffffffffffffff16613751565b8015612547575061254584848484613774565b155b1561257e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b61258c612e54565b73ffffffffffffffffffffffffffffffffffffffff166125aa6120ee565b73ffffffffffffffffffffffffffffffffffffffff1614612600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f790614851565b60405180910390fd5b8060129080519060200190612616929190613e98565b5050565b60033373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461268a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612681906148bd565b60405180910390fd5b42601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061270b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270290614929565b60405180910390fd5b60018160ff160361276657600a60019054906101000a900460ff16612765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275c906149bb565b60405180910390fd5b5b60028160ff16036127c157600a60029054906101000a900460ff166127c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b790614a27565b60405180910390fd5b5b60038160ff160361281c57600a60039054906101000a900460ff1661281b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281290614a93565b60405180910390fd5b5b600260095403612861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285890614aff565b60405180910390fd5b600260098190555081600b546128779190614b4e565b3410156128b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b090614bf4565b60405180910390fd5b60006128c3610e70565b905060008311612908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ff90614c60565b60405180910390fd5b600c5481846129179190614c80565b1115612958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294f90614d22565b60405180910390fd5b600d5483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129a69190614c80565b11156129e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129de90614d8e565b60405180910390fd5b82601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a369190614c80565b92505081905550612a47338461366d565b5060016009819055505050565b6060612a5f82612e06565b612a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9590614f5b565b60405180910390fd5b600a60009054906101000a900460ff1615612ae5576011612abe836138c4565b604051602001612acf92919061504b565b6040516020818303038152906040529050612b73565b60128054612af2906147d4565b80601f0160208091040260200160405190810160405280929190818152602001828054612b1e906147d4565b8015612b6b5780601f10612b4057610100808354040283529160200191612b6b565b820191906000526020600020905b815481529060010190602001808311612b4e57829003601f168201915b505050505090505b919050565b612b80612e54565b73ffffffffffffffffffffffffffffffffffffffff16612b9e6120ee565b73ffffffffffffffffffffffffffffffffffffffff1614612bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612beb90614851565b60405180910390fd5b80600a60016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612cad612e54565b73ffffffffffffffffffffffffffffffffffffffff16612ccb6120ee565b73ffffffffffffffffffffffffffffffffffffffff1614612d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1890614851565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d87906150e1565b60405180910390fd5b612d998161368b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612e11612f0e565b11158015612e20575060005482105b8015612e4d575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000612f1e826133c7565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612f89576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612faa612e54565b73ffffffffffffffffffffffffffffffffffffffff161480612fd95750612fd885612fd3612e54565b612c11565b5b8061301e5750612fe7612e54565b73ffffffffffffffffffffffffffffffffffffffff1661300684610c38565b73ffffffffffffffffffffffffffffffffffffffff16145b905080613057576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036130bd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130ca8585856001613a24565b6130d660008487612e5c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361335557600054821461335457878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133c08585856001613a2a565b5050505050565b6133cf613f1e565b6000829050806133dd612f0e565b111580156133ec575060005481105b1561361f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161361d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613501578092505050613651565b5b60011561361c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613617578092505050613651565b613502565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000826136638584613a30565b1490509392505050565b613687828260405180602001604052806000815250613aa5565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261379a612e54565b8786866040518563ffffffff1660e01b81526004016137bc9493929190615156565b6020604051808303816000875af19250505080156137f857506040513d601f19601f820116820180604052508101906137f591906151b7565b60015b613871573d8060008114613828576040519150601f19603f3d011682016040523d82523d6000602084013e61382d565b606091505b506000815103613869576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000820361390b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613a1f565b600082905060005b6000821461393d578080613926906151e4565b915050600a82613936919061525b565b9150613913565b60008167ffffffffffffffff811115613959576139586144cd565b5b6040519080825280601f01601f19166020018201604052801561398b5781602001600182028036833780820191505090505b5090505b60008514613a18576001826139a4919061528c565b9150600a856139b391906152c0565b60306139bf9190614c80565b60f81b8183815181106139d5576139d46152f1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613a11919061525b565b945061398f565b8093505050505b919050565b50505050565b50505050565b60008082905060005b8451811015613a9a576000858281518110613a5757613a566152f1565b5b60200260200101519050808311613a7957613a728382613ab7565b9250613a86565b613a838184613ab7565b92505b508080613a92906151e4565b915050613a39565b508091505092915050565b613ab28383836001613ace565b505050565b600082600052816020526040600020905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613b3a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403613b74576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613b816000868387613a24565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613d4b5750613d4a8773ffffffffffffffffffffffffffffffffffffffff16613751565b5b15613e10575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613dc06000888480600101955088613774565b613df6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203613d51578260005414613e0b57600080fd5b613e7b565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203613e11575b816000819055505050613e916000868387613a2a565b5050505050565b828054613ea4906147d4565b90600052602060002090601f016020900481019282613ec65760008555613f0d565b82601f10613edf57805160ff1916838001178555613f0d565b82800160010185558215613f0d579182015b82811115613f0c578251825591602001919060010190613ef1565b5b509050613f1a9190613f61565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613f7a576000816000905550600101613f62565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613fc781613f92565b8114613fd257600080fd5b50565b600081359050613fe481613fbe565b92915050565b60006020828403121561400057613fff613f88565b5b600061400e84828501613fd5565b91505092915050565b60008115159050919050565b61402c81614017565b82525050565b60006020820190506140476000830184614023565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561408757808201518184015260208101905061406c565b83811115614096576000848401525b50505050565b6000601f19601f8301169050919050565b60006140b88261404d565b6140c28185614058565b93506140d2818560208601614069565b6140db8161409c565b840191505092915050565b6000602082019050818103600083015261410081846140ad565b905092915050565b6000819050919050565b61411b81614108565b811461412657600080fd5b50565b60008135905061413881614112565b92915050565b60006020828403121561415457614153613f88565b5b600061416284828501614129565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006141968261416b565b9050919050565b6141a68161418b565b82525050565b60006020820190506141c1600083018461419d565b92915050565b6141d08161418b565b81146141db57600080fd5b50565b6000813590506141ed816141c7565b92915050565b6000806040838503121561420a57614209613f88565b5b6000614218858286016141de565b925050602061422985828601614129565b9150509250929050565b60006020828403121561424957614248613f88565b5b6000614257848285016141de565b91505092915050565b61426981614108565b82525050565b60006020820190506142846000830184614260565b92915050565b6000806000606084860312156142a3576142a2613f88565b5b60006142b1868287016141de565b93505060206142c2868287016141de565b92505060406142d386828701614129565b9150509250925092565b6000819050919050565b6142f0816142dd565b81146142fb57600080fd5b50565b60008135905061430d816142e7565b92915050565b60006020828403121561432957614328613f88565b5b6000614337848285016142fe565b91505092915050565b61434981614017565b811461435457600080fd5b50565b60008135905061436681614340565b92915050565b60006020828403121561438257614381613f88565b5b600061439084828501614357565b91505092915050565b6143a2816142dd565b82525050565b60006020820190506143bd6000830184614399565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126143e8576143e76143c3565b5b8235905067ffffffffffffffff811115614405576144046143c8565b5b602083019150836020820283011115614421576144206143cd565b5b9250929050565b60008060006040848603121561444157614440613f88565b5b600061444f86828701614129565b935050602084013567ffffffffffffffff8111156144705761446f613f8d565b5b61447c868287016143d2565b92509250509250925092565b6000806040838503121561449f5761449e613f88565b5b60006144ad858286016141de565b92505060206144be85828601614357565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6145058261409c565b810181811067ffffffffffffffff82111715614524576145236144cd565b5b80604052505050565b6000614537613f7e565b905061454382826144fc565b919050565b600067ffffffffffffffff821115614563576145626144cd565b5b61456c8261409c565b9050602081019050919050565b82818337600083830152505050565b600061459b61459684614548565b61452d565b9050828152602081018484840111156145b7576145b66144c8565b5b6145c2848285614579565b509392505050565b600082601f8301126145df576145de6143c3565b5b81356145ef848260208601614588565b91505092915050565b60006020828403121561460e5761460d613f88565b5b600082013567ffffffffffffffff81111561462c5761462b613f8d565b5b614638848285016145ca565b91505092915050565b600067ffffffffffffffff82111561465c5761465b6144cd565b5b6146658261409c565b9050602081019050919050565b600061468561468084614641565b61452d565b9050828152602081018484840111156146a1576146a06144c8565b5b6146ac848285614579565b509392505050565b600082601f8301126146c9576146c86143c3565b5b81356146d9848260208601614672565b91505092915050565b600080600080608085870312156146fc576146fb613f88565b5b600061470a878288016141de565b945050602061471b878288016141de565b935050604061472c87828801614129565b925050606085013567ffffffffffffffff81111561474d5761474c613f8d565b5b614759878288016146b4565b91505092959194509250565b6000806040838503121561477c5761477b613f88565b5b600061478a858286016141de565b925050602061479b858286016141de565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806147ec57607f821691505b6020821081036147ff576147fe6147a5565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061483b602083614058565b915061484682614805565b602082019050919050565b6000602082019050818103600083015261486a8161482e565b9050919050565b7f636f6e7472616374735f6e6f745f616c6c6f7765645f746f5f6d696e74000000600082015250565b60006148a7601d83614058565b91506148b282614871565b602082019050919050565b600060208201905081810360008301526148d68161489a565b9050919050565b7f6e6f5f6d696e745f6f6e5f7468655f73616d655f626c6f636b00000000000000600082015250565b6000614913601983614058565b915061491e826148dd565b602082019050919050565b6000602082019050818103600083015261494281614906565b9050919050565b7f667265655f77686974656c6973745f73616c655f6e6f745f616374697661746560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b60006149a5602183614058565b91506149b082614949565b604082019050919050565b600060208201905081810360008301526149d481614998565b9050919050565b7f77686974656c6973745f73616c655f6e6f745f61637469766174656400000000600082015250565b6000614a11601c83614058565b9150614a1c826149db565b602082019050919050565b60006020820190508181036000830152614a4081614a04565b9050919050565b7f7075626c69635f73616c655f6e6f745f61637469766174656400000000000000600082015250565b6000614a7d601983614058565b9150614a8882614a47565b602082019050919050565b60006020820190508181036000830152614aac81614a70565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614ae9601f83614058565b9150614af482614ab3565b602082019050919050565b60006020820190508181036000830152614b1881614adc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b5982614108565b9150614b6483614108565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b9d57614b9c614b1f565b5b828202905092915050565b7f696e73756666696369656e745f66756e64730000000000000000000000000000600082015250565b6000614bde601283614058565b9150614be982614ba8565b602082019050919050565b60006020820190508181036000830152614c0d81614bd1565b9050919050565b7f7175616e746974795f69735f7265717569726564000000000000000000000000600082015250565b6000614c4a601483614058565b9150614c5582614c14565b602082019050919050565b60006020820190508181036000830152614c7981614c3d565b9050919050565b6000614c8b82614108565b9150614c9683614108565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614ccb57614cca614b1f565b5b828201905092915050565b7f6d61785f737570706c795f657863656564656564000000000000000000000000600082015250565b6000614d0c601483614058565b9150614d1782614cd6565b602082019050919050565b60006020820190508181036000830152614d3b81614cff565b9050919050565b7f6d61785f7065725f77616c6c65745f6578636565646564000000000000000000600082015250565b6000614d78601783614058565b9150614d8382614d42565b602082019050919050565b60006020820190508181036000830152614da781614d6b565b9050919050565b60008160601b9050919050565b6000614dc682614dae565b9050919050565b6000614dd882614dbb565b9050919050565b614df0614deb8261418b565b614dcd565b82525050565b6000614e028284614ddf565b60148201915081905092915050565b7f696e76616c69645f667265655f77686974656c6973745f6d65726b6c655f707260008201527f6f6f660000000000000000000000000000000000000000000000000000000000602082015250565b6000614e6d602383614058565b9150614e7882614e11565b604082019050919050565b60006020820190508181036000830152614e9c81614e60565b9050919050565b7f667265655f6d61785f7065725f77616c6c65745f657863656564656400000000600082015250565b6000614ed9601c83614058565b9150614ee482614ea3565b602082019050919050565b60006020820190508181036000830152614f0881614ecc565b9050919050565b7f6e6f6e5f6578697374616e745f746f6b656e0000000000000000000000000000600082015250565b6000614f45601283614058565b9150614f5082614f0f565b602082019050919050565b60006020820190508181036000830152614f7481614f38565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154614fa8816147d4565b614fb28186614f7b565b94506001821660008114614fcd5760018114614fde57615011565b60ff19831686528186019350615011565b614fe785614f86565b60005b8381101561500957815481890152600182019150602081019050614fea565b838801955050505b50505092915050565b60006150258261404d565b61502f8185614f7b565b935061503f818560208601614069565b80840191505092915050565b60006150578285614f9b565b9150615063828461501a565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150cb602683614058565b91506150d68261506f565b604082019050919050565b600060208201905081810360008301526150fa816150be565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061512882615101565b615132818561510c565b9350615142818560208601614069565b61514b8161409c565b840191505092915050565b600060808201905061516b600083018761419d565b615178602083018661419d565b6151856040830185614260565b8181036060830152615197818461511d565b905095945050505050565b6000815190506151b181613fbe565b92915050565b6000602082840312156151cd576151cc613f88565b5b60006151db848285016151a2565b91505092915050565b60006151ef82614108565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361522157615220614b1f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061526682614108565b915061527183614108565b9250826152815761528061522c565b5b828204905092915050565b600061529782614108565b91506152a283614108565b9250828210156152b5576152b4614b1f565b5b828203905092915050565b60006152cb82614108565b91506152d683614108565b9250826152e6576152e561522c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212206ea117106fbb0b527d9260c9efe1de5734f995e7e8d2ebb13ee914eca34988ba64736f6c634300080d003368747470733a2f2f697066732e696f2f697066732f516d66564a70363241544e346b36336d42626537596b595a6e64336e776e6835544568596e35396e7471446a5544
Deployed Bytecode
0x6080604052600436106102935760003560e01c80636c0360eb1161015a578063a22cb465116100c1578063bd742dd81161007a578063bd742dd8146109b3578063c0188b6b146109dc578063c87b56dd146109f8578063d5884cd514610a35578063e985e9c514610a5e578063f2fde38b14610a9b57610293565b8063a22cb465146108b9578063a2a7320f146108e2578063ab53fcaa1461090b578063ae9c1fd514610936578063af1c521114610961578063b88d4fde1461098a57610293565b80638a333b50116101135780638a333b50146107bb5780638a938f2f146107e65780638da5cb5b1461080f5780638f31225b1461083a57806391ed094d1461086357806395d89b411461088e57610293565b80636c0360eb146106b85780636d6bfb77146106e357806370a08231146106ff578063715018a61461073c578063779ee62814610753578063780a707a1461079057610293565b806339376818116101fe5780634ce18b7f116101b75780634ce18b7f146105b7578063585aff94146105e05780635b40fb6f1461060b5780635caeb579146106365780636352211e1461065f57806368124a6a1461069c57610293565b806339376818146104de5780633bf65311146105075780633ccfd60b14610532578063415161451461053c57806342842e0e146105655780634c6d18c61461058e57610293565b806313faede61161025057806313faede6146103ce578063160fba56146103f957806318160ddd146104245780631a2616ca1461044f5780631e8d03111461048c57806323b872dd146104b557610293565b806301ffc9a71461029857806306fdde03146102d5578063081812fc14610300578063095ea7b31461033d5780630c1ba1991461036657806310a5cdef146103a3575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613fea565b610ac4565b6040516102cc9190614032565b60405180910390f35b3480156102e157600080fd5b506102ea610ba6565b6040516102f791906140e6565b60405180910390f35b34801561030c57600080fd5b506103276004803603810190610322919061413e565b610c38565b60405161033491906141ac565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f91906141f3565b610cb4565b005b34801561037257600080fd5b5061038d60048036038101906103889190614233565b610dbe565b60405161039a919061426f565b60405180910390f35b3480156103af57600080fd5b506103b8610dd6565b6040516103c5919061426f565b60405180910390f35b3480156103da57600080fd5b506103e3610ddc565b6040516103f0919061426f565b60405180910390f35b34801561040557600080fd5b5061040e610de2565b60405161041b91906140e6565b60405180910390f35b34801561043057600080fd5b50610439610e70565b604051610446919061426f565b60405180910390f35b34801561045b57600080fd5b5061047660048036038101906104719190614233565b610e87565b604051610483919061426f565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae919061413e565b610e9f565b005b3480156104c157600080fd5b506104dc60048036038101906104d7919061428a565b610f25565b005b3480156104ea57600080fd5b5061050560048036038101906105009190614313565b610f35565b005b34801561051357600080fd5b5061051c610fbb565b6040516105299190614032565b60405180910390f35b61053a610fce565b005b34801561054857600080fd5b50610563600480360381019061055e919061413e565b6110ad565b005b34801561057157600080fd5b5061058c6004803603810190610587919061428a565b611133565b005b34801561059a57600080fd5b506105b560048036038101906105b09190614313565b611153565b005b3480156105c357600080fd5b506105de60048036038101906105d9919061436c565b6111d9565b005b3480156105ec57600080fd5b506105f5611272565b6040516106029190614032565b60405180910390f35b34801561061757600080fd5b50610620611285565b60405161062d91906143a8565b60405180910390f35b34801561064257600080fd5b5061065d6004803603810190610658919061413e565b61128b565b005b34801561066b57600080fd5b506106866004803603810190610681919061413e565b611311565b60405161069391906141ac565b60405180910390f35b6106b660048036038101906106b19190614428565b611327565b005b3480156106c457600080fd5b506106cd61186e565b6040516106da91906140e6565b60405180910390f35b6106fd60048036038101906106f89190614428565b6118fc565b005b34801561070b57600080fd5b5061072660048036038101906107219190614233565b611ed8565b604051610733919061426f565b60405180910390f35b34801561074857600080fd5b50610751611fa7565b005b34801561075f57600080fd5b5061077a60048036038101906107759190614233565b61202f565b6040516107879190614032565b60405180910390f35b34801561079c57600080fd5b506107a561204f565b6040516107b29190614032565b60405180910390f35b3480156107c757600080fd5b506107d0612062565b6040516107dd919061426f565b60405180910390f35b3480156107f257600080fd5b5061080d6004803603810190610808919061413e565b612068565b005b34801561081b57600080fd5b506108246120ee565b60405161083191906141ac565b60405180910390f35b34801561084657600080fd5b50610861600480360381019061085c919061436c565b612118565b005b34801561086f57600080fd5b506108786121b1565b6040516108859190614032565b60405180910390f35b34801561089a57600080fd5b506108a36121c4565b6040516108b091906140e6565b60405180910390f35b3480156108c557600080fd5b506108e060048036038101906108db9190614488565b612256565b005b3480156108ee57600080fd5b506109096004803603810190610904919061436c565b6123cd565b005b34801561091757600080fd5b50610920612466565b60405161092d919061426f565b60405180910390f35b34801561094257600080fd5b5061094b61246c565b60405161095891906143a8565b60405180910390f35b34801561096d57600080fd5b50610988600480360381019061098391906145f8565b612472565b005b34801561099657600080fd5b506109b160048036038101906109ac91906146e2565b612508565b005b3480156109bf57600080fd5b506109da60048036038101906109d591906145f8565b612584565b005b6109f660048036038101906109f1919061413e565b61261a565b005b348015610a0457600080fd5b50610a1f6004803603810190610a1a919061413e565b612a54565b604051610a2c91906140e6565b60405180910390f35b348015610a4157600080fd5b50610a5c6004803603810190610a57919061436c565b612b78565b005b348015610a6a57600080fd5b50610a856004803603810190610a809190614765565b612c11565b604051610a929190614032565b60405180910390f35b348015610aa757600080fd5b50610ac26004803603810190610abd9190614233565b612ca5565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b8f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b9f5750610b9e82612d9c565b5b9050919050565b606060028054610bb5906147d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610be1906147d4565b8015610c2e5780601f10610c0357610100808354040283529160200191610c2e565b820191906000526020600020905b815481529060010190602001808311610c1157829003601f168201915b5050505050905090565b6000610c4382612e06565b610c79576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cbf82611311565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d26576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d45612e54565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d775750610d7581610d70612e54565b612c11565b155b15610dae576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610db9838383612e5c565b505050565b60146020528060005260406000206000915090505481565b600e5481565b600b5481565b60128054610def906147d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1b906147d4565b8015610e685780601f10610e3d57610100808354040283529160200191610e68565b820191906000526020600020905b815481529060010190602001808311610e4b57829003601f168201915b505050505081565b6000610e7a612f0e565b6001546000540303905090565b60156020528060005260406000206000915090505481565b610ea7612e54565b73ffffffffffffffffffffffffffffffffffffffff16610ec56120ee565b73ffffffffffffffffffffffffffffffffffffffff1614610f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1290614851565b60405180910390fd5b80600b8190555050565b610f30838383612f13565b505050565b610f3d612e54565b73ffffffffffffffffffffffffffffffffffffffff16610f5b6120ee565b73ffffffffffffffffffffffffffffffffffffffff1614610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890614851565b60405180910390fd5b80600f8190555050565b600a60019054906101000a900460ff1681565b610fd6612e54565b73ffffffffffffffffffffffffffffffffffffffff16610ff46120ee565b73ffffffffffffffffffffffffffffffffffffffff161461104a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104190614851565b60405180910390fd5b600047905073d45dd68c8ca3fa971bc0e767f227c935997a7be573ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156110a9573d6000803e3d6000fd5b5050565b6110b5612e54565b73ffffffffffffffffffffffffffffffffffffffff166110d36120ee565b73ffffffffffffffffffffffffffffffffffffffff1614611129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112090614851565b60405180910390fd5b80600e8190555050565b61114e83838360405180602001604052806000815250612508565b505050565b61115b612e54565b73ffffffffffffffffffffffffffffffffffffffff166111796120ee565b73ffffffffffffffffffffffffffffffffffffffff16146111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690614851565b60405180910390fd5b8060108190555050565b6111e1612e54565b73ffffffffffffffffffffffffffffffffffffffff166111ff6120ee565b73ffffffffffffffffffffffffffffffffffffffff1614611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c90614851565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b600a60009054906101000a900460ff1681565b60105481565b611293612e54565b73ffffffffffffffffffffffffffffffffffffffff166112b16120ee565b73ffffffffffffffffffffffffffffffffffffffff1614611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe90614851565b60405180910390fd5b80600d8190555050565b600061131c826133c7565b600001519050919050565b60023373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138e906148bd565b60405180910390fd5b42601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f90614929565b60405180910390fd5b60018160ff160361147357600a60019054906101000a900460ff16611472576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611469906149bb565b60405180910390fd5b5b60028160ff16036114ce57600a60029054906101000a900460ff166114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c490614a27565b60405180910390fd5b5b60038160ff160361152957600a60039054906101000a900460ff16611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f90614a93565b60405180910390fd5b5b60026009540361156e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156590614aff565b60405180910390fd5b600260098190555083600b546115849190614b4e565b3410156115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd90614bf4565b60405180910390fd5b60006115d0610e70565b905060008511611615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160c90614c60565b60405180910390fd5b600c5481866116249190614c80565b1115611665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165c90614d22565b60405180910390fd5b600d5485601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116b39190614c80565b11156116f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116eb90614d8e565b60405180910390fd5b601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166117ff576000336040516020016117589190614df6565b6040516020818303038152906040528051906020012090506117be858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483613656565b6117fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f490614e83565b60405180910390fd5b505b84601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461184e9190614c80565b9250508190555061185f338661366d565b50600160098190555050505050565b6011805461187b906147d4565b80601f01602080910402602001604051908101604052809291908181526020018280546118a7906147d4565b80156118f45780601f106118c9576101008083540402835291602001916118f4565b820191906000526020600020905b8154815290600101906020018083116118d757829003601f168201915b505050505081565b60013373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461196c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611963906148bd565b60405180910390fd5b42601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e490614929565b60405180910390fd5b60018160ff1603611a4857600a60019054906101000a900460ff16611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e906149bb565b60405180910390fd5b5b60028160ff1603611aa357600a60029054906101000a900460ff16611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9990614a27565b60405180910390fd5b5b60038160ff1603611afe57600a60039054906101000a900460ff16611afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af490614a93565b60405180910390fd5b5b600260095403611b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3a90614aff565b60405180910390fd5b60026009819055506000611b55610e70565b905060008511611b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9190614c60565b60405180910390fd5b600c548186611ba99190614c80565b1115611bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be190614d22565b60405180910390fd5b600e5485601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c389190614c80565b1115611c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7090614eef565b60405180910390fd5b600d5485601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cc79190614c80565b1115611d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cff90614d8e565b60405180910390fd5b601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611e1357600033604051602001611d6c9190614df6565b604051602081830303815290604052805190602001209050611dd2858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483613656565b611e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0890614e83565b60405180910390fd5b505b84601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e629190614c80565b9250508190555084601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eb89190614c80565b92505081905550611ec9338661366d565b50600160098190555050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f3f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611faf612e54565b73ffffffffffffffffffffffffffffffffffffffff16611fcd6120ee565b73ffffffffffffffffffffffffffffffffffffffff1614612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a90614851565b60405180910390fd5b61202d600061368b565b565b60166020528060005260406000206000915054906101000a900460ff1681565b600a60029054906101000a900460ff1681565b600c5481565b612070612e54565b73ffffffffffffffffffffffffffffffffffffffff1661208e6120ee565b73ffffffffffffffffffffffffffffffffffffffff16146120e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120db90614851565b60405180910390fd5b80600c8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612120612e54565b73ffffffffffffffffffffffffffffffffffffffff1661213e6120ee565b73ffffffffffffffffffffffffffffffffffffffff1614612194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218b90614851565b60405180910390fd5b80600a60036101000a81548160ff02191690831515021790555050565b600a60039054906101000a900460ff1681565b6060600380546121d3906147d4565b80601f01602080910402602001604051908101604052809291908181526020018280546121ff906147d4565b801561224c5780601f106122215761010080835404028352916020019161224c565b820191906000526020600020905b81548152906001019060200180831161222f57829003601f168201915b5050505050905090565b61225e612e54565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122c2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006122cf612e54565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661237c612e54565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123c19190614032565b60405180910390a35050565b6123d5612e54565b73ffffffffffffffffffffffffffffffffffffffff166123f36120ee565b73ffffffffffffffffffffffffffffffffffffffff1614612449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244090614851565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b600d5481565b600f5481565b61247a612e54565b73ffffffffffffffffffffffffffffffffffffffff166124986120ee565b73ffffffffffffffffffffffffffffffffffffffff16146124ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e590614851565b60405180910390fd5b8060119080519060200190612504929190613e98565b5050565b612513848484612f13565b6125328373ffffffffffffffffffffffffffffffffffffffff16613751565b8015612547575061254584848484613774565b155b1561257e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b61258c612e54565b73ffffffffffffffffffffffffffffffffffffffff166125aa6120ee565b73ffffffffffffffffffffffffffffffffffffffff1614612600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f790614851565b60405180910390fd5b8060129080519060200190612616929190613e98565b5050565b60033373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461268a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612681906148bd565b60405180910390fd5b42601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061270b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270290614929565b60405180910390fd5b60018160ff160361276657600a60019054906101000a900460ff16612765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275c906149bb565b60405180910390fd5b5b60028160ff16036127c157600a60029054906101000a900460ff166127c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b790614a27565b60405180910390fd5b5b60038160ff160361281c57600a60039054906101000a900460ff1661281b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281290614a93565b60405180910390fd5b5b600260095403612861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285890614aff565b60405180910390fd5b600260098190555081600b546128779190614b4e565b3410156128b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b090614bf4565b60405180910390fd5b60006128c3610e70565b905060008311612908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ff90614c60565b60405180910390fd5b600c5481846129179190614c80565b1115612958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294f90614d22565b60405180910390fd5b600d5483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129a69190614c80565b11156129e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129de90614d8e565b60405180910390fd5b82601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a369190614c80565b92505081905550612a47338461366d565b5060016009819055505050565b6060612a5f82612e06565b612a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9590614f5b565b60405180910390fd5b600a60009054906101000a900460ff1615612ae5576011612abe836138c4565b604051602001612acf92919061504b565b6040516020818303038152906040529050612b73565b60128054612af2906147d4565b80601f0160208091040260200160405190810160405280929190818152602001828054612b1e906147d4565b8015612b6b5780601f10612b4057610100808354040283529160200191612b6b565b820191906000526020600020905b815481529060010190602001808311612b4e57829003601f168201915b505050505090505b919050565b612b80612e54565b73ffffffffffffffffffffffffffffffffffffffff16612b9e6120ee565b73ffffffffffffffffffffffffffffffffffffffff1614612bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612beb90614851565b60405180910390fd5b80600a60016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612cad612e54565b73ffffffffffffffffffffffffffffffffffffffff16612ccb6120ee565b73ffffffffffffffffffffffffffffffffffffffff1614612d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1890614851565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d87906150e1565b60405180910390fd5b612d998161368b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612e11612f0e565b11158015612e20575060005482105b8015612e4d575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000612f1e826133c7565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612f89576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612faa612e54565b73ffffffffffffffffffffffffffffffffffffffff161480612fd95750612fd885612fd3612e54565b612c11565b5b8061301e5750612fe7612e54565b73ffffffffffffffffffffffffffffffffffffffff1661300684610c38565b73ffffffffffffffffffffffffffffffffffffffff16145b905080613057576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036130bd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130ca8585856001613a24565b6130d660008487612e5c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361335557600054821461335457878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133c08585856001613a2a565b5050505050565b6133cf613f1e565b6000829050806133dd612f0e565b111580156133ec575060005481105b1561361f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161361d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613501578092505050613651565b5b60011561361c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613617578092505050613651565b613502565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000826136638584613a30565b1490509392505050565b613687828260405180602001604052806000815250613aa5565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261379a612e54565b8786866040518563ffffffff1660e01b81526004016137bc9493929190615156565b6020604051808303816000875af19250505080156137f857506040513d601f19601f820116820180604052508101906137f591906151b7565b60015b613871573d8060008114613828576040519150601f19603f3d011682016040523d82523d6000602084013e61382d565b606091505b506000815103613869576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000820361390b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613a1f565b600082905060005b6000821461393d578080613926906151e4565b915050600a82613936919061525b565b9150613913565b60008167ffffffffffffffff811115613959576139586144cd565b5b6040519080825280601f01601f19166020018201604052801561398b5781602001600182028036833780820191505090505b5090505b60008514613a18576001826139a4919061528c565b9150600a856139b391906152c0565b60306139bf9190614c80565b60f81b8183815181106139d5576139d46152f1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613a11919061525b565b945061398f565b8093505050505b919050565b50505050565b50505050565b60008082905060005b8451811015613a9a576000858281518110613a5757613a566152f1565b5b60200260200101519050808311613a7957613a728382613ab7565b9250613a86565b613a838184613ab7565b92505b508080613a92906151e4565b915050613a39565b508091505092915050565b613ab28383836001613ace565b505050565b600082600052816020526040600020905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613b3a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403613b74576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613b816000868387613a24565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613d4b5750613d4a8773ffffffffffffffffffffffffffffffffffffffff16613751565b5b15613e10575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613dc06000888480600101955088613774565b613df6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203613d51578260005414613e0b57600080fd5b613e7b565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203613e11575b816000819055505050613e916000868387613a2a565b5050505050565b828054613ea4906147d4565b90600052602060002090601f016020900481019282613ec65760008555613f0d565b82601f10613edf57805160ff1916838001178555613f0d565b82800160010185558215613f0d579182015b82811115613f0c578251825591602001919060010190613ef1565b5b509050613f1a9190613f61565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613f7a576000816000905550600101613f62565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613fc781613f92565b8114613fd257600080fd5b50565b600081359050613fe481613fbe565b92915050565b60006020828403121561400057613fff613f88565b5b600061400e84828501613fd5565b91505092915050565b60008115159050919050565b61402c81614017565b82525050565b60006020820190506140476000830184614023565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561408757808201518184015260208101905061406c565b83811115614096576000848401525b50505050565b6000601f19601f8301169050919050565b60006140b88261404d565b6140c28185614058565b93506140d2818560208601614069565b6140db8161409c565b840191505092915050565b6000602082019050818103600083015261410081846140ad565b905092915050565b6000819050919050565b61411b81614108565b811461412657600080fd5b50565b60008135905061413881614112565b92915050565b60006020828403121561415457614153613f88565b5b600061416284828501614129565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006141968261416b565b9050919050565b6141a68161418b565b82525050565b60006020820190506141c1600083018461419d565b92915050565b6141d08161418b565b81146141db57600080fd5b50565b6000813590506141ed816141c7565b92915050565b6000806040838503121561420a57614209613f88565b5b6000614218858286016141de565b925050602061422985828601614129565b9150509250929050565b60006020828403121561424957614248613f88565b5b6000614257848285016141de565b91505092915050565b61426981614108565b82525050565b60006020820190506142846000830184614260565b92915050565b6000806000606084860312156142a3576142a2613f88565b5b60006142b1868287016141de565b93505060206142c2868287016141de565b92505060406142d386828701614129565b9150509250925092565b6000819050919050565b6142f0816142dd565b81146142fb57600080fd5b50565b60008135905061430d816142e7565b92915050565b60006020828403121561432957614328613f88565b5b6000614337848285016142fe565b91505092915050565b61434981614017565b811461435457600080fd5b50565b60008135905061436681614340565b92915050565b60006020828403121561438257614381613f88565b5b600061439084828501614357565b91505092915050565b6143a2816142dd565b82525050565b60006020820190506143bd6000830184614399565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126143e8576143e76143c3565b5b8235905067ffffffffffffffff811115614405576144046143c8565b5b602083019150836020820283011115614421576144206143cd565b5b9250929050565b60008060006040848603121561444157614440613f88565b5b600061444f86828701614129565b935050602084013567ffffffffffffffff8111156144705761446f613f8d565b5b61447c868287016143d2565b92509250509250925092565b6000806040838503121561449f5761449e613f88565b5b60006144ad858286016141de565b92505060206144be85828601614357565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6145058261409c565b810181811067ffffffffffffffff82111715614524576145236144cd565b5b80604052505050565b6000614537613f7e565b905061454382826144fc565b919050565b600067ffffffffffffffff821115614563576145626144cd565b5b61456c8261409c565b9050602081019050919050565b82818337600083830152505050565b600061459b61459684614548565b61452d565b9050828152602081018484840111156145b7576145b66144c8565b5b6145c2848285614579565b509392505050565b600082601f8301126145df576145de6143c3565b5b81356145ef848260208601614588565b91505092915050565b60006020828403121561460e5761460d613f88565b5b600082013567ffffffffffffffff81111561462c5761462b613f8d565b5b614638848285016145ca565b91505092915050565b600067ffffffffffffffff82111561465c5761465b6144cd565b5b6146658261409c565b9050602081019050919050565b600061468561468084614641565b61452d565b9050828152602081018484840111156146a1576146a06144c8565b5b6146ac848285614579565b509392505050565b600082601f8301126146c9576146c86143c3565b5b81356146d9848260208601614672565b91505092915050565b600080600080608085870312156146fc576146fb613f88565b5b600061470a878288016141de565b945050602061471b878288016141de565b935050604061472c87828801614129565b925050606085013567ffffffffffffffff81111561474d5761474c613f8d565b5b614759878288016146b4565b91505092959194509250565b6000806040838503121561477c5761477b613f88565b5b600061478a858286016141de565b925050602061479b858286016141de565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806147ec57607f821691505b6020821081036147ff576147fe6147a5565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061483b602083614058565b915061484682614805565b602082019050919050565b6000602082019050818103600083015261486a8161482e565b9050919050565b7f636f6e7472616374735f6e6f745f616c6c6f7765645f746f5f6d696e74000000600082015250565b60006148a7601d83614058565b91506148b282614871565b602082019050919050565b600060208201905081810360008301526148d68161489a565b9050919050565b7f6e6f5f6d696e745f6f6e5f7468655f73616d655f626c6f636b00000000000000600082015250565b6000614913601983614058565b915061491e826148dd565b602082019050919050565b6000602082019050818103600083015261494281614906565b9050919050565b7f667265655f77686974656c6973745f73616c655f6e6f745f616374697661746560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b60006149a5602183614058565b91506149b082614949565b604082019050919050565b600060208201905081810360008301526149d481614998565b9050919050565b7f77686974656c6973745f73616c655f6e6f745f61637469766174656400000000600082015250565b6000614a11601c83614058565b9150614a1c826149db565b602082019050919050565b60006020820190508181036000830152614a4081614a04565b9050919050565b7f7075626c69635f73616c655f6e6f745f61637469766174656400000000000000600082015250565b6000614a7d601983614058565b9150614a8882614a47565b602082019050919050565b60006020820190508181036000830152614aac81614a70565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614ae9601f83614058565b9150614af482614ab3565b602082019050919050565b60006020820190508181036000830152614b1881614adc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b5982614108565b9150614b6483614108565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b9d57614b9c614b1f565b5b828202905092915050565b7f696e73756666696369656e745f66756e64730000000000000000000000000000600082015250565b6000614bde601283614058565b9150614be982614ba8565b602082019050919050565b60006020820190508181036000830152614c0d81614bd1565b9050919050565b7f7175616e746974795f69735f7265717569726564000000000000000000000000600082015250565b6000614c4a601483614058565b9150614c5582614c14565b602082019050919050565b60006020820190508181036000830152614c7981614c3d565b9050919050565b6000614c8b82614108565b9150614c9683614108565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614ccb57614cca614b1f565b5b828201905092915050565b7f6d61785f737570706c795f657863656564656564000000000000000000000000600082015250565b6000614d0c601483614058565b9150614d1782614cd6565b602082019050919050565b60006020820190508181036000830152614d3b81614cff565b9050919050565b7f6d61785f7065725f77616c6c65745f6578636565646564000000000000000000600082015250565b6000614d78601783614058565b9150614d8382614d42565b602082019050919050565b60006020820190508181036000830152614da781614d6b565b9050919050565b60008160601b9050919050565b6000614dc682614dae565b9050919050565b6000614dd882614dbb565b9050919050565b614df0614deb8261418b565b614dcd565b82525050565b6000614e028284614ddf565b60148201915081905092915050565b7f696e76616c69645f667265655f77686974656c6973745f6d65726b6c655f707260008201527f6f6f660000000000000000000000000000000000000000000000000000000000602082015250565b6000614e6d602383614058565b9150614e7882614e11565b604082019050919050565b60006020820190508181036000830152614e9c81614e60565b9050919050565b7f667265655f6d61785f7065725f77616c6c65745f657863656564656400000000600082015250565b6000614ed9601c83614058565b9150614ee482614ea3565b602082019050919050565b60006020820190508181036000830152614f0881614ecc565b9050919050565b7f6e6f6e5f6578697374616e745f746f6b656e0000000000000000000000000000600082015250565b6000614f45601283614058565b9150614f5082614f0f565b602082019050919050565b60006020820190508181036000830152614f7481614f38565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154614fa8816147d4565b614fb28186614f7b565b94506001821660008114614fcd5760018114614fde57615011565b60ff19831686528186019350615011565b614fe785614f86565b60005b8381101561500957815481890152600182019150602081019050614fea565b838801955050505b50505092915050565b60006150258261404d565b61502f8185614f7b565b935061503f818560208601614069565b80840191505092915050565b60006150578285614f9b565b9150615063828461501a565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150cb602683614058565b91506150d68261506f565b604082019050919050565b600060208201905081810360008301526150fa816150be565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061512882615101565b615132818561510c565b9350615142818560208601614069565b61514b8161409c565b840191505092915050565b600060808201905061516b600083018761419d565b615178602083018661419d565b6151856040830185614260565b8181036060830152615197818461511d565b905095945050505050565b6000815190506151b181613fbe565b92915050565b6000602082840312156151cd576151cc613f88565b5b60006151db848285016151a2565b91505092915050565b60006151ef82614108565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361522157615220614b1f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061526682614108565b915061527183614108565b9250826152815761528061522c565b5b828204905092915050565b600061529782614108565b91506152a283614108565b9250828210156152b5576152b4614b1f565b5b828203905092915050565b60006152cb82614108565b91506152d683614108565b9250826152e6576152e561522c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212206ea117106fbb0b527d9260c9efe1de5734f995e7e8d2ebb13ee914eca34988ba64736f6c634300080d0033
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.