ERC-721
Overview
Max Total Supply
899 CHEEBZ
Holders
204
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 CHEEBZLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Cheebiez
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // @author st4rgard3n pragma solidity ^0.8.4; import "./Parents/ERC721A.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; contract Cheebiez is ERC721A, Pausable, Ownable { // @todo check all constants and update; change name and symbol uint256 public price; /************************* MAPPING STRUCTS EVENTS *************************/ // mapping from Cheeblist address to claimed status mapping(address => bool) public cheebListClaim; // struct for efficiently packing time stamp data for public sale and cheeblist struct SaleConfig { uint16 maxMint; uint16 maxSupply; uint64 cheeblistStart; uint64 cheeblistEnd; } /************************* STATE VARIABLES *************************/ // stores timestamps SaleConfig private saleConfig; // merkle tree root for cheebList claim bytes32 public _root; // URI slug for serving token metadata string public baseURI; // Bool for pausing public sale bool private _salePaused; // bool for locking the sale configuration bool private _contractLocked; constructor() ERC721A("Cheebiez", "CHEEBZ") { // Pre-reveal URI setBaseURI("https://cheebiez.s3.us-west-1.amazonaws.com/preview-data/"); // pause contract during deployment pause(); price = 0.035 ether; // Set the timestamps for cheeblist and public sales //setSaleConfig(1654877700, 10000, 20); // live data setSaleConfig(1654877700, 10000, 20); } /************************* MODIFIERS *************************/ /** * @dev Modifier for preventing calls from contracts * Safety feature for preventing malicious contract call backs */ modifier callerIsUser() { require(tx.origin == _msgSender(), "The caller is another contract!"); _; } /************************* VIEW AND PURE FUNCTIONS *************************/ /** * @dev Helper function for validating a merkle proof and leaf * @param merkleProof is an array of proofs needed to authenticate a transaction * @param root is used along with proofs and our leaf to authenticate our transaction * @param leaf is generated from parameter data which can be enforced */ function verifyClaim( bytes32[] memory merkleProof, bytes32 root, bytes32 leaf ) public pure returns (bool valid) { return MerkleProof.verify(merkleProof, root, leaf); } /** * @dev Function for getting the price. * Allows front-ends to consume price data */ function getPrice() public view returns (uint) { return price; } /** * @dev Function for getting the sale pause status * Allows front-ends to consume sale pause status */ function getSalePauseStatus() public view returns (bool) { return _salePaused; } /** * @dev Returns true if the Cheeblist is live * returns false after the public sale starts */ function isCheebListOn() public view returns (bool) { if (block.timestamp >= saleConfig.cheeblistStart && block.timestamp <= saleConfig.cheeblistEnd) { return true; } else { return false; } } /** * @dev Returns true if the public sale is live * returns false before the public sale starts */ function isPublicSaleOn() public view returns (bool) { if (block.timestamp >= saleConfig.cheeblistEnd) { return !_salePaused; } else { return false; } } /** * @dev Returns true if the tokens are sold out * returns false before the tokens are sold out */ function isSoldOut() external view returns (bool) { if (totalSupply() >= saleConfig.maxSupply) { return true; } else { return false; } } function setPrice(uint256 amount) external onlyOwner { price = amount; } function getSalesConfing() external view returns(SaleConfig memory _saleConfig) { return saleConfig; } /************************* USER FUNCTIONS *************************/ /** * @dev Public function for purchasing {amount} amount of tokens. Checks for current price. * Calls _safeMint() for minting process * @param to recipient of the NFT minted * @param amount number of NFTs minted */ function getCheeb(address to, uint256 amount) public payable whenNotPaused callerIsUser { // require users aren't minting more than 20 Cheebz require(amount <= saleConfig.maxMint, "You can mint a maximum of 20 Cheebiez at a time!"); // require that user's sent along the correct amount of ETH require(msg.value == price * amount, "Ether amount sent is not correct!"); // require public sale has started require(isPublicSaleOn() == true, "Public sale hasn't started or is paused!"); // require that users aren't minting more than max supply require(totalSupply() + amount <= saleConfig.maxSupply, "Too many Cheebiez!"); // mint user's tokens _safeMint(to, amount); } /** * @dev Public function for redeeming Cheeblist tokens * Calls _safeMint() for minting process * @param amount number of NFTs minted * @param merkleProof proof set for claims */ function cheebListMint(uint amount, bytes32[] calldata merkleProof) public payable whenNotPaused callerIsUser { address user = _msgSender(); // require user is minting 5 or less Cheebs require(amount < 6, "Can't mint more than 5 Cheebs from the Cheeblist!"); // require that user hasn't already claimed these items require(!cheebListClaim[user], "Already claimed your Cheeblist!"); // require that user's sent along the correct amount of ETH require(msg.value == price * amount, "Ether amount sent is not correct!"); // require that Cheeblist mint has started require(saleConfig.cheeblistStart <= block.timestamp, "The CheebList hasn't started!"); // require that Cheeblist mint has not ended require(saleConfig.cheeblistEnd >= block.timestamp, "The Cheeblist is closed!"); // require that users aren't minting more than max supply require(totalSupply() + amount <= saleConfig.maxSupply, "Too many Cheebiez!"); // build our leaf from the recipient address and the hash of unique item ids bytes32 leaf = keccak256(abi.encodePacked(user)); // authenticate the claim against our merkle tree require(verifyClaim(merkleProof, _root, leaf), "Invalid claim!"); // set user's claim status cheebListClaim[user] = true; // claim the Entrance tokens _safeMint(user, amount); } /************************* ACCESS CONTROL FUNCTIONS *************************/ function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } /** * @dev Function for only owner to freeze all sale configuration parameters */ function lock() public onlyOwner { _contractLocked = true; } /** * @dev Function for only owner to pause sale after it's time stamp is active * @param status boolean determining whether sale is paused after public sale has started */ function setSalePauseStatus(bool status) public onlyOwner { _salePaused = status; } /** * @dev Function for only owner to set the whitelist starting time. * @param startTime the unix timestamp which will set all period timers. */ function setSaleConfig(uint64 startTime, uint16 newMaxSupply, uint16 newMaxMint) public onlyOwner { // require that the sale configuration is not locked require(!_contractLocked, "Supply, price and sale are locked!"); saleConfig.cheeblistStart = startTime; saleConfig.cheeblistEnd = startTime + 6 hours; saleConfig.maxSupply = newMaxSupply; saleConfig.maxMint = newMaxMint; } /** * @dev Function for only owner to mint team cheebiez. * @param to the address where cheebiez are minted * @param amount the number of cheebiez to mint */ function teamCheebz(address to, uint amount) public onlyOwner { // require that users aren't minting more than max supply require(totalSupply() + amount <= saleConfig.maxSupply, "Too many Cheebiez!"); // require that the sale configuration is not locked require(!_contractLocked, "Supply, price and sale are locked!"); _safeMint(to, amount); } /** * @dev Function for setting the BaseURI. * Intended for onlyOwner to call in case the URI details need to be relocated * @param newBaseURI the new base URI slug */ function setBaseURI(string memory newBaseURI) public onlyOwner { baseURI = newBaseURI; } /** * @dev Function for setting the merkle root for the cheeblist * Intended for onlyOwner to set the merkle tree's root for whitelisting * @param newRoot the merkle tree root node for authenticating claims */ function setRoot(bytes32 newRoot) external onlyOwner { _root = newRoot; } /** * @dev Access control function allows owner to withdraw ETH */ function withdrawAll() external onlyOwner { // transfer contract's balance to the multi-sig (bool success, ) = _msgSender().call{value: address(this).balance}(""); // revert if transfer fails require(success, "Transfer failed."); } /************************* PRIVATE OR INTERNAL *************************/ /** * @dev Function for getting the BaseURI. * Private function allows discovery of token URI data */ function _baseURI() internal view override returns (string memory) { return baseURI; } /************************* OVERRIDES *************************/ function _beforeTokenTransfers(address from, address to, uint256 startTokenId, uint256 quantity) internal whenNotPaused override { super._beforeTokenTransfers(from, to, startTokenId, quantity); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual override returns (uint256) { return 1; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.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'; /** * @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, IERC721A { using Address for address; using Strings for uint256; // 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 override 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) if (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) if(!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()) if(!_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; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ 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 { 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 (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 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) 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; 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 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 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (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 // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A is IERC721, IERC721Metadata { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); // 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; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); }
// 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.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (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 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"_root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"cheebListClaim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"cheebListMint","outputs":[],"stateMutability":"payable","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"getCheeb","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSalePauseStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSalesConfing","outputs":[{"components":[{"internalType":"uint16","name":"maxMint","type":"uint16"},{"internalType":"uint16","name":"maxSupply","type":"uint16"},{"internalType":"uint64","name":"cheeblistStart","type":"uint64"},{"internalType":"uint64","name":"cheeblistEnd","type":"uint64"}],"internalType":"struct Cheebiez.SaleConfig","name":"_saleConfig","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isCheebListOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSoldOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"startTime","type":"uint64"},{"internalType":"uint16","name":"newMaxSupply","type":"uint16"},{"internalType":"uint16","name":"newMaxMint","type":"uint16"}],"name":"setSaleConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setSalePauseStatus","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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"teamCheebz","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"bytes32","name":"root","type":"bytes32"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"verifyClaim","outputs":[{"internalType":"bool","name":"valid","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600881526020017f436865656269657a0000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f43484545425a000000000000000000000000000000000000000000000000000081525081600290805190602001906200009692919062000615565b508060039080519060200190620000af92919062000615565b50620000c06200016b60201b60201c565b60008190555050506000600860006101000a81548160ff02191690831515021790555062000103620000f76200017460201b60201c565b6200017c60201b60201c565b6200012d6040518060600160405280603981526020016200588c603991396200024260201b60201c565b6200013d620002ed60201b60201c565b667c585087238000600981905550620001656362a36e0461271060146200038e60201b60201c565b620009a1565b60006001905090565b600033905090565b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002526200017460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002786200051c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002d1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c8906200078a565b60405180910390fd5b80600d9080519060200190620002e992919062000615565b5050565b620002fd6200017460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003236200051c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200037c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000373906200078a565b60405180910390fd5b6200038c6200054660201b60201c565b565b6200039e6200017460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003c46200051c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200041d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000414906200078a565b60405180910390fd5b600e60019054906101000a900460ff161562000470576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200046790620007ac565b60405180910390fd5b82600b60000160046101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555061546083620004ac9190620007df565b600b600001600c6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600b60000160026101000a81548161ffff021916908361ffff16021790555080600b60000160006101000a81548161ffff021916908361ffff160217905550505050565b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000556620005fe60201b60201c565b1562000599576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005909062000768565b60405180910390fd5b6001600860006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620005e56200017460201b60201c565b604051620005f491906200074b565b60405180910390a1565b6000600860009054906101000a900460ff16905090565b82805462000623906200086c565b90600052602060002090601f01602090048101928262000647576000855562000693565b82601f106200066257805160ff191683800117855562000693565b8280016001018555821562000693579182015b828111156200069257825182559160200191906001019062000675565b5b509050620006a29190620006a6565b5090565b5b80821115620006c1576000816000905550600101620006a7565b5090565b620006d08162000824565b82525050565b6000620006e5601083620007ce565b9150620006f28262000900565b602082019050919050565b60006200070c602083620007ce565b9150620007198262000929565b602082019050919050565b600062000733602283620007ce565b9150620007408262000952565b604082019050919050565b6000602082019050620007626000830184620006c5565b92915050565b600060208201905081810360008301526200078381620006d6565b9050919050565b60006020820190508181036000830152620007a581620006fd565b9050919050565b60006020820190508181036000830152620007c78162000724565b9050919050565b600082825260208201905092915050565b6000620007ec8262000858565b9150620007f98362000858565b92508267ffffffffffffffff03821115620008195762000818620008a2565b5b828201905092915050565b6000620008318262000838565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600067ffffffffffffffff82169050919050565b600060028204905060018216806200088557607f821691505b602082108114156200089c576200089b620008d1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f537570706c792c20707269636520616e642073616c6520617265206c6f636b6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b614edb80620009b16000396000f3fe6080604052600436106102465760003560e01c80637df4d1fc11610139578063a22cb465116100b6578063d8db12d01161007a578063d8db12d014610839578063dab5f34014610862578063e985e9c51461088b578063ea4d48c2146108c8578063f2fde38b146108e4578063f83d08ba1461090d57610246565b8063a22cb46514610742578063aafdc4e01461076b578063b88d4fde146107a8578063c61b5862146107d1578063c87b56dd146107fc57610246565b806391b7f5ed116100fd57806391b7f5ed1461065b57806395d89b4114610684578063967aac54146106af57806398d5fdca146106ec578063a035b1fe1461071757610246565b80637df4d1fc146105ac578063802ecb51146105d75780638456cb5914610602578063853828b6146106195780638da5cb5b1461063057610246565b80633f5e4741116101c75780636352211e1161018b5780636352211e146104d4578063665bca20146105115780636c0360eb1461052d57806370a0823114610558578063715018a61461059557610246565b80633f5e47411461040157806342842e0e1461042c57806355f804b3146104555780635c975abb1461047e5780635ee432df146104a957610246565b806323b872dd1161020e57806323b872dd146103445780632da5ea171461036d57806338f736b9146103985780633d711394146103c15780633f4ba83a146103ea57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806318160ddd14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613d14565b610924565b60405161027f91906142ee565b60405180910390f35b34801561029457600080fd5b5061029d610a06565b6040516102aa9190614324565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613da7565b610a98565b6040516102e79190614287565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613c1f565b610b14565b005b34801561032557600080fd5b5061032e610c19565b60405161033b9190614561565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613b19565b610c30565b005b34801561037957600080fd5b50610382610c40565b60405161038f91906142ee565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba9190613cc2565b610c78565b005b3480156103cd57600080fd5b506103e860048036038101906103e39190613c1f565b610d11565b005b3480156103f657600080fd5b506103ff610e57565b005b34801561040d57600080fd5b50610416610edd565b60405161042391906142ee565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e9190613b19565b610f29565b005b34801561046157600080fd5b5061047c60048036038101906104779190613d66565b610f49565b005b34801561048a57600080fd5b50610493610fdf565b6040516104a091906142ee565b60405180910390f35b3480156104b557600080fd5b506104be610ff6565b6040516104cb9190614546565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f69190613da7565b6110b4565b6040516105089190614287565b60405180910390f35b61052b60048036038101906105269190613c1f565b6110ca565b005b34801561053957600080fd5b506105426112f8565b60405161054f9190614324565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a9190613ab4565b611386565b60405161058c9190614561565b60405180910390f35b3480156105a157600080fd5b506105aa611456565b005b3480156105b857600080fd5b506105c16114de565b6040516105ce91906142ee565b60405180910390f35b3480156105e357600080fd5b506105ec6114f5565b6040516105f991906142ee565b60405180910390f35b34801561060e57600080fd5b50610617611563565b005b34801561062557600080fd5b5061062e6115e9565b005b34801561063c57600080fd5b5061064561171b565b6040516106529190614287565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d9190613da7565b611745565b005b34801561069057600080fd5b506106996117cb565b6040516106a69190614324565b60405180910390f35b3480156106bb57600080fd5b506106d660048036038101906106d19190613ab4565b61185d565b6040516106e391906142ee565b60405180910390f35b3480156106f857600080fd5b5061070161187d565b60405161070e9190614561565b60405180910390f35b34801561072357600080fd5b5061072c611887565b6040516107399190614561565b60405180910390f35b34801561074e57600080fd5b5061076960048036038101906107649190613be3565b61188d565b005b34801561077757600080fd5b50610792600480360381019061078d9190613c5b565b611a05565b60405161079f91906142ee565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca9190613b68565b611a1b565b005b3480156107dd57600080fd5b506107e6611a93565b6040516107f39190614309565b60405180910390f35b34801561080857600080fd5b50610823600480360381019061081e9190613da7565b611a99565b6040516108309190614324565b60405180910390f35b34801561084557600080fd5b50610860600480360381019061085b9190613e28565b611b38565b005b34801561086e57600080fd5b5061088960048036038101906108849190613ceb565b611cae565b005b34801561089757600080fd5b506108b260048036038101906108ad9190613add565b611d34565b6040516108bf91906142ee565b60405180910390f35b6108e260048036038101906108dd9190613dd0565b611dc8565b005b3480156108f057600080fd5b5061090b60048036038101906109069190613ab4565b612209565b005b34801561091957600080fd5b50610922612301565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ef57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109ff57506109fe8261239a565b5b9050919050565b606060028054610a15906148b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610a41906148b2565b8015610a8e5780601f10610a6357610100808354040283529160200191610a8e565b820191906000526020600020905b815481529060010190602001808311610a7157829003601f168201915b5050505050905090565b6000610aa382612404565b610ad9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1f826110b4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b87576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba6612452565b73ffffffffffffffffffffffffffffffffffffffff1614610c0957610bd281610bcd612452565b611d34565b610c08576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610c1483838361245a565b505050565b6000610c2361250c565b6001546000540303905090565b610c3b838383612515565b505050565b6000600b60000160029054906101000a900461ffff1661ffff16610c62610c19565b10610c705760019050610c75565b600090505b90565b610c80612452565b73ffffffffffffffffffffffffffffffffffffffff16610c9e61171b565b73ffffffffffffffffffffffffffffffffffffffff1614610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb90614466565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b610d19612452565b73ffffffffffffffffffffffffffffffffffffffff16610d3761171b565b73ffffffffffffffffffffffffffffffffffffffff1614610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8490614466565b60405180910390fd5b600b60000160029054906101000a900461ffff1661ffff1681610dae610c19565b610db8919061467d565b1115610df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df0906143e6565b60405180910390fd5b600e60019054906101000a900460ff1615610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4090614506565b60405180910390fd5b610e5382826129cb565b5050565b610e5f612452565b73ffffffffffffffffffffffffffffffffffffffff16610e7d61171b565b73ffffffffffffffffffffffffffffffffffffffff1614610ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eca90614466565b60405180910390fd5b610edb6129e9565b565b6000600b600001600c9054906101000a900467ffffffffffffffff1667ffffffffffffffff164210610f2157600e60009054906101000a900460ff16159050610f26565b600090505b90565b610f4483838360405180602001604052806000815250611a1b565b505050565b610f51612452565b73ffffffffffffffffffffffffffffffffffffffff16610f6f61171b565b73ffffffffffffffffffffffffffffffffffffffff1614610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc90614466565b60405180910390fd5b80600d9080519060200190610fdb929190613732565b5050565b6000600860009054906101000a900460ff16905090565b610ffe6137b8565b600b6040518060800160405290816000820160009054906101000a900461ffff1661ffff1661ffff1681526020016000820160029054906101000a900461ffff1661ffff1661ffff1681526020016000820160049054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201600c9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681525050905090565b60006110bf82612a8b565b600001519050919050565b6110d2610fdf565b15611112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110990614406565b60405180910390fd5b61111a612452565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117e90614486565b60405180910390fd5b600b60000160009054906101000a900461ffff1661ffff168111156111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d890614366565b60405180910390fd5b806009546111ef9190614742565b3414611230576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611227906144e6565b60405180910390fd5b6001151561123c610edd565b15151461127e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127590614446565b60405180910390fd5b600b60000160029054906101000a900461ffff1661ffff168161129f610c19565b6112a9919061467d565b11156112ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e1906143e6565b60405180910390fd5b6112f482826129cb565b5050565b600d8054611305906148b2565b80601f0160208091040260200160405190810160405280929190818152602001828054611331906148b2565b801561137e5780601f106113535761010080835404028352916020019161137e565b820191906000526020600020905b81548152906001019060200180831161136157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ee576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61145e612452565b73ffffffffffffffffffffffffffffffffffffffff1661147c61171b565b73ffffffffffffffffffffffffffffffffffffffff16146114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c990614466565b60405180910390fd5b6114dc6000612d16565b565b6000600e60009054906101000a900460ff16905090565b6000600b60000160049054906101000a900467ffffffffffffffff1667ffffffffffffffff16421015801561154d5750600b600001600c9054906101000a900467ffffffffffffffff1667ffffffffffffffff164211155b1561155b5760019050611560565b600090505b90565b61156b612452565b73ffffffffffffffffffffffffffffffffffffffff1661158961171b565b73ffffffffffffffffffffffffffffffffffffffff16146115df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d690614466565b60405180910390fd5b6115e7612ddc565b565b6115f1612452565b73ffffffffffffffffffffffffffffffffffffffff1661160f61171b565b73ffffffffffffffffffffffffffffffffffffffff1614611665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165c90614466565b60405180910390fd5b600061166f612452565b73ffffffffffffffffffffffffffffffffffffffff164760405161169290614272565b60006040518083038185875af1925050503d80600081146116cf576040519150601f19603f3d011682016040523d82523d6000602084013e6116d4565b606091505b5050905080611718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170f906144a6565b60405180910390fd5b50565b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61174d612452565b73ffffffffffffffffffffffffffffffffffffffff1661176b61171b565b73ffffffffffffffffffffffffffffffffffffffff16146117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b890614466565b60405180910390fd5b8060098190555050565b6060600380546117da906148b2565b80601f0160208091040260200160405190810160405280929190818152602001828054611806906148b2565b80156118535780601f1061182857610100808354040283529160200191611853565b820191906000526020600020905b81548152906001019060200180831161183657829003601f168201915b5050505050905090565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600954905090565b60095481565b611895612452565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118fa576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611907612452565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119b4612452565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119f991906142ee565b60405180910390a35050565b6000611a12848484612e7f565b90509392505050565b611a26848484612515565b611a458373ffffffffffffffffffffffffffffffffffffffff16612e96565b15611a8d57611a5684848484612eb9565b611a8c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b6060611aa482612404565b611ada576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611ae4613019565b9050600081511415611b055760405180602001604052806000815250611b30565b80611b0f846130ab565b604051602001611b2092919061424e565b6040516020818303038152906040525b915050919050565b611b40612452565b73ffffffffffffffffffffffffffffffffffffffff16611b5e61171b565b73ffffffffffffffffffffffffffffffffffffffff1614611bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bab90614466565b60405180910390fd5b600e60019054906101000a900460ff1615611c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfb90614506565b60405180910390fd5b82600b60000160046101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555061546083611c3e91906146d3565b600b600001600c6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600b60000160026101000a81548161ffff021916908361ffff16021790555080600b60000160006101000a81548161ffff021916908361ffff160217905550505050565b611cb6612452565b73ffffffffffffffffffffffffffffffffffffffff16611cd461171b565b73ffffffffffffffffffffffffffffffffffffffff1614611d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2190614466565b60405180910390fd5b80600c8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dd0610fdf565b15611e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0790614406565b60405180910390fd5b611e18612452565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7c90614486565b60405180910390fd5b6000611e8f612452565b905060068410611ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecb90614526565b60405180910390fd5b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5890614386565b60405180910390fd5b83600954611f6f9190614742565b3414611fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa7906144e6565b60405180910390fd5b42600b60000160049054906101000a900467ffffffffffffffff1667ffffffffffffffff161115612016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200d906144c6565b60405180910390fd5b42600b600001600c9054906101000a900467ffffffffffffffff1667ffffffffffffffff16101561207c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207390614426565b60405180910390fd5b600b60000160029054906101000a900461ffff1661ffff168461209d610c19565b6120a7919061467d565b11156120e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120df906143e6565b60405180910390fd5b6000816040516020016120fb9190614233565b604051602081830303815290604052805190602001209050612161848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c5483611a05565b6121a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612197906143c6565b60405180910390fd5b6001600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061220282866129cb565b5050505050565b612211612452565b73ffffffffffffffffffffffffffffffffffffffff1661222f61171b565b73ffffffffffffffffffffffffffffffffffffffff1614612285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227c90614466565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ec906143a6565b60405180910390fd5b6122fe81612d16565b50565b612309612452565b73ffffffffffffffffffffffffffffffffffffffff1661232761171b565b73ffffffffffffffffffffffffffffffffffffffff161461237d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237490614466565b60405180910390fd5b6001600e60016101000a81548160ff021916908315150217905550565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161240f61250c565b1115801561241e575060005482105b801561244b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061252082612a8b565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461258b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166125ac612452565b73ffffffffffffffffffffffffffffffffffffffff1614806125db57506125da856125d5612452565b611d34565b5b8061262057506125e9612452565b73ffffffffffffffffffffffffffffffffffffffff1661260884610a98565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612659576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126c0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126cd8585856001613258565b6126d96000848761245a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561295957600054821461295857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129c485858560016132b2565b5050505050565b6129e58282604051806020016040528060008152506132b8565b5050565b6129f1610fdf565b612a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2790614346565b60405180910390fd5b6000600860006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612a74612452565b604051612a819190614287565b60405180910390a1565b612a936137fc565b600082905080612aa161250c565b11612cdf57600054811015612cde576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612cdc57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612bc0578092505050612d11565b5b600115612cdb57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612cd6578092505050612d11565b612bc1565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612de4610fdf565b15612e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1b90614406565b60405180910390fd5b6001600860006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612e68612452565b604051612e759190614287565b60405180910390a1565b600082612e8c858461367a565b1490509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612edf612452565b8786866040518563ffffffff1660e01b8152600401612f0194939291906142a2565b602060405180830381600087803b158015612f1b57600080fd5b505af1925050508015612f4c57506040513d601f19601f82011682018060405250810190612f499190613d3d565b60015b612fc6573d8060008114612f7c576040519150601f19603f3d011682016040523d82523d6000602084013e612f81565b606091505b50600081511415612fbe576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054613028906148b2565b80601f0160208091040260200160405190810160405280929190818152602001828054613054906148b2565b80156130a15780601f10613076576101008083540402835291602001916130a1565b820191906000526020600020905b81548152906001019060200180831161308457829003601f168201915b5050505050905090565b606060008214156130f3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613253565b600082905060005b6000821461312557808061310e90614915565b915050600a8261311e9190614711565b91506130fb565b60008167ffffffffffffffff811115613167577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131995781602001600182028036833780820191505090505b5090505b6000851461324c576001826131b2919061479c565b9150600a856131c19190614982565b60306131cd919061467d565b60f81b818381518110613209577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132459190614711565b945061319d565b8093505050505b919050565b613260610fdf565b156132a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329790614406565b60405180910390fd5b6132ac84848484613715565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613325576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415613360576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61336d6000858386613258565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000848201905061352e8673ffffffffffffffffffffffffffffffffffffffff16612e96565b156135f3575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135a36000878480600101955087612eb9565b6135d9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106135345782600054146135ee57600080fd5b61365e565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106135f4575b81600081905550505061367460008583866132b2565b50505050565b60008082905060005b845181101561370a5760008582815181106136c7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116136e9576136e2838261371b565b92506136f6565b6136f3818461371b565b92505b50808061370290614915565b915050613683565b508091505092915050565b50505050565b600082600052816020526040600020905092915050565b82805461373e906148b2565b90600052602060002090601f01602090048101928261376057600085556137a7565b82601f1061377957805160ff19168380011785556137a7565b828001600101855582156137a7579182015b828111156137a657825182559160200191906001019061378b565b5b5090506137b4919061383f565b5090565b6040518060800160405280600061ffff168152602001600061ffff168152602001600067ffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613858576000816000905550600101613840565b5090565b600061386f61386a846145a1565b61457c565b9050808382526020820190508285602086028201111561388e57600080fd5b60005b858110156138be57816138a488826139e2565b845260208401935060208301925050600181019050613891565b5050509392505050565b60006138db6138d6846145cd565b61457c565b9050828152602081018484840111156138f357600080fd5b6138fe848285614870565b509392505050565b6000613919613914846145fe565b61457c565b90508281526020810184848401111561393157600080fd5b61393c848285614870565b509392505050565b60008135905061395381614e04565b92915050565b60008083601f84011261396b57600080fd5b8235905067ffffffffffffffff81111561398457600080fd5b60208301915083602082028301111561399c57600080fd5b9250929050565b600082601f8301126139b457600080fd5b81356139c484826020860161385c565b91505092915050565b6000813590506139dc81614e1b565b92915050565b6000813590506139f181614e32565b92915050565b600081359050613a0681614e49565b92915050565b600081519050613a1b81614e49565b92915050565b600082601f830112613a3257600080fd5b8135613a428482602086016138c8565b91505092915050565b600082601f830112613a5c57600080fd5b8135613a6c848260208601613906565b91505092915050565b600081359050613a8481614e60565b92915050565b600081359050613a9981614e77565b92915050565b600081359050613aae81614e8e565b92915050565b600060208284031215613ac657600080fd5b6000613ad484828501613944565b91505092915050565b60008060408385031215613af057600080fd5b6000613afe85828601613944565b9250506020613b0f85828601613944565b9150509250929050565b600080600060608486031215613b2e57600080fd5b6000613b3c86828701613944565b9350506020613b4d86828701613944565b9250506040613b5e86828701613a8a565b9150509250925092565b60008060008060808587031215613b7e57600080fd5b6000613b8c87828801613944565b9450506020613b9d87828801613944565b9350506040613bae87828801613a8a565b925050606085013567ffffffffffffffff811115613bcb57600080fd5b613bd787828801613a21565b91505092959194509250565b60008060408385031215613bf657600080fd5b6000613c0485828601613944565b9250506020613c15858286016139cd565b9150509250929050565b60008060408385031215613c3257600080fd5b6000613c4085828601613944565b9250506020613c5185828601613a8a565b9150509250929050565b600080600060608486031215613c7057600080fd5b600084013567ffffffffffffffff811115613c8a57600080fd5b613c96868287016139a3565b9350506020613ca7868287016139e2565b9250506040613cb8868287016139e2565b9150509250925092565b600060208284031215613cd457600080fd5b6000613ce2848285016139cd565b91505092915050565b600060208284031215613cfd57600080fd5b6000613d0b848285016139e2565b91505092915050565b600060208284031215613d2657600080fd5b6000613d34848285016139f7565b91505092915050565b600060208284031215613d4f57600080fd5b6000613d5d84828501613a0c565b91505092915050565b600060208284031215613d7857600080fd5b600082013567ffffffffffffffff811115613d9257600080fd5b613d9e84828501613a4b565b91505092915050565b600060208284031215613db957600080fd5b6000613dc784828501613a8a565b91505092915050565b600080600060408486031215613de557600080fd5b6000613df386828701613a8a565b935050602084013567ffffffffffffffff811115613e1057600080fd5b613e1c86828701613959565b92509250509250925092565b600080600060608486031215613e3d57600080fd5b6000613e4b86828701613a9f565b9350506020613e5c86828701613a75565b9250506040613e6d86828701613a75565b9150509250925092565b613e80816147d0565b82525050565b613e97613e92826147d0565b61495e565b82525050565b613ea6816147e2565b82525050565b613eb5816147ee565b82525050565b6000613ec68261462f565b613ed08185614645565b9350613ee081856020860161487f565b613ee981614a6f565b840191505092915050565b6000613eff8261463a565b613f098185614661565b9350613f1981856020860161487f565b613f2281614a6f565b840191505092915050565b6000613f388261463a565b613f428185614672565b9350613f5281856020860161487f565b80840191505092915050565b6000613f6b601483614661565b9150613f7682614a8d565b602082019050919050565b6000613f8e603083614661565b9150613f9982614ab6565b604082019050919050565b6000613fb1601f83614661565b9150613fbc82614b05565b602082019050919050565b6000613fd4602683614661565b9150613fdf82614b2e565b604082019050919050565b6000613ff7600e83614661565b915061400282614b7d565b602082019050919050565b600061401a601283614661565b915061402582614ba6565b602082019050919050565b600061403d601083614661565b915061404882614bcf565b602082019050919050565b6000614060601883614661565b915061406b82614bf8565b602082019050919050565b6000614083602883614661565b915061408e82614c21565b604082019050919050565b60006140a6602083614661565b91506140b182614c70565b602082019050919050565b60006140c9601f83614661565b91506140d482614c99565b602082019050919050565b60006140ec600083614656565b91506140f782614cc2565b600082019050919050565b600061410f601083614661565b915061411a82614cc5565b602082019050919050565b6000614132601d83614661565b915061413d82614cee565b602082019050919050565b6000614155602183614661565b915061416082614d17565b604082019050919050565b6000614178602283614661565b915061418382614d66565b604082019050919050565b600061419b603183614661565b91506141a682614db5565b604082019050919050565b6080820160008201516141c76000850182614206565b5060208201516141da6020850182614206565b5060408201516141ed6040850182614224565b5060608201516142006060850182614224565b50505050565b61420f81614824565b82525050565b61421e81614852565b82525050565b61422d8161485c565b82525050565b600061423f8284613e86565b60148201915081905092915050565b600061425a8285613f2d565b91506142668284613f2d565b91508190509392505050565b600061427d826140df565b9150819050919050565b600060208201905061429c6000830184613e77565b92915050565b60006080820190506142b76000830187613e77565b6142c46020830186613e77565b6142d16040830185614215565b81810360608301526142e38184613ebb565b905095945050505050565b60006020820190506143036000830184613e9d565b92915050565b600060208201905061431e6000830184613eac565b92915050565b6000602082019050818103600083015261433e8184613ef4565b905092915050565b6000602082019050818103600083015261435f81613f5e565b9050919050565b6000602082019050818103600083015261437f81613f81565b9050919050565b6000602082019050818103600083015261439f81613fa4565b9050919050565b600060208201905081810360008301526143bf81613fc7565b9050919050565b600060208201905081810360008301526143df81613fea565b9050919050565b600060208201905081810360008301526143ff8161400d565b9050919050565b6000602082019050818103600083015261441f81614030565b9050919050565b6000602082019050818103600083015261443f81614053565b9050919050565b6000602082019050818103600083015261445f81614076565b9050919050565b6000602082019050818103600083015261447f81614099565b9050919050565b6000602082019050818103600083015261449f816140bc565b9050919050565b600060208201905081810360008301526144bf81614102565b9050919050565b600060208201905081810360008301526144df81614125565b9050919050565b600060208201905081810360008301526144ff81614148565b9050919050565b6000602082019050818103600083015261451f8161416b565b9050919050565b6000602082019050818103600083015261453f8161418e565b9050919050565b600060808201905061455b60008301846141b1565b92915050565b60006020820190506145766000830184614215565b92915050565b6000614586614597565b905061459282826148e4565b919050565b6000604051905090565b600067ffffffffffffffff8211156145bc576145bb614a40565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156145e8576145e7614a40565b5b6145f182614a6f565b9050602081019050919050565b600067ffffffffffffffff82111561461957614618614a40565b5b61462282614a6f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061468882614852565b915061469383614852565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146c8576146c76149b3565b5b828201905092915050565b60006146de8261485c565b91506146e98361485c565b92508267ffffffffffffffff03821115614706576147056149b3565b5b828201905092915050565b600061471c82614852565b915061472783614852565b925082614737576147366149e2565b5b828204905092915050565b600061474d82614852565b915061475883614852565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614791576147906149b3565b5b828202905092915050565b60006147a782614852565b91506147b283614852565b9250828210156147c5576147c46149b3565b5b828203905092915050565b60006147db82614832565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561489d578082015181840152602081019050614882565b838111156148ac576000848401525b50505050565b600060028204905060018216806148ca57607f821691505b602082108114156148de576148dd614a11565b5b50919050565b6148ed82614a6f565b810181811067ffffffffffffffff8211171561490c5761490b614a40565b5b80604052505050565b600061492082614852565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614953576149526149b3565b5b600182019050919050565b600061496982614970565b9050919050565b600061497b82614a80565b9050919050565b600061498d82614852565b915061499883614852565b9250826149a8576149a76149e2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f596f752063616e206d696e742061206d6178696d756d206f662032302043686560008201527f656269657a20617420612074696d652100000000000000000000000000000000602082015250565b7f416c726561647920636c61696d656420796f75722043686565626c6973742100600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420636c61696d21000000000000000000000000000000000000600082015250565b7f546f6f206d616e7920436865656269657a210000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f5468652043686565626c69737420697320636c6f736564210000000000000000600082015250565b7f5075626c69632073616c65206861736e27742073746172746564206f7220697360008201527f2070617573656421000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163742100600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f5468652043686565624c697374206861736e2774207374617274656421000000600082015250565b7f457468657220616d6f756e742073656e74206973206e6f7420636f727265637460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f537570706c792c20707269636520616e642073616c6520617265206c6f636b6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e2774206d696e74206d6f7265207468616e20352043686565627320667260008201527f6f6d207468652043686565626c69737421000000000000000000000000000000602082015250565b614e0d816147d0565b8114614e1857600080fd5b50565b614e24816147e2565b8114614e2f57600080fd5b50565b614e3b816147ee565b8114614e4657600080fd5b50565b614e52816147f8565b8114614e5d57600080fd5b50565b614e6981614824565b8114614e7457600080fd5b50565b614e8081614852565b8114614e8b57600080fd5b50565b614e978161485c565b8114614ea257600080fd5b5056fea2646970667358221220a6fc7ace9dd21b3a718aa2557f497f6ea3084bf0e00d8ab7867678b26e62578d64736f6c6343000804003368747470733a2f2f636865656269657a2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f707265766965772d646174612f
Deployed Bytecode
0x6080604052600436106102465760003560e01c80637df4d1fc11610139578063a22cb465116100b6578063d8db12d01161007a578063d8db12d014610839578063dab5f34014610862578063e985e9c51461088b578063ea4d48c2146108c8578063f2fde38b146108e4578063f83d08ba1461090d57610246565b8063a22cb46514610742578063aafdc4e01461076b578063b88d4fde146107a8578063c61b5862146107d1578063c87b56dd146107fc57610246565b806391b7f5ed116100fd57806391b7f5ed1461065b57806395d89b4114610684578063967aac54146106af57806398d5fdca146106ec578063a035b1fe1461071757610246565b80637df4d1fc146105ac578063802ecb51146105d75780638456cb5914610602578063853828b6146106195780638da5cb5b1461063057610246565b80633f5e4741116101c75780636352211e1161018b5780636352211e146104d4578063665bca20146105115780636c0360eb1461052d57806370a0823114610558578063715018a61461059557610246565b80633f5e47411461040157806342842e0e1461042c57806355f804b3146104555780635c975abb1461047e5780635ee432df146104a957610246565b806323b872dd1161020e57806323b872dd146103445780632da5ea171461036d57806338f736b9146103985780633d711394146103c15780633f4ba83a146103ea57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806318160ddd14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613d14565b610924565b60405161027f91906142ee565b60405180910390f35b34801561029457600080fd5b5061029d610a06565b6040516102aa9190614324565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613da7565b610a98565b6040516102e79190614287565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613c1f565b610b14565b005b34801561032557600080fd5b5061032e610c19565b60405161033b9190614561565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613b19565b610c30565b005b34801561037957600080fd5b50610382610c40565b60405161038f91906142ee565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba9190613cc2565b610c78565b005b3480156103cd57600080fd5b506103e860048036038101906103e39190613c1f565b610d11565b005b3480156103f657600080fd5b506103ff610e57565b005b34801561040d57600080fd5b50610416610edd565b60405161042391906142ee565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e9190613b19565b610f29565b005b34801561046157600080fd5b5061047c60048036038101906104779190613d66565b610f49565b005b34801561048a57600080fd5b50610493610fdf565b6040516104a091906142ee565b60405180910390f35b3480156104b557600080fd5b506104be610ff6565b6040516104cb9190614546565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f69190613da7565b6110b4565b6040516105089190614287565b60405180910390f35b61052b60048036038101906105269190613c1f565b6110ca565b005b34801561053957600080fd5b506105426112f8565b60405161054f9190614324565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a9190613ab4565b611386565b60405161058c9190614561565b60405180910390f35b3480156105a157600080fd5b506105aa611456565b005b3480156105b857600080fd5b506105c16114de565b6040516105ce91906142ee565b60405180910390f35b3480156105e357600080fd5b506105ec6114f5565b6040516105f991906142ee565b60405180910390f35b34801561060e57600080fd5b50610617611563565b005b34801561062557600080fd5b5061062e6115e9565b005b34801561063c57600080fd5b5061064561171b565b6040516106529190614287565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d9190613da7565b611745565b005b34801561069057600080fd5b506106996117cb565b6040516106a69190614324565b60405180910390f35b3480156106bb57600080fd5b506106d660048036038101906106d19190613ab4565b61185d565b6040516106e391906142ee565b60405180910390f35b3480156106f857600080fd5b5061070161187d565b60405161070e9190614561565b60405180910390f35b34801561072357600080fd5b5061072c611887565b6040516107399190614561565b60405180910390f35b34801561074e57600080fd5b5061076960048036038101906107649190613be3565b61188d565b005b34801561077757600080fd5b50610792600480360381019061078d9190613c5b565b611a05565b60405161079f91906142ee565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca9190613b68565b611a1b565b005b3480156107dd57600080fd5b506107e6611a93565b6040516107f39190614309565b60405180910390f35b34801561080857600080fd5b50610823600480360381019061081e9190613da7565b611a99565b6040516108309190614324565b60405180910390f35b34801561084557600080fd5b50610860600480360381019061085b9190613e28565b611b38565b005b34801561086e57600080fd5b5061088960048036038101906108849190613ceb565b611cae565b005b34801561089757600080fd5b506108b260048036038101906108ad9190613add565b611d34565b6040516108bf91906142ee565b60405180910390f35b6108e260048036038101906108dd9190613dd0565b611dc8565b005b3480156108f057600080fd5b5061090b60048036038101906109069190613ab4565b612209565b005b34801561091957600080fd5b50610922612301565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ef57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109ff57506109fe8261239a565b5b9050919050565b606060028054610a15906148b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610a41906148b2565b8015610a8e5780601f10610a6357610100808354040283529160200191610a8e565b820191906000526020600020905b815481529060010190602001808311610a7157829003601f168201915b5050505050905090565b6000610aa382612404565b610ad9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1f826110b4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b87576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba6612452565b73ffffffffffffffffffffffffffffffffffffffff1614610c0957610bd281610bcd612452565b611d34565b610c08576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610c1483838361245a565b505050565b6000610c2361250c565b6001546000540303905090565b610c3b838383612515565b505050565b6000600b60000160029054906101000a900461ffff1661ffff16610c62610c19565b10610c705760019050610c75565b600090505b90565b610c80612452565b73ffffffffffffffffffffffffffffffffffffffff16610c9e61171b565b73ffffffffffffffffffffffffffffffffffffffff1614610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb90614466565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b610d19612452565b73ffffffffffffffffffffffffffffffffffffffff16610d3761171b565b73ffffffffffffffffffffffffffffffffffffffff1614610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8490614466565b60405180910390fd5b600b60000160029054906101000a900461ffff1661ffff1681610dae610c19565b610db8919061467d565b1115610df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df0906143e6565b60405180910390fd5b600e60019054906101000a900460ff1615610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4090614506565b60405180910390fd5b610e5382826129cb565b5050565b610e5f612452565b73ffffffffffffffffffffffffffffffffffffffff16610e7d61171b565b73ffffffffffffffffffffffffffffffffffffffff1614610ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eca90614466565b60405180910390fd5b610edb6129e9565b565b6000600b600001600c9054906101000a900467ffffffffffffffff1667ffffffffffffffff164210610f2157600e60009054906101000a900460ff16159050610f26565b600090505b90565b610f4483838360405180602001604052806000815250611a1b565b505050565b610f51612452565b73ffffffffffffffffffffffffffffffffffffffff16610f6f61171b565b73ffffffffffffffffffffffffffffffffffffffff1614610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc90614466565b60405180910390fd5b80600d9080519060200190610fdb929190613732565b5050565b6000600860009054906101000a900460ff16905090565b610ffe6137b8565b600b6040518060800160405290816000820160009054906101000a900461ffff1661ffff1661ffff1681526020016000820160029054906101000a900461ffff1661ffff1661ffff1681526020016000820160049054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201600c9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681525050905090565b60006110bf82612a8b565b600001519050919050565b6110d2610fdf565b15611112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110990614406565b60405180910390fd5b61111a612452565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117e90614486565b60405180910390fd5b600b60000160009054906101000a900461ffff1661ffff168111156111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d890614366565b60405180910390fd5b806009546111ef9190614742565b3414611230576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611227906144e6565b60405180910390fd5b6001151561123c610edd565b15151461127e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127590614446565b60405180910390fd5b600b60000160029054906101000a900461ffff1661ffff168161129f610c19565b6112a9919061467d565b11156112ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e1906143e6565b60405180910390fd5b6112f482826129cb565b5050565b600d8054611305906148b2565b80601f0160208091040260200160405190810160405280929190818152602001828054611331906148b2565b801561137e5780601f106113535761010080835404028352916020019161137e565b820191906000526020600020905b81548152906001019060200180831161136157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ee576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61145e612452565b73ffffffffffffffffffffffffffffffffffffffff1661147c61171b565b73ffffffffffffffffffffffffffffffffffffffff16146114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c990614466565b60405180910390fd5b6114dc6000612d16565b565b6000600e60009054906101000a900460ff16905090565b6000600b60000160049054906101000a900467ffffffffffffffff1667ffffffffffffffff16421015801561154d5750600b600001600c9054906101000a900467ffffffffffffffff1667ffffffffffffffff164211155b1561155b5760019050611560565b600090505b90565b61156b612452565b73ffffffffffffffffffffffffffffffffffffffff1661158961171b565b73ffffffffffffffffffffffffffffffffffffffff16146115df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d690614466565b60405180910390fd5b6115e7612ddc565b565b6115f1612452565b73ffffffffffffffffffffffffffffffffffffffff1661160f61171b565b73ffffffffffffffffffffffffffffffffffffffff1614611665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165c90614466565b60405180910390fd5b600061166f612452565b73ffffffffffffffffffffffffffffffffffffffff164760405161169290614272565b60006040518083038185875af1925050503d80600081146116cf576040519150601f19603f3d011682016040523d82523d6000602084013e6116d4565b606091505b5050905080611718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170f906144a6565b60405180910390fd5b50565b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61174d612452565b73ffffffffffffffffffffffffffffffffffffffff1661176b61171b565b73ffffffffffffffffffffffffffffffffffffffff16146117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b890614466565b60405180910390fd5b8060098190555050565b6060600380546117da906148b2565b80601f0160208091040260200160405190810160405280929190818152602001828054611806906148b2565b80156118535780601f1061182857610100808354040283529160200191611853565b820191906000526020600020905b81548152906001019060200180831161183657829003601f168201915b5050505050905090565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600954905090565b60095481565b611895612452565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118fa576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611907612452565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119b4612452565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119f991906142ee565b60405180910390a35050565b6000611a12848484612e7f565b90509392505050565b611a26848484612515565b611a458373ffffffffffffffffffffffffffffffffffffffff16612e96565b15611a8d57611a5684848484612eb9565b611a8c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b6060611aa482612404565b611ada576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611ae4613019565b9050600081511415611b055760405180602001604052806000815250611b30565b80611b0f846130ab565b604051602001611b2092919061424e565b6040516020818303038152906040525b915050919050565b611b40612452565b73ffffffffffffffffffffffffffffffffffffffff16611b5e61171b565b73ffffffffffffffffffffffffffffffffffffffff1614611bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bab90614466565b60405180910390fd5b600e60019054906101000a900460ff1615611c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfb90614506565b60405180910390fd5b82600b60000160046101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555061546083611c3e91906146d3565b600b600001600c6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600b60000160026101000a81548161ffff021916908361ffff16021790555080600b60000160006101000a81548161ffff021916908361ffff160217905550505050565b611cb6612452565b73ffffffffffffffffffffffffffffffffffffffff16611cd461171b565b73ffffffffffffffffffffffffffffffffffffffff1614611d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2190614466565b60405180910390fd5b80600c8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dd0610fdf565b15611e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0790614406565b60405180910390fd5b611e18612452565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7c90614486565b60405180910390fd5b6000611e8f612452565b905060068410611ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecb90614526565b60405180910390fd5b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5890614386565b60405180910390fd5b83600954611f6f9190614742565b3414611fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa7906144e6565b60405180910390fd5b42600b60000160049054906101000a900467ffffffffffffffff1667ffffffffffffffff161115612016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200d906144c6565b60405180910390fd5b42600b600001600c9054906101000a900467ffffffffffffffff1667ffffffffffffffff16101561207c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207390614426565b60405180910390fd5b600b60000160029054906101000a900461ffff1661ffff168461209d610c19565b6120a7919061467d565b11156120e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120df906143e6565b60405180910390fd5b6000816040516020016120fb9190614233565b604051602081830303815290604052805190602001209050612161848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c5483611a05565b6121a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612197906143c6565b60405180910390fd5b6001600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061220282866129cb565b5050505050565b612211612452565b73ffffffffffffffffffffffffffffffffffffffff1661222f61171b565b73ffffffffffffffffffffffffffffffffffffffff1614612285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227c90614466565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ec906143a6565b60405180910390fd5b6122fe81612d16565b50565b612309612452565b73ffffffffffffffffffffffffffffffffffffffff1661232761171b565b73ffffffffffffffffffffffffffffffffffffffff161461237d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237490614466565b60405180910390fd5b6001600e60016101000a81548160ff021916908315150217905550565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161240f61250c565b1115801561241e575060005482105b801561244b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061252082612a8b565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461258b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166125ac612452565b73ffffffffffffffffffffffffffffffffffffffff1614806125db57506125da856125d5612452565b611d34565b5b8061262057506125e9612452565b73ffffffffffffffffffffffffffffffffffffffff1661260884610a98565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612659576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126c0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126cd8585856001613258565b6126d96000848761245a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561295957600054821461295857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129c485858560016132b2565b5050505050565b6129e58282604051806020016040528060008152506132b8565b5050565b6129f1610fdf565b612a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2790614346565b60405180910390fd5b6000600860006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612a74612452565b604051612a819190614287565b60405180910390a1565b612a936137fc565b600082905080612aa161250c565b11612cdf57600054811015612cde576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612cdc57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612bc0578092505050612d11565b5b600115612cdb57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612cd6578092505050612d11565b612bc1565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612de4610fdf565b15612e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1b90614406565b60405180910390fd5b6001600860006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612e68612452565b604051612e759190614287565b60405180910390a1565b600082612e8c858461367a565b1490509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612edf612452565b8786866040518563ffffffff1660e01b8152600401612f0194939291906142a2565b602060405180830381600087803b158015612f1b57600080fd5b505af1925050508015612f4c57506040513d601f19601f82011682018060405250810190612f499190613d3d565b60015b612fc6573d8060008114612f7c576040519150601f19603f3d011682016040523d82523d6000602084013e612f81565b606091505b50600081511415612fbe576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054613028906148b2565b80601f0160208091040260200160405190810160405280929190818152602001828054613054906148b2565b80156130a15780601f10613076576101008083540402835291602001916130a1565b820191906000526020600020905b81548152906001019060200180831161308457829003601f168201915b5050505050905090565b606060008214156130f3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613253565b600082905060005b6000821461312557808061310e90614915565b915050600a8261311e9190614711565b91506130fb565b60008167ffffffffffffffff811115613167577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131995781602001600182028036833780820191505090505b5090505b6000851461324c576001826131b2919061479c565b9150600a856131c19190614982565b60306131cd919061467d565b60f81b818381518110613209577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132459190614711565b945061319d565b8093505050505b919050565b613260610fdf565b156132a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329790614406565b60405180910390fd5b6132ac84848484613715565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613325576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415613360576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61336d6000858386613258565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000848201905061352e8673ffffffffffffffffffffffffffffffffffffffff16612e96565b156135f3575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135a36000878480600101955087612eb9565b6135d9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106135345782600054146135ee57600080fd5b61365e565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106135f4575b81600081905550505061367460008583866132b2565b50505050565b60008082905060005b845181101561370a5760008582815181106136c7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116136e9576136e2838261371b565b92506136f6565b6136f3818461371b565b92505b50808061370290614915565b915050613683565b508091505092915050565b50505050565b600082600052816020526040600020905092915050565b82805461373e906148b2565b90600052602060002090601f01602090048101928261376057600085556137a7565b82601f1061377957805160ff19168380011785556137a7565b828001600101855582156137a7579182015b828111156137a657825182559160200191906001019061378b565b5b5090506137b4919061383f565b5090565b6040518060800160405280600061ffff168152602001600061ffff168152602001600067ffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613858576000816000905550600101613840565b5090565b600061386f61386a846145a1565b61457c565b9050808382526020820190508285602086028201111561388e57600080fd5b60005b858110156138be57816138a488826139e2565b845260208401935060208301925050600181019050613891565b5050509392505050565b60006138db6138d6846145cd565b61457c565b9050828152602081018484840111156138f357600080fd5b6138fe848285614870565b509392505050565b6000613919613914846145fe565b61457c565b90508281526020810184848401111561393157600080fd5b61393c848285614870565b509392505050565b60008135905061395381614e04565b92915050565b60008083601f84011261396b57600080fd5b8235905067ffffffffffffffff81111561398457600080fd5b60208301915083602082028301111561399c57600080fd5b9250929050565b600082601f8301126139b457600080fd5b81356139c484826020860161385c565b91505092915050565b6000813590506139dc81614e1b565b92915050565b6000813590506139f181614e32565b92915050565b600081359050613a0681614e49565b92915050565b600081519050613a1b81614e49565b92915050565b600082601f830112613a3257600080fd5b8135613a428482602086016138c8565b91505092915050565b600082601f830112613a5c57600080fd5b8135613a6c848260208601613906565b91505092915050565b600081359050613a8481614e60565b92915050565b600081359050613a9981614e77565b92915050565b600081359050613aae81614e8e565b92915050565b600060208284031215613ac657600080fd5b6000613ad484828501613944565b91505092915050565b60008060408385031215613af057600080fd5b6000613afe85828601613944565b9250506020613b0f85828601613944565b9150509250929050565b600080600060608486031215613b2e57600080fd5b6000613b3c86828701613944565b9350506020613b4d86828701613944565b9250506040613b5e86828701613a8a565b9150509250925092565b60008060008060808587031215613b7e57600080fd5b6000613b8c87828801613944565b9450506020613b9d87828801613944565b9350506040613bae87828801613a8a565b925050606085013567ffffffffffffffff811115613bcb57600080fd5b613bd787828801613a21565b91505092959194509250565b60008060408385031215613bf657600080fd5b6000613c0485828601613944565b9250506020613c15858286016139cd565b9150509250929050565b60008060408385031215613c3257600080fd5b6000613c4085828601613944565b9250506020613c5185828601613a8a565b9150509250929050565b600080600060608486031215613c7057600080fd5b600084013567ffffffffffffffff811115613c8a57600080fd5b613c96868287016139a3565b9350506020613ca7868287016139e2565b9250506040613cb8868287016139e2565b9150509250925092565b600060208284031215613cd457600080fd5b6000613ce2848285016139cd565b91505092915050565b600060208284031215613cfd57600080fd5b6000613d0b848285016139e2565b91505092915050565b600060208284031215613d2657600080fd5b6000613d34848285016139f7565b91505092915050565b600060208284031215613d4f57600080fd5b6000613d5d84828501613a0c565b91505092915050565b600060208284031215613d7857600080fd5b600082013567ffffffffffffffff811115613d9257600080fd5b613d9e84828501613a4b565b91505092915050565b600060208284031215613db957600080fd5b6000613dc784828501613a8a565b91505092915050565b600080600060408486031215613de557600080fd5b6000613df386828701613a8a565b935050602084013567ffffffffffffffff811115613e1057600080fd5b613e1c86828701613959565b92509250509250925092565b600080600060608486031215613e3d57600080fd5b6000613e4b86828701613a9f565b9350506020613e5c86828701613a75565b9250506040613e6d86828701613a75565b9150509250925092565b613e80816147d0565b82525050565b613e97613e92826147d0565b61495e565b82525050565b613ea6816147e2565b82525050565b613eb5816147ee565b82525050565b6000613ec68261462f565b613ed08185614645565b9350613ee081856020860161487f565b613ee981614a6f565b840191505092915050565b6000613eff8261463a565b613f098185614661565b9350613f1981856020860161487f565b613f2281614a6f565b840191505092915050565b6000613f388261463a565b613f428185614672565b9350613f5281856020860161487f565b80840191505092915050565b6000613f6b601483614661565b9150613f7682614a8d565b602082019050919050565b6000613f8e603083614661565b9150613f9982614ab6565b604082019050919050565b6000613fb1601f83614661565b9150613fbc82614b05565b602082019050919050565b6000613fd4602683614661565b9150613fdf82614b2e565b604082019050919050565b6000613ff7600e83614661565b915061400282614b7d565b602082019050919050565b600061401a601283614661565b915061402582614ba6565b602082019050919050565b600061403d601083614661565b915061404882614bcf565b602082019050919050565b6000614060601883614661565b915061406b82614bf8565b602082019050919050565b6000614083602883614661565b915061408e82614c21565b604082019050919050565b60006140a6602083614661565b91506140b182614c70565b602082019050919050565b60006140c9601f83614661565b91506140d482614c99565b602082019050919050565b60006140ec600083614656565b91506140f782614cc2565b600082019050919050565b600061410f601083614661565b915061411a82614cc5565b602082019050919050565b6000614132601d83614661565b915061413d82614cee565b602082019050919050565b6000614155602183614661565b915061416082614d17565b604082019050919050565b6000614178602283614661565b915061418382614d66565b604082019050919050565b600061419b603183614661565b91506141a682614db5565b604082019050919050565b6080820160008201516141c76000850182614206565b5060208201516141da6020850182614206565b5060408201516141ed6040850182614224565b5060608201516142006060850182614224565b50505050565b61420f81614824565b82525050565b61421e81614852565b82525050565b61422d8161485c565b82525050565b600061423f8284613e86565b60148201915081905092915050565b600061425a8285613f2d565b91506142668284613f2d565b91508190509392505050565b600061427d826140df565b9150819050919050565b600060208201905061429c6000830184613e77565b92915050565b60006080820190506142b76000830187613e77565b6142c46020830186613e77565b6142d16040830185614215565b81810360608301526142e38184613ebb565b905095945050505050565b60006020820190506143036000830184613e9d565b92915050565b600060208201905061431e6000830184613eac565b92915050565b6000602082019050818103600083015261433e8184613ef4565b905092915050565b6000602082019050818103600083015261435f81613f5e565b9050919050565b6000602082019050818103600083015261437f81613f81565b9050919050565b6000602082019050818103600083015261439f81613fa4565b9050919050565b600060208201905081810360008301526143bf81613fc7565b9050919050565b600060208201905081810360008301526143df81613fea565b9050919050565b600060208201905081810360008301526143ff8161400d565b9050919050565b6000602082019050818103600083015261441f81614030565b9050919050565b6000602082019050818103600083015261443f81614053565b9050919050565b6000602082019050818103600083015261445f81614076565b9050919050565b6000602082019050818103600083015261447f81614099565b9050919050565b6000602082019050818103600083015261449f816140bc565b9050919050565b600060208201905081810360008301526144bf81614102565b9050919050565b600060208201905081810360008301526144df81614125565b9050919050565b600060208201905081810360008301526144ff81614148565b9050919050565b6000602082019050818103600083015261451f8161416b565b9050919050565b6000602082019050818103600083015261453f8161418e565b9050919050565b600060808201905061455b60008301846141b1565b92915050565b60006020820190506145766000830184614215565b92915050565b6000614586614597565b905061459282826148e4565b919050565b6000604051905090565b600067ffffffffffffffff8211156145bc576145bb614a40565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156145e8576145e7614a40565b5b6145f182614a6f565b9050602081019050919050565b600067ffffffffffffffff82111561461957614618614a40565b5b61462282614a6f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061468882614852565b915061469383614852565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146c8576146c76149b3565b5b828201905092915050565b60006146de8261485c565b91506146e98361485c565b92508267ffffffffffffffff03821115614706576147056149b3565b5b828201905092915050565b600061471c82614852565b915061472783614852565b925082614737576147366149e2565b5b828204905092915050565b600061474d82614852565b915061475883614852565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614791576147906149b3565b5b828202905092915050565b60006147a782614852565b91506147b283614852565b9250828210156147c5576147c46149b3565b5b828203905092915050565b60006147db82614832565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561489d578082015181840152602081019050614882565b838111156148ac576000848401525b50505050565b600060028204905060018216806148ca57607f821691505b602082108114156148de576148dd614a11565b5b50919050565b6148ed82614a6f565b810181811067ffffffffffffffff8211171561490c5761490b614a40565b5b80604052505050565b600061492082614852565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614953576149526149b3565b5b600182019050919050565b600061496982614970565b9050919050565b600061497b82614a80565b9050919050565b600061498d82614852565b915061499883614852565b9250826149a8576149a76149e2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f596f752063616e206d696e742061206d6178696d756d206f662032302043686560008201527f656269657a20617420612074696d652100000000000000000000000000000000602082015250565b7f416c726561647920636c61696d656420796f75722043686565626c6973742100600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420636c61696d21000000000000000000000000000000000000600082015250565b7f546f6f206d616e7920436865656269657a210000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f5468652043686565626c69737420697320636c6f736564210000000000000000600082015250565b7f5075626c69632073616c65206861736e27742073746172746564206f7220697360008201527f2070617573656421000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163742100600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f5468652043686565624c697374206861736e2774207374617274656421000000600082015250565b7f457468657220616d6f756e742073656e74206973206e6f7420636f727265637460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f537570706c792c20707269636520616e642073616c6520617265206c6f636b6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e2774206d696e74206d6f7265207468616e20352043686565627320667260008201527f6f6d207468652043686565626c69737421000000000000000000000000000000602082015250565b614e0d816147d0565b8114614e1857600080fd5b50565b614e24816147e2565b8114614e2f57600080fd5b50565b614e3b816147ee565b8114614e4657600080fd5b50565b614e52816147f8565b8114614e5d57600080fd5b50565b614e6981614824565b8114614e7457600080fd5b50565b614e8081614852565b8114614e8b57600080fd5b50565b614e978161485c565b8114614ea257600080fd5b5056fea2646970667358221220a6fc7ace9dd21b3a718aa2557f497f6ea3084bf0e00d8ab7867678b26e62578d64736f6c63430008040033
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.