ERC-721
Overview
Max Total Supply
444 TT
Holders
221
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
6 TTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TheTruthPassBySixSence
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /** _ /\ | | / \ _ __ ___ __ _ __| | ___ _ _ ___ / /\ \ | '_ ` _ \ / _` |/ _` |/ _ | | | / __| / ____ \| | | | | | (_| | (_| | __| |_| \__ \ /_/ \_|_| |_| |_|\__,_|\__,_|\___|\__,_|___/ @developer:CivilLabs_Amadeus */ pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./ERC721A.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _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) } } } contract TheTruthPassBySixSence is Ownable, ERC721A, ReentrancyGuard { constructor( ) ERC721A("TheTruth Pass by SixSence", "TT", 8, 444) {} modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } // For marketing etc. function reserveMintBatch(uint256[] calldata quantities, address[] calldata tos) external onlyOwner { for(uint256 j = 0; j < quantities.length; j++){ require( totalSupply() + quantities[j] <= collectionSize, "Too many already minted before dev mint." ); uint256 numChunks = quantities[j] / maxBatchSize; for (uint256 i = 0; i < numChunks; i++) { _safeMint(tos[j], maxBatchSize); } if (quantities[j] % maxBatchSize != 0){ _safeMint(tos[j], quantities[j] % maxBatchSize); } } } // metadata URI string private _baseTokenURI; function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function withdrawMoney() external onlyOwner nonReentrant { address amadeusAddress = address(0x718a7438297Ac14382F25802bb18422A4DadD31b); uint256 royaltyForAmadeus = address(this).balance / 100 * 10; uint256 remain = address(this).balance - royaltyForAmadeus; (bool success, ) = amadeusAddress.call{value: royaltyForAmadeus}(""); require(success, "Transfer failed."); (success, ) = msg.sender.call{value: remain}(""); require(success, "Transfer failed."); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } function refundIfOver(uint256 price) private { require(msg.value >= price, "Need to send more ETH."); if (msg.value > price) { payable(msg.sender).transfer(msg.value - price); } } // allowList mint uint256 public allowListMintPrice = 0.000000 ether; // default false bool public allowListStatus = false; uint256 public amountForAllowList = 400; uint256 public immutable maxPerAddressDuringMint = 1; bytes32 private merkleRoot; mapping(address => bool) public allowListAppeared; mapping(address => uint256) public allowListStock; function allowListMint(uint256 quantity, bytes32[] memory proof) external payable { require(allowListStatus, "not begun"); require(totalSupply() + quantity <= collectionSize, "reached max supply"); require(amountForAllowList >= quantity, "reached max amount"); require(isInAllowList(msg.sender, proof), "Invalid Merkle Proof."); if(!allowListAppeared[msg.sender]){ allowListAppeared[msg.sender] = true; allowListStock[msg.sender] = maxPerAddressDuringMint; } require(allowListStock[msg.sender] >= quantity, "reached amount per address"); allowListStock[msg.sender] -= quantity; _safeMint(msg.sender, quantity); amountForAllowList -= quantity; refundIfOver(allowListMintPrice*quantity); } function setRoot(bytes32 root) external onlyOwner{ merkleRoot = root; } function setAllowListStatus(bool status) external onlyOwner { allowListStatus = status; } function isInAllowList(address addr, bytes32[] memory proof) public view returns(bool) { bytes32 leaf = keccak256(abi.encodePacked(addr)); return MerkleProof.verify(proof, merkleRoot, leaf); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.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 and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // 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) private _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; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("unable to get token of owner"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "query for the zero"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "query for the zero" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("find owner failed"); } /** * @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) { require( _exists(tokenId), "query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "approve to caller"); _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 override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "transfer to non ERC721Receiver" ); } /** * @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 tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "mint to the zero"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "already minted"); require(quantity <= maxBatchSize, "quantity too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "transfer to non ERC721Receiver" ); updatedIndex++; } 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); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "transfer from incorrect owner" ); require(to != address(0), "transfer to the zero"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, 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; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } return true; } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * 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`. */ 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. * * 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` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/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/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (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/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowListAppeared","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"allowListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"allowListMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowListStock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountForAllowList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","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":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"isInAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantities","type":"uint256[]"},{"internalType":"address[]","name":"tos","type":"address[]"}],"name":"reserveMintBatch","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":"bool","name":"status","type":"bool"}],"name":"setAllowListStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e060405260006001556000600a556000600b60006101000a81548160ff021916908315150217905550610190600c55600160c0908152503480156200004457600080fd5b506040518060400160405280601981526020017f546865547275746820506173732062792053697853656e6365000000000000008152506040518060400160405280600281526020017f545400000000000000000000000000000000000000000000000000000000000081525060086101bc620000d6620000ca620001b660201b60201c565b620001be60201b60201c565b600081116200011c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200011390620003a2565b60405180910390fd5b6000821162000162576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001599062000380565b60405180910390fd5b83600290805190602001906200017a92919062000282565b5082600390805190602001906200019392919062000282565b508160a081815250508060808181525050505050506001600881905550620004b2565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200029090620003d5565b90600052602060002090601f016020900481019282620002b4576000855562000300565b82601f10620002cf57805160ff191683800117855562000300565b8280016001018555821562000300579182015b82811115620002ff578251825591602001919060010190620002e2565b5b5090506200030f919062000313565b5090565b5b808211156200032e57600081600090555060010162000314565b5090565b600062000341601e83620003c4565b91506200034e826200043a565b602082019050919050565b600062000368602583620003c4565b9150620003758262000463565b604082019050919050565b600060208201905081810360008301526200039b8162000332565b9050919050565b60006020820190508181036000830152620003bd8162000359565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620003ee57607f821691505b602082108114156200040557620004046200040b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f6d61782062617463682073697a65206d757374206265206e6f6e7a65726f0000600082015250565b7f636f6c6c656374696f6e206d75737420686176652061206e6f6e7a65726f207360008201527f7570706c79000000000000000000000000000000000000000000000000000000602082015250565b60805160a05160c0516150fa6200051a600039600081816113f10152611d6b015260008181610fb20152818161102f0152818161106b015281816110e001528181612738015281816127610152612fa4015260008181610f220152611bbf01526150fa6000f3fe6080604052600436106101f95760003560e01c8063802751ca1161010d578063b88d4fde116100a0578063dc33e6811161006f578063dc33e68114610757578063e1ab4f6814610794578063e985e9c5146107d1578063ec8bda8e1461080e578063f2fde38b1461082a576101f9565b8063b88d4fde1461068b578063c5d98bb3146106b4578063c87b56dd146106f1578063dab5f3401461072e576101f9565b80639231ab2a116100dc5780639231ab2a146105e357806395d89b4114610620578063a22cb4651461064b578063ac44600214610674576101f9565b8063802751ca146105375780638626eb18146105625780638bc35c2f1461058d5780638da5cb5b146105b8576101f9565b8063300bc3a11161019057806355f804b31161015f57806355f804b3146104525780636352211e1461047b57806368855b64146104b857806370a08231146104e3578063715018a614610520576101f9565b8063300bc3a11461039a5780633cd47537146103c357806342842e0e146103ec5780634f6ccce714610415576101f9565b8063095ea7b3116101cc578063095ea7b3146102e057806318160ddd1461030957806323b872dd146103345780632f745c591461035d576101f9565b806301ffc9a7146101fe578063050c8ffc1461023b57806306fdde0314610278578063081812fc146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190613ad6565b610853565b60405161023291906141c9565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d91906137dc565b61099d565b60405161026f9190614581565b60405180910390f35b34801561028457600080fd5b5061028d6109b5565b60405161029a91906141e4565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190613b7d565b610a47565b6040516102d79190614162565b60405180910390f35b3480156102ec57600080fd5b50610307600480360381019061030291906139bb565b610acc565b005b34801561031557600080fd5b5061031e610be5565b60405161032b9190614581565b60405180910390f35b34801561034057600080fd5b5061035b60048036038101906103569190613849565b610bef565b005b34801561036957600080fd5b50610384600480360381019061037f91906139bb565b610bff565b6040516103919190614581565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc9190613a7c565b610dfd565b005b3480156103cf57600080fd5b506103ea60048036038101906103e591906139fb565b610e96565b005b3480156103f857600080fd5b50610413600480360381019061040e9190613849565b611144565b005b34801561042157600080fd5b5061043c60048036038101906104379190613b7d565b611164565b6040516104499190614581565b60405180910390f35b34801561045e57600080fd5b5061047960048036038101906104749190613b30565b6111b7565b005b34801561048757600080fd5b506104a2600480360381019061049d9190613b7d565b611249565b6040516104af9190614162565b60405180910390f35b3480156104c457600080fd5b506104cd61125f565b6040516104da9190614581565b60405180910390f35b3480156104ef57600080fd5b5061050a600480360381019061050591906137dc565b611265565b6040516105179190614581565b60405180910390f35b34801561052c57600080fd5b5061053561134e565b005b34801561054357600080fd5b5061054c6113d6565b60405161055991906141c9565b60405180910390f35b34801561056e57600080fd5b506105776113e9565b6040516105849190614581565b60405180910390f35b34801561059957600080fd5b506105a26113ef565b6040516105af9190614581565b60405180910390f35b3480156105c457600080fd5b506105cd611413565b6040516105da9190614162565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190613b7d565b61143c565b6040516106179190614566565b60405180910390f35b34801561062c57600080fd5b50610635611454565b60405161064291906141e4565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d919061397b565b6114e6565b005b34801561068057600080fd5b50610689611667565b005b34801561069757600080fd5b506106b260048036038101906106ad919061389c565b6118dd565b005b3480156106c057600080fd5b506106db60048036038101906106d6919061391f565b611939565b6040516106e891906141c9565b60405180910390f35b3480156106fd57600080fd5b5061071860048036038101906107139190613b7d565b61197b565b60405161072591906141e4565b60405180910390f35b34801561073a57600080fd5b5061075560048036038101906107509190613aa9565b611a22565b005b34801561076357600080fd5b5061077e600480360381019061077991906137dc565b611aa8565b60405161078b9190614581565b60405180910390f35b3480156107a057600080fd5b506107bb60048036038101906107b691906137dc565b611aba565b6040516107c891906141c9565b60405180910390f35b3480156107dd57600080fd5b506107f860048036038101906107f39190613809565b611ada565b60405161080591906141c9565b60405180910390f35b61082860048036038101906108239190613baa565b611b6e565b005b34801561083657600080fd5b50610851600480360381019061084c91906137dc565b611ee3565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061098657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610996575061099582611fdb565b5b9050919050565b600f6020528060005260406000206000915090505481565b6060600280546109c490614915565b80601f01602080910402602001604051908101604052809291908181526020018280546109f090614915565b8015610a3d5780601f10610a1257610100808354040283529160200191610a3d565b820191906000526020600020905b815481529060010190602001808311610a2057829003601f168201915b5050505050905090565b6000610a5282612045565b610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a88906142c6565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ad782611249565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3f90614266565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b67612053565b73ffffffffffffffffffffffffffffffffffffffff161480610b965750610b9581610b90612053565b611ada565b5b610bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcc90614226565b60405180910390fd5b610be083838361205b565b505050565b6000600154905090565b610bfa83838361210d565b505050565b6000610c0a83611265565b8210610c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4290614526565b60405180910390fd5b6000610c55610be5565b905060008060005b83811015610dbb576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d4f57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610da75786841415610d98578195505050505050610df7565b8380610da390614978565b9450505b508080610db390614978565b915050610c5d565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dee90614446565b60405180910390fd5b92915050565b610e05612053565b73ffffffffffffffffffffffffffffffffffffffff16610e23611413565b73ffffffffffffffffffffffffffffffffffffffff1614610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e70906143e6565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b610e9e612053565b73ffffffffffffffffffffffffffffffffffffffff16610ebc611413565b73ffffffffffffffffffffffffffffffffffffffff1614610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f09906143e6565b60405180910390fd5b60005b8484905081101561113d577f0000000000000000000000000000000000000000000000000000000000000000858583818110610f5457610f53614aa3565b5b90506020020135610f63610be5565b610f6d91906146b2565b1115610fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa590614346565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000868684818110610fe457610fe3614aa3565b5b90506020020135610ff59190614708565b905060005b818110156110665761105385858581811061101857611017614aa3565b5b905060200201602081019061102d91906137dc565b7f00000000000000000000000000000000000000000000000000000000000000006126c6565b808061105e90614978565b915050610ffa565b5060007f000000000000000000000000000000000000000000000000000000000000000087878581811061109d5761109c614aa3565b5b905060200201356110ae91906149e5565b14611129576111288484848181106110c9576110c8614aa3565b5b90506020020160208101906110de91906137dc565b7f000000000000000000000000000000000000000000000000000000000000000088888681811061111257611111614aa3565b5b9050602002013561112391906149e5565b6126c6565b5b50808061113590614978565b915050610f15565b5050505050565b61115f838383604051806020016040528060008152506118dd565b505050565b600061116e610be5565b82106111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a690614526565b60405180910390fd5b819050919050565b6111bf612053565b73ffffffffffffffffffffffffffffffffffffffff166111dd611413565b73ffffffffffffffffffffffffffffffffffffffff1614611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a906143e6565b60405180910390fd5b818160099190611244929190613471565b505050565b6000611254826126e4565b600001519050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cd90614206565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611356612053565b73ffffffffffffffffffffffffffffffffffffffff16611374611413565b73ffffffffffffffffffffffffffffffffffffffff16146113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c1906143e6565b60405180910390fd5b6113d460006128e7565b565b600b60009054906101000a900460ff1681565b600c5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114446134f7565b61144d826126e4565b9050919050565b60606003805461146390614915565b80601f016020809104026020016040519081016040528092919081815260200182805461148f90614915565b80156114dc5780601f106114b1576101008083540402835291602001916114dc565b820191906000526020600020905b8154815290600101906020018083116114bf57829003601f168201915b5050505050905090565b6114ee612053565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155390614426565b60405180910390fd5b8060076000611569612053565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611616612053565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161165b91906141c9565b60405180910390a35050565b61166f612053565b73ffffffffffffffffffffffffffffffffffffffff1661168d611413565b73ffffffffffffffffffffffffffffffffffffffff16146116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da906143e6565b60405180910390fd5b60026008541415611729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172090614506565b60405180910390fd5b6002600881905550600073718a7438297ac14382f25802bb18422a4dadd31b90506000600a60644761175b9190614708565b6117659190614739565b90506000814761177591906147c7565b905060008373ffffffffffffffffffffffffffffffffffffffff168360405161179d9061414d565b60006040518083038185875af1925050503d80600081146117da576040519150601f19603f3d011682016040523d82523d6000602084013e6117df565b606091505b5050905080611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a90614486565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16826040516118479061414d565b60006040518083038185875af1925050503d8060008114611884576040519150601f19603f3d011682016040523d82523d6000602084013e611889565b606091505b505080915050806118cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c690614486565b60405180910390fd5b505050506001600881905550565b6118e884848461210d565b6118f4848484846129ab565b611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a90614406565b60405180910390fd5b50505050565b6000808360405160200161194d919061410e565b60405160208183030381529060405280519060200120905061197283600d5483612b42565b91505092915050565b606061198682612045565b6119c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bc906142c6565b60405180910390fd5b60006119cf612b59565b905060008151116119ef5760405180602001604052806000815250611a1a565b806119f984612beb565b604051602001611a0a929190614129565b6040516020818303038152906040525b915050919050565b611a2a612053565b73ffffffffffffffffffffffffffffffffffffffff16611a48611413565b73ffffffffffffffffffffffffffffffffffffffff1614611a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a95906143e6565b60405180910390fd5b80600d8190555050565b6000611ab382612d4c565b9050919050565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60009054906101000a900460ff16611bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb490614306565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000082611be7610be5565b611bf191906146b2565b1115611c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2990614386565b60405180910390fd5b81600c541015611c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6e906142e6565b60405180910390fd5b611c813382611939565b611cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb790614286565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611dce576001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f0000000000000000000000000000000000000000000000000000000000000000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e47906143c6565b60405180910390fd5b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e9f91906147c7565b92505081905550611eb033836126c6565b81600c6000828254611ec291906147c7565b92505081905550611edf82600a54611eda9190614739565b612e35565b5050565b611eeb612053565b73ffffffffffffffffffffffffffffffffffffffff16611f09611413565b73ffffffffffffffffffffffffffffffffffffffff1614611f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f56906143e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc690614246565b60405180910390fd5b611fd8816128e7565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612118826126e4565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661213f612053565b73ffffffffffffffffffffffffffffffffffffffff16148061219b5750612164612053565b73ffffffffffffffffffffffffffffffffffffffff1661218384610a47565b73ffffffffffffffffffffffffffffffffffffffff16145b806121b757506121b682600001516121b1612053565b611ada565b5b9050806121f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f090614366565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461226b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612262906143a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d2906144e6565b60405180910390fd5b6122e88585856001612ed6565b6122f8600084846000015161205b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166123669190614793565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661240a919061466c565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461251091906146b2565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126565761258681612045565b15612655576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126be8686866001612edc565b505050505050565b6126e0828260405180602001604052806000815250612ee2565b5050565b6126ec6134f7565b6126f582612045565b612734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272b906142c6565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106127985760017f00000000000000000000000000000000000000000000000000000000000000008461278b91906147c7565b61279591906146b2565b90505b60008390505b8181106128a6576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612892578093505050506128e2565b50808061289e906148eb565b91505061279e565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d9906142a6565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006129cc8473ffffffffffffffffffffffffffffffffffffffff166133c2565b15612b35578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129f5612053565b8786866040518563ffffffff1660e01b8152600401612a17949392919061417d565b602060405180830381600087803b158015612a3157600080fd5b505af1925050508015612a6257506040513d601f19601f82011682018060405250810190612a5f9190613b03565b60015b612ae5573d8060008114612a92576040519150601f19603f3d011682016040523d82523d6000602084013e612a97565b606091505b50600081511415612add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad490614326565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b3a565b600190505b949350505050565b600082612b4f85846133e5565b1490509392505050565b606060098054612b6890614915565b80601f0160208091040260200160405190810160405280929190818152602001828054612b9490614915565b8015612be15780601f10612bb657610100808354040283529160200191612be1565b820191906000526020600020905b815481529060010190602001808311612bc457829003601f168201915b5050505050905090565b60606000821415612c33576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d47565b600082905060005b60008214612c65578080612c4e90614978565b915050600a82612c5e9190614708565b9150612c3b565b60008167ffffffffffffffff811115612c8157612c80614ad2565b5b6040519080825280601f01601f191660200182016040528015612cb35781602001600182028036833780820191505090505b5090505b60008514612d4057600182612ccc91906147c7565b9150600a85612cdb91906149e5565b6030612ce791906146b2565b60f81b818381518110612cfd57612cfc614aa3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d399190614708565b9450612cb7565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db490614206565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b80341015612e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6f906144a6565b60405180910390fd5b80341115612ed3573373ffffffffffffffffffffffffffffffffffffffff166108fc8234612ea691906147c7565b9081150290604051600060405180830381858888f19350505050158015612ed1573d6000803e3d6000fd5b505b50565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5090614466565b60405180910390fd5b612f6281612045565b15612fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9990614546565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115613005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ffc906144c6565b60405180910390fd5b6130126000858386612ed6565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161310f919061466c565b6fffffffffffffffffffffffffffffffff168152602001858360200151613136919061466c565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156133a557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461334560008884886129ab565b613384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337b90614406565b60405180910390fd5b818061338f90614978565b925050808061339d90614978565b9150506132d4565b50806001819055506133ba6000878588612edc565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008082905060005b845181101561344f57600085828151811061340c5761340b614aa3565b5b6020026020010151905080831161342e57613427838261345a565b925061343b565b613438818461345a565b92505b50808061344790614978565b9150506133ee565b508091505092915050565b600082600052816020526040600020905092915050565b82805461347d90614915565b90600052602060002090601f01602090048101928261349f57600085556134e6565b82601f106134b857803560ff19168380011785556134e6565b828001600101855582156134e6579182015b828111156134e55782358255916020019190600101906134ca565b5b5090506134f39190613531565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561354a576000816000905550600101613532565b5090565b600061356161355c846145c1565b61459c565b9050808382526020820190508285602086028201111561358457613583614b0b565b5b60005b858110156135b4578161359a8882613704565b845260208401935060208301925050600181019050613587565b5050509392505050565b60006135d16135cc846145ed565b61459c565b9050828152602081018484840111156135ed576135ec614b10565b5b6135f88482856148a9565b509392505050565b60008135905061360f81615051565b92915050565b60008083601f84011261362b5761362a614b06565b5b8235905067ffffffffffffffff81111561364857613647614b01565b5b60208301915083602082028301111561366457613663614b0b565b5b9250929050565b600082601f8301126136805761367f614b06565b5b813561369084826020860161354e565b91505092915050565b60008083601f8401126136af576136ae614b06565b5b8235905067ffffffffffffffff8111156136cc576136cb614b01565b5b6020830191508360208202830111156136e8576136e7614b0b565b5b9250929050565b6000813590506136fe81615068565b92915050565b6000813590506137138161507f565b92915050565b60008135905061372881615096565b92915050565b60008151905061373d81615096565b92915050565b600082601f83011261375857613757614b06565b5b81356137688482602086016135be565b91505092915050565b60008083601f84011261378757613786614b06565b5b8235905067ffffffffffffffff8111156137a4576137a3614b01565b5b6020830191508360018202830111156137c0576137bf614b0b565b5b9250929050565b6000813590506137d6816150ad565b92915050565b6000602082840312156137f2576137f1614b1a565b5b600061380084828501613600565b91505092915050565b600080604083850312156138205761381f614b1a565b5b600061382e85828601613600565b925050602061383f85828601613600565b9150509250929050565b60008060006060848603121561386257613861614b1a565b5b600061387086828701613600565b935050602061388186828701613600565b9250506040613892868287016137c7565b9150509250925092565b600080600080608085870312156138b6576138b5614b1a565b5b60006138c487828801613600565b94505060206138d587828801613600565b93505060406138e6878288016137c7565b925050606085013567ffffffffffffffff81111561390757613906614b15565b5b61391387828801613743565b91505092959194509250565b6000806040838503121561393657613935614b1a565b5b600061394485828601613600565b925050602083013567ffffffffffffffff81111561396557613964614b15565b5b6139718582860161366b565b9150509250929050565b6000806040838503121561399257613991614b1a565b5b60006139a085828601613600565b92505060206139b1858286016136ef565b9150509250929050565b600080604083850312156139d2576139d1614b1a565b5b60006139e085828601613600565b92505060206139f1858286016137c7565b9150509250929050565b60008060008060408587031215613a1557613a14614b1a565b5b600085013567ffffffffffffffff811115613a3357613a32614b15565b5b613a3f87828801613699565b9450945050602085013567ffffffffffffffff811115613a6257613a61614b15565b5b613a6e87828801613615565b925092505092959194509250565b600060208284031215613a9257613a91614b1a565b5b6000613aa0848285016136ef565b91505092915050565b600060208284031215613abf57613abe614b1a565b5b6000613acd84828501613704565b91505092915050565b600060208284031215613aec57613aeb614b1a565b5b6000613afa84828501613719565b91505092915050565b600060208284031215613b1957613b18614b1a565b5b6000613b278482850161372e565b91505092915050565b60008060208385031215613b4757613b46614b1a565b5b600083013567ffffffffffffffff811115613b6557613b64614b15565b5b613b7185828601613771565b92509250509250929050565b600060208284031215613b9357613b92614b1a565b5b6000613ba1848285016137c7565b91505092915050565b60008060408385031215613bc157613bc0614b1a565b5b6000613bcf858286016137c7565b925050602083013567ffffffffffffffff811115613bf057613bef614b15565b5b613bfc8582860161366b565b9150509250929050565b613c0f816147fb565b82525050565b613c1e816147fb565b82525050565b613c35613c30826147fb565b6149c1565b82525050565b613c448161480d565b82525050565b6000613c558261461e565b613c5f8185614634565b9350613c6f8185602086016148b8565b613c7881614b1f565b840191505092915050565b6000613c8e82614629565b613c988185614650565b9350613ca88185602086016148b8565b613cb181614b1f565b840191505092915050565b6000613cc782614629565b613cd18185614661565b9350613ce18185602086016148b8565b80840191505092915050565b6000613cfa601283614650565b9150613d0582614b3d565b602082019050919050565b6000613d1d603083614650565b9150613d2882614b66565b604082019050919050565b6000613d40602683614650565b9150613d4b82614bb5565b604082019050919050565b6000613d63601983614650565b9150613d6e82614c04565b602082019050919050565b6000613d86601583614650565b9150613d9182614c2d565b602082019050919050565b6000613da9601183614650565b9150613db482614c56565b602082019050919050565b6000613dcc601b83614650565b9150613dd782614c7f565b602082019050919050565b6000613def601283614650565b9150613dfa82614ca8565b602082019050919050565b6000613e12600983614650565b9150613e1d82614cd1565b602082019050919050565b6000613e35602a83614650565b9150613e4082614cfa565b604082019050919050565b6000613e58602883614650565b9150613e6382614d49565b604082019050919050565b6000613e7b602983614650565b9150613e8682614d98565b604082019050919050565b6000613e9e601283614650565b9150613ea982614de7565b602082019050919050565b6000613ec1601d83614650565b9150613ecc82614e10565b602082019050919050565b6000613ee4601a83614650565b9150613eef82614e39565b602082019050919050565b6000613f07602083614650565b9150613f1282614e62565b602082019050919050565b6000613f2a601e83614650565b9150613f3582614e8b565b602082019050919050565b6000613f4d601183614650565b9150613f5882614eb4565b602082019050919050565b6000613f70601c83614650565b9150613f7b82614edd565b602082019050919050565b6000613f93600083614645565b9150613f9e82614f06565b600082019050919050565b6000613fb6601083614650565b9150613fc182614f09565b602082019050919050565b6000613fd9601083614650565b9150613fe482614f32565b602082019050919050565b6000613ffc601683614650565b915061400782614f5b565b602082019050919050565b600061401f601183614650565b915061402a82614f84565b602082019050919050565b6000614042601483614650565b915061404d82614fad565b602082019050919050565b6000614065601f83614650565b915061407082614fd6565b602082019050919050565b6000614088601383614650565b915061409382614fff565b602082019050919050565b60006140ab600e83614650565b91506140b682615028565b602082019050919050565b6040820160008201516140d76000850182613c06565b5060208201516140ea60208501826140ff565b50505050565b6140f98161488b565b82525050565b61410881614895565b82525050565b600061411a8284613c24565b60148201915081905092915050565b60006141358285613cbc565b91506141418284613cbc565b91508190509392505050565b600061415882613f86565b9150819050919050565b60006020820190506141776000830184613c15565b92915050565b60006080820190506141926000830187613c15565b61419f6020830186613c15565b6141ac60408301856140f0565b81810360608301526141be8184613c4a565b905095945050505050565b60006020820190506141de6000830184613c3b565b92915050565b600060208201905081810360008301526141fe8184613c83565b905092915050565b6000602082019050818103600083015261421f81613ced565b9050919050565b6000602082019050818103600083015261423f81613d10565b9050919050565b6000602082019050818103600083015261425f81613d33565b9050919050565b6000602082019050818103600083015261427f81613d56565b9050919050565b6000602082019050818103600083015261429f81613d79565b9050919050565b600060208201905081810360008301526142bf81613d9c565b9050919050565b600060208201905081810360008301526142df81613dbf565b9050919050565b600060208201905081810360008301526142ff81613de2565b9050919050565b6000602082019050818103600083015261431f81613e05565b9050919050565b6000602082019050818103600083015261433f81613e28565b9050919050565b6000602082019050818103600083015261435f81613e4b565b9050919050565b6000602082019050818103600083015261437f81613e6e565b9050919050565b6000602082019050818103600083015261439f81613e91565b9050919050565b600060208201905081810360008301526143bf81613eb4565b9050919050565b600060208201905081810360008301526143df81613ed7565b9050919050565b600060208201905081810360008301526143ff81613efa565b9050919050565b6000602082019050818103600083015261441f81613f1d565b9050919050565b6000602082019050818103600083015261443f81613f40565b9050919050565b6000602082019050818103600083015261445f81613f63565b9050919050565b6000602082019050818103600083015261447f81613fa9565b9050919050565b6000602082019050818103600083015261449f81613fcc565b9050919050565b600060208201905081810360008301526144bf81613fef565b9050919050565b600060208201905081810360008301526144df81614012565b9050919050565b600060208201905081810360008301526144ff81614035565b9050919050565b6000602082019050818103600083015261451f81614058565b9050919050565b6000602082019050818103600083015261453f8161407b565b9050919050565b6000602082019050818103600083015261455f8161409e565b9050919050565b600060408201905061457b60008301846140c1565b92915050565b600060208201905061459660008301846140f0565b92915050565b60006145a66145b7565b90506145b28282614947565b919050565b6000604051905090565b600067ffffffffffffffff8211156145dc576145db614ad2565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561460857614607614ad2565b5b61461182614b1f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006146778261484f565b91506146828361484f565b9250826fffffffffffffffffffffffffffffffff038211156146a7576146a6614a16565b5b828201905092915050565b60006146bd8261488b565b91506146c88361488b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146fd576146fc614a16565b5b828201905092915050565b60006147138261488b565b915061471e8361488b565b92508261472e5761472d614a45565b5b828204905092915050565b60006147448261488b565b915061474f8361488b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561478857614787614a16565b5b828202905092915050565b600061479e8261484f565b91506147a98361484f565b9250828210156147bc576147bb614a16565b5b828203905092915050565b60006147d28261488b565b91506147dd8361488b565b9250828210156147f0576147ef614a16565b5b828203905092915050565b60006148068261486b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156148d65780820151818401526020810190506148bb565b838111156148e5576000848401525b50505050565b60006148f68261488b565b9150600082141561490a57614909614a16565b5b600182039050919050565b6000600282049050600182168061492d57607f821691505b6020821081141561494157614940614a74565b5b50919050565b61495082614b1f565b810181811067ffffffffffffffff8211171561496f5761496e614ad2565b5b80604052505050565b60006149838261488b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149b6576149b5614a16565b5b600182019050919050565b60006149cc826149d3565b9050919050565b60006149de82614b30565b9050919050565b60006149f08261488b565b91506149fb8361488b565b925082614a0b57614a0a614a45565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f717565727920666f7220746865207a65726f0000000000000000000000000000600082015250565b7f617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f722060008201527f617070726f76656420666f7220616c6c00000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f617070726f76616c20746f2063757272656e74206f776e657200000000000000600082015250565b7f496e76616c6964204d65726b6c652050726f6f662e0000000000000000000000600082015250565b7f66696e64206f776e6572206661696c6564000000000000000000000000000000600082015250565b7f717565727920666f72206e6f6e6578697374656e7420746f6b656e0000000000600082015250565b7f72656163686564206d617820616d6f756e740000000000000000000000000000600082015250565b7f6e6f7420626567756e0000000000000000000000000000000000000000000000600082015250565b7f7472616e7366657220746f206e6f6e204552433732315265636569766572206960008201527f6d706c656d656e74657200000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e7920616c7265616479206d696e746564206265666f7265206460008201527f6576206d696e742e000000000000000000000000000000000000000000000000602082015250565b7f7472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f7472616e736665722066726f6d20696e636f7272656374206f776e6572000000600082015250565b7f7265616368656420616d6f756e74207065722061646472657373000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f7472616e7366657220746f206e6f6e2045524337323152656365697665720000600082015250565b7f617070726f766520746f2063616c6c6572000000000000000000000000000000600082015250565b7f756e61626c6520746f2067657420746f6b656e206f66206f776e657200000000600082015250565b50565b7f6d696e7420746f20746865207a65726f00000000000000000000000000000000600082015250565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f7175616e7469747920746f6f2068696768000000000000000000000000000000600082015250565b7f7472616e7366657220746f20746865207a65726f000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f696e646578206f7574206f6620626f756e647300000000000000000000000000600082015250565b7f616c7265616479206d696e746564000000000000000000000000000000000000600082015250565b61505a816147fb565b811461506557600080fd5b50565b6150718161480d565b811461507c57600080fd5b50565b61508881614819565b811461509357600080fd5b50565b61509f81614823565b81146150aa57600080fd5b50565b6150b68161488b565b81146150c157600080fd5b5056fea26469706673582212200a3cfb2a58a30ca3f1090750005027f0caa09b6e6297f18b76d7545a5de9e18a64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101f95760003560e01c8063802751ca1161010d578063b88d4fde116100a0578063dc33e6811161006f578063dc33e68114610757578063e1ab4f6814610794578063e985e9c5146107d1578063ec8bda8e1461080e578063f2fde38b1461082a576101f9565b8063b88d4fde1461068b578063c5d98bb3146106b4578063c87b56dd146106f1578063dab5f3401461072e576101f9565b80639231ab2a116100dc5780639231ab2a146105e357806395d89b4114610620578063a22cb4651461064b578063ac44600214610674576101f9565b8063802751ca146105375780638626eb18146105625780638bc35c2f1461058d5780638da5cb5b146105b8576101f9565b8063300bc3a11161019057806355f804b31161015f57806355f804b3146104525780636352211e1461047b57806368855b64146104b857806370a08231146104e3578063715018a614610520576101f9565b8063300bc3a11461039a5780633cd47537146103c357806342842e0e146103ec5780634f6ccce714610415576101f9565b8063095ea7b3116101cc578063095ea7b3146102e057806318160ddd1461030957806323b872dd146103345780632f745c591461035d576101f9565b806301ffc9a7146101fe578063050c8ffc1461023b57806306fdde0314610278578063081812fc146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190613ad6565b610853565b60405161023291906141c9565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d91906137dc565b61099d565b60405161026f9190614581565b60405180910390f35b34801561028457600080fd5b5061028d6109b5565b60405161029a91906141e4565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190613b7d565b610a47565b6040516102d79190614162565b60405180910390f35b3480156102ec57600080fd5b50610307600480360381019061030291906139bb565b610acc565b005b34801561031557600080fd5b5061031e610be5565b60405161032b9190614581565b60405180910390f35b34801561034057600080fd5b5061035b60048036038101906103569190613849565b610bef565b005b34801561036957600080fd5b50610384600480360381019061037f91906139bb565b610bff565b6040516103919190614581565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc9190613a7c565b610dfd565b005b3480156103cf57600080fd5b506103ea60048036038101906103e591906139fb565b610e96565b005b3480156103f857600080fd5b50610413600480360381019061040e9190613849565b611144565b005b34801561042157600080fd5b5061043c60048036038101906104379190613b7d565b611164565b6040516104499190614581565b60405180910390f35b34801561045e57600080fd5b5061047960048036038101906104749190613b30565b6111b7565b005b34801561048757600080fd5b506104a2600480360381019061049d9190613b7d565b611249565b6040516104af9190614162565b60405180910390f35b3480156104c457600080fd5b506104cd61125f565b6040516104da9190614581565b60405180910390f35b3480156104ef57600080fd5b5061050a600480360381019061050591906137dc565b611265565b6040516105179190614581565b60405180910390f35b34801561052c57600080fd5b5061053561134e565b005b34801561054357600080fd5b5061054c6113d6565b60405161055991906141c9565b60405180910390f35b34801561056e57600080fd5b506105776113e9565b6040516105849190614581565b60405180910390f35b34801561059957600080fd5b506105a26113ef565b6040516105af9190614581565b60405180910390f35b3480156105c457600080fd5b506105cd611413565b6040516105da9190614162565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190613b7d565b61143c565b6040516106179190614566565b60405180910390f35b34801561062c57600080fd5b50610635611454565b60405161064291906141e4565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d919061397b565b6114e6565b005b34801561068057600080fd5b50610689611667565b005b34801561069757600080fd5b506106b260048036038101906106ad919061389c565b6118dd565b005b3480156106c057600080fd5b506106db60048036038101906106d6919061391f565b611939565b6040516106e891906141c9565b60405180910390f35b3480156106fd57600080fd5b5061071860048036038101906107139190613b7d565b61197b565b60405161072591906141e4565b60405180910390f35b34801561073a57600080fd5b5061075560048036038101906107509190613aa9565b611a22565b005b34801561076357600080fd5b5061077e600480360381019061077991906137dc565b611aa8565b60405161078b9190614581565b60405180910390f35b3480156107a057600080fd5b506107bb60048036038101906107b691906137dc565b611aba565b6040516107c891906141c9565b60405180910390f35b3480156107dd57600080fd5b506107f860048036038101906107f39190613809565b611ada565b60405161080591906141c9565b60405180910390f35b61082860048036038101906108239190613baa565b611b6e565b005b34801561083657600080fd5b50610851600480360381019061084c91906137dc565b611ee3565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061098657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610996575061099582611fdb565b5b9050919050565b600f6020528060005260406000206000915090505481565b6060600280546109c490614915565b80601f01602080910402602001604051908101604052809291908181526020018280546109f090614915565b8015610a3d5780601f10610a1257610100808354040283529160200191610a3d565b820191906000526020600020905b815481529060010190602001808311610a2057829003601f168201915b5050505050905090565b6000610a5282612045565b610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a88906142c6565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ad782611249565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3f90614266565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b67612053565b73ffffffffffffffffffffffffffffffffffffffff161480610b965750610b9581610b90612053565b611ada565b5b610bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcc90614226565b60405180910390fd5b610be083838361205b565b505050565b6000600154905090565b610bfa83838361210d565b505050565b6000610c0a83611265565b8210610c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4290614526565b60405180910390fd5b6000610c55610be5565b905060008060005b83811015610dbb576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d4f57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610da75786841415610d98578195505050505050610df7565b8380610da390614978565b9450505b508080610db390614978565b915050610c5d565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dee90614446565b60405180910390fd5b92915050565b610e05612053565b73ffffffffffffffffffffffffffffffffffffffff16610e23611413565b73ffffffffffffffffffffffffffffffffffffffff1614610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e70906143e6565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b610e9e612053565b73ffffffffffffffffffffffffffffffffffffffff16610ebc611413565b73ffffffffffffffffffffffffffffffffffffffff1614610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f09906143e6565b60405180910390fd5b60005b8484905081101561113d577f00000000000000000000000000000000000000000000000000000000000001bc858583818110610f5457610f53614aa3565b5b90506020020135610f63610be5565b610f6d91906146b2565b1115610fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa590614346565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000008868684818110610fe457610fe3614aa3565b5b90506020020135610ff59190614708565b905060005b818110156110665761105385858581811061101857611017614aa3565b5b905060200201602081019061102d91906137dc565b7f00000000000000000000000000000000000000000000000000000000000000086126c6565b808061105e90614978565b915050610ffa565b5060007f000000000000000000000000000000000000000000000000000000000000000887878581811061109d5761109c614aa3565b5b905060200201356110ae91906149e5565b14611129576111288484848181106110c9576110c8614aa3565b5b90506020020160208101906110de91906137dc565b7f000000000000000000000000000000000000000000000000000000000000000888888681811061111257611111614aa3565b5b9050602002013561112391906149e5565b6126c6565b5b50808061113590614978565b915050610f15565b5050505050565b61115f838383604051806020016040528060008152506118dd565b505050565b600061116e610be5565b82106111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a690614526565b60405180910390fd5b819050919050565b6111bf612053565b73ffffffffffffffffffffffffffffffffffffffff166111dd611413565b73ffffffffffffffffffffffffffffffffffffffff1614611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a906143e6565b60405180910390fd5b818160099190611244929190613471565b505050565b6000611254826126e4565b600001519050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cd90614206565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611356612053565b73ffffffffffffffffffffffffffffffffffffffff16611374611413565b73ffffffffffffffffffffffffffffffffffffffff16146113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c1906143e6565b60405180910390fd5b6113d460006128e7565b565b600b60009054906101000a900460ff1681565b600c5481565b7f000000000000000000000000000000000000000000000000000000000000000181565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114446134f7565b61144d826126e4565b9050919050565b60606003805461146390614915565b80601f016020809104026020016040519081016040528092919081815260200182805461148f90614915565b80156114dc5780601f106114b1576101008083540402835291602001916114dc565b820191906000526020600020905b8154815290600101906020018083116114bf57829003601f168201915b5050505050905090565b6114ee612053565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155390614426565b60405180910390fd5b8060076000611569612053565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611616612053565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161165b91906141c9565b60405180910390a35050565b61166f612053565b73ffffffffffffffffffffffffffffffffffffffff1661168d611413565b73ffffffffffffffffffffffffffffffffffffffff16146116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da906143e6565b60405180910390fd5b60026008541415611729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172090614506565b60405180910390fd5b6002600881905550600073718a7438297ac14382f25802bb18422a4dadd31b90506000600a60644761175b9190614708565b6117659190614739565b90506000814761177591906147c7565b905060008373ffffffffffffffffffffffffffffffffffffffff168360405161179d9061414d565b60006040518083038185875af1925050503d80600081146117da576040519150601f19603f3d011682016040523d82523d6000602084013e6117df565b606091505b5050905080611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a90614486565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16826040516118479061414d565b60006040518083038185875af1925050503d8060008114611884576040519150601f19603f3d011682016040523d82523d6000602084013e611889565b606091505b505080915050806118cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c690614486565b60405180910390fd5b505050506001600881905550565b6118e884848461210d565b6118f4848484846129ab565b611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a90614406565b60405180910390fd5b50505050565b6000808360405160200161194d919061410e565b60405160208183030381529060405280519060200120905061197283600d5483612b42565b91505092915050565b606061198682612045565b6119c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bc906142c6565b60405180910390fd5b60006119cf612b59565b905060008151116119ef5760405180602001604052806000815250611a1a565b806119f984612beb565b604051602001611a0a929190614129565b6040516020818303038152906040525b915050919050565b611a2a612053565b73ffffffffffffffffffffffffffffffffffffffff16611a48611413565b73ffffffffffffffffffffffffffffffffffffffff1614611a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a95906143e6565b60405180910390fd5b80600d8190555050565b6000611ab382612d4c565b9050919050565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60009054906101000a900460ff16611bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb490614306565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000001bc82611be7610be5565b611bf191906146b2565b1115611c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2990614386565b60405180910390fd5b81600c541015611c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6e906142e6565b60405180910390fd5b611c813382611939565b611cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb790614286565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611dce576001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f0000000000000000000000000000000000000000000000000000000000000001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e47906143c6565b60405180910390fd5b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e9f91906147c7565b92505081905550611eb033836126c6565b81600c6000828254611ec291906147c7565b92505081905550611edf82600a54611eda9190614739565b612e35565b5050565b611eeb612053565b73ffffffffffffffffffffffffffffffffffffffff16611f09611413565b73ffffffffffffffffffffffffffffffffffffffff1614611f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f56906143e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc690614246565b60405180910390fd5b611fd8816128e7565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612118826126e4565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661213f612053565b73ffffffffffffffffffffffffffffffffffffffff16148061219b5750612164612053565b73ffffffffffffffffffffffffffffffffffffffff1661218384610a47565b73ffffffffffffffffffffffffffffffffffffffff16145b806121b757506121b682600001516121b1612053565b611ada565b5b9050806121f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f090614366565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461226b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612262906143a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d2906144e6565b60405180910390fd5b6122e88585856001612ed6565b6122f8600084846000015161205b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166123669190614793565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661240a919061466c565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461251091906146b2565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126565761258681612045565b15612655576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126be8686866001612edc565b505050505050565b6126e0828260405180602001604052806000815250612ee2565b5050565b6126ec6134f7565b6126f582612045565b612734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272b906142c6565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000883106127985760017f00000000000000000000000000000000000000000000000000000000000000088461278b91906147c7565b61279591906146b2565b90505b60008390505b8181106128a6576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612892578093505050506128e2565b50808061289e906148eb565b91505061279e565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d9906142a6565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006129cc8473ffffffffffffffffffffffffffffffffffffffff166133c2565b15612b35578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129f5612053565b8786866040518563ffffffff1660e01b8152600401612a17949392919061417d565b602060405180830381600087803b158015612a3157600080fd5b505af1925050508015612a6257506040513d601f19601f82011682018060405250810190612a5f9190613b03565b60015b612ae5573d8060008114612a92576040519150601f19603f3d011682016040523d82523d6000602084013e612a97565b606091505b50600081511415612add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad490614326565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b3a565b600190505b949350505050565b600082612b4f85846133e5565b1490509392505050565b606060098054612b6890614915565b80601f0160208091040260200160405190810160405280929190818152602001828054612b9490614915565b8015612be15780601f10612bb657610100808354040283529160200191612be1565b820191906000526020600020905b815481529060010190602001808311612bc457829003601f168201915b5050505050905090565b60606000821415612c33576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d47565b600082905060005b60008214612c65578080612c4e90614978565b915050600a82612c5e9190614708565b9150612c3b565b60008167ffffffffffffffff811115612c8157612c80614ad2565b5b6040519080825280601f01601f191660200182016040528015612cb35781602001600182028036833780820191505090505b5090505b60008514612d4057600182612ccc91906147c7565b9150600a85612cdb91906149e5565b6030612ce791906146b2565b60f81b818381518110612cfd57612cfc614aa3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d399190614708565b9450612cb7565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db490614206565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b80341015612e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6f906144a6565b60405180910390fd5b80341115612ed3573373ffffffffffffffffffffffffffffffffffffffff166108fc8234612ea691906147c7565b9081150290604051600060405180830381858888f19350505050158015612ed1573d6000803e3d6000fd5b505b50565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5090614466565b60405180910390fd5b612f6281612045565b15612fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9990614546565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000008831115613005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ffc906144c6565b60405180910390fd5b6130126000858386612ed6565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161310f919061466c565b6fffffffffffffffffffffffffffffffff168152602001858360200151613136919061466c565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156133a557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461334560008884886129ab565b613384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337b90614406565b60405180910390fd5b818061338f90614978565b925050808061339d90614978565b9150506132d4565b50806001819055506133ba6000878588612edc565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008082905060005b845181101561344f57600085828151811061340c5761340b614aa3565b5b6020026020010151905080831161342e57613427838261345a565b925061343b565b613438818461345a565b92505b50808061344790614978565b9150506133ee565b508091505092915050565b600082600052816020526040600020905092915050565b82805461347d90614915565b90600052602060002090601f01602090048101928261349f57600085556134e6565b82601f106134b857803560ff19168380011785556134e6565b828001600101855582156134e6579182015b828111156134e55782358255916020019190600101906134ca565b5b5090506134f39190613531565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561354a576000816000905550600101613532565b5090565b600061356161355c846145c1565b61459c565b9050808382526020820190508285602086028201111561358457613583614b0b565b5b60005b858110156135b4578161359a8882613704565b845260208401935060208301925050600181019050613587565b5050509392505050565b60006135d16135cc846145ed565b61459c565b9050828152602081018484840111156135ed576135ec614b10565b5b6135f88482856148a9565b509392505050565b60008135905061360f81615051565b92915050565b60008083601f84011261362b5761362a614b06565b5b8235905067ffffffffffffffff81111561364857613647614b01565b5b60208301915083602082028301111561366457613663614b0b565b5b9250929050565b600082601f8301126136805761367f614b06565b5b813561369084826020860161354e565b91505092915050565b60008083601f8401126136af576136ae614b06565b5b8235905067ffffffffffffffff8111156136cc576136cb614b01565b5b6020830191508360208202830111156136e8576136e7614b0b565b5b9250929050565b6000813590506136fe81615068565b92915050565b6000813590506137138161507f565b92915050565b60008135905061372881615096565b92915050565b60008151905061373d81615096565b92915050565b600082601f83011261375857613757614b06565b5b81356137688482602086016135be565b91505092915050565b60008083601f84011261378757613786614b06565b5b8235905067ffffffffffffffff8111156137a4576137a3614b01565b5b6020830191508360018202830111156137c0576137bf614b0b565b5b9250929050565b6000813590506137d6816150ad565b92915050565b6000602082840312156137f2576137f1614b1a565b5b600061380084828501613600565b91505092915050565b600080604083850312156138205761381f614b1a565b5b600061382e85828601613600565b925050602061383f85828601613600565b9150509250929050565b60008060006060848603121561386257613861614b1a565b5b600061387086828701613600565b935050602061388186828701613600565b9250506040613892868287016137c7565b9150509250925092565b600080600080608085870312156138b6576138b5614b1a565b5b60006138c487828801613600565b94505060206138d587828801613600565b93505060406138e6878288016137c7565b925050606085013567ffffffffffffffff81111561390757613906614b15565b5b61391387828801613743565b91505092959194509250565b6000806040838503121561393657613935614b1a565b5b600061394485828601613600565b925050602083013567ffffffffffffffff81111561396557613964614b15565b5b6139718582860161366b565b9150509250929050565b6000806040838503121561399257613991614b1a565b5b60006139a085828601613600565b92505060206139b1858286016136ef565b9150509250929050565b600080604083850312156139d2576139d1614b1a565b5b60006139e085828601613600565b92505060206139f1858286016137c7565b9150509250929050565b60008060008060408587031215613a1557613a14614b1a565b5b600085013567ffffffffffffffff811115613a3357613a32614b15565b5b613a3f87828801613699565b9450945050602085013567ffffffffffffffff811115613a6257613a61614b15565b5b613a6e87828801613615565b925092505092959194509250565b600060208284031215613a9257613a91614b1a565b5b6000613aa0848285016136ef565b91505092915050565b600060208284031215613abf57613abe614b1a565b5b6000613acd84828501613704565b91505092915050565b600060208284031215613aec57613aeb614b1a565b5b6000613afa84828501613719565b91505092915050565b600060208284031215613b1957613b18614b1a565b5b6000613b278482850161372e565b91505092915050565b60008060208385031215613b4757613b46614b1a565b5b600083013567ffffffffffffffff811115613b6557613b64614b15565b5b613b7185828601613771565b92509250509250929050565b600060208284031215613b9357613b92614b1a565b5b6000613ba1848285016137c7565b91505092915050565b60008060408385031215613bc157613bc0614b1a565b5b6000613bcf858286016137c7565b925050602083013567ffffffffffffffff811115613bf057613bef614b15565b5b613bfc8582860161366b565b9150509250929050565b613c0f816147fb565b82525050565b613c1e816147fb565b82525050565b613c35613c30826147fb565b6149c1565b82525050565b613c448161480d565b82525050565b6000613c558261461e565b613c5f8185614634565b9350613c6f8185602086016148b8565b613c7881614b1f565b840191505092915050565b6000613c8e82614629565b613c988185614650565b9350613ca88185602086016148b8565b613cb181614b1f565b840191505092915050565b6000613cc782614629565b613cd18185614661565b9350613ce18185602086016148b8565b80840191505092915050565b6000613cfa601283614650565b9150613d0582614b3d565b602082019050919050565b6000613d1d603083614650565b9150613d2882614b66565b604082019050919050565b6000613d40602683614650565b9150613d4b82614bb5565b604082019050919050565b6000613d63601983614650565b9150613d6e82614c04565b602082019050919050565b6000613d86601583614650565b9150613d9182614c2d565b602082019050919050565b6000613da9601183614650565b9150613db482614c56565b602082019050919050565b6000613dcc601b83614650565b9150613dd782614c7f565b602082019050919050565b6000613def601283614650565b9150613dfa82614ca8565b602082019050919050565b6000613e12600983614650565b9150613e1d82614cd1565b602082019050919050565b6000613e35602a83614650565b9150613e4082614cfa565b604082019050919050565b6000613e58602883614650565b9150613e6382614d49565b604082019050919050565b6000613e7b602983614650565b9150613e8682614d98565b604082019050919050565b6000613e9e601283614650565b9150613ea982614de7565b602082019050919050565b6000613ec1601d83614650565b9150613ecc82614e10565b602082019050919050565b6000613ee4601a83614650565b9150613eef82614e39565b602082019050919050565b6000613f07602083614650565b9150613f1282614e62565b602082019050919050565b6000613f2a601e83614650565b9150613f3582614e8b565b602082019050919050565b6000613f4d601183614650565b9150613f5882614eb4565b602082019050919050565b6000613f70601c83614650565b9150613f7b82614edd565b602082019050919050565b6000613f93600083614645565b9150613f9e82614f06565b600082019050919050565b6000613fb6601083614650565b9150613fc182614f09565b602082019050919050565b6000613fd9601083614650565b9150613fe482614f32565b602082019050919050565b6000613ffc601683614650565b915061400782614f5b565b602082019050919050565b600061401f601183614650565b915061402a82614f84565b602082019050919050565b6000614042601483614650565b915061404d82614fad565b602082019050919050565b6000614065601f83614650565b915061407082614fd6565b602082019050919050565b6000614088601383614650565b915061409382614fff565b602082019050919050565b60006140ab600e83614650565b91506140b682615028565b602082019050919050565b6040820160008201516140d76000850182613c06565b5060208201516140ea60208501826140ff565b50505050565b6140f98161488b565b82525050565b61410881614895565b82525050565b600061411a8284613c24565b60148201915081905092915050565b60006141358285613cbc565b91506141418284613cbc565b91508190509392505050565b600061415882613f86565b9150819050919050565b60006020820190506141776000830184613c15565b92915050565b60006080820190506141926000830187613c15565b61419f6020830186613c15565b6141ac60408301856140f0565b81810360608301526141be8184613c4a565b905095945050505050565b60006020820190506141de6000830184613c3b565b92915050565b600060208201905081810360008301526141fe8184613c83565b905092915050565b6000602082019050818103600083015261421f81613ced565b9050919050565b6000602082019050818103600083015261423f81613d10565b9050919050565b6000602082019050818103600083015261425f81613d33565b9050919050565b6000602082019050818103600083015261427f81613d56565b9050919050565b6000602082019050818103600083015261429f81613d79565b9050919050565b600060208201905081810360008301526142bf81613d9c565b9050919050565b600060208201905081810360008301526142df81613dbf565b9050919050565b600060208201905081810360008301526142ff81613de2565b9050919050565b6000602082019050818103600083015261431f81613e05565b9050919050565b6000602082019050818103600083015261433f81613e28565b9050919050565b6000602082019050818103600083015261435f81613e4b565b9050919050565b6000602082019050818103600083015261437f81613e6e565b9050919050565b6000602082019050818103600083015261439f81613e91565b9050919050565b600060208201905081810360008301526143bf81613eb4565b9050919050565b600060208201905081810360008301526143df81613ed7565b9050919050565b600060208201905081810360008301526143ff81613efa565b9050919050565b6000602082019050818103600083015261441f81613f1d565b9050919050565b6000602082019050818103600083015261443f81613f40565b9050919050565b6000602082019050818103600083015261445f81613f63565b9050919050565b6000602082019050818103600083015261447f81613fa9565b9050919050565b6000602082019050818103600083015261449f81613fcc565b9050919050565b600060208201905081810360008301526144bf81613fef565b9050919050565b600060208201905081810360008301526144df81614012565b9050919050565b600060208201905081810360008301526144ff81614035565b9050919050565b6000602082019050818103600083015261451f81614058565b9050919050565b6000602082019050818103600083015261453f8161407b565b9050919050565b6000602082019050818103600083015261455f8161409e565b9050919050565b600060408201905061457b60008301846140c1565b92915050565b600060208201905061459660008301846140f0565b92915050565b60006145a66145b7565b90506145b28282614947565b919050565b6000604051905090565b600067ffffffffffffffff8211156145dc576145db614ad2565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561460857614607614ad2565b5b61461182614b1f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006146778261484f565b91506146828361484f565b9250826fffffffffffffffffffffffffffffffff038211156146a7576146a6614a16565b5b828201905092915050565b60006146bd8261488b565b91506146c88361488b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146fd576146fc614a16565b5b828201905092915050565b60006147138261488b565b915061471e8361488b565b92508261472e5761472d614a45565b5b828204905092915050565b60006147448261488b565b915061474f8361488b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561478857614787614a16565b5b828202905092915050565b600061479e8261484f565b91506147a98361484f565b9250828210156147bc576147bb614a16565b5b828203905092915050565b60006147d28261488b565b91506147dd8361488b565b9250828210156147f0576147ef614a16565b5b828203905092915050565b60006148068261486b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156148d65780820151818401526020810190506148bb565b838111156148e5576000848401525b50505050565b60006148f68261488b565b9150600082141561490a57614909614a16565b5b600182039050919050565b6000600282049050600182168061492d57607f821691505b6020821081141561494157614940614a74565b5b50919050565b61495082614b1f565b810181811067ffffffffffffffff8211171561496f5761496e614ad2565b5b80604052505050565b60006149838261488b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149b6576149b5614a16565b5b600182019050919050565b60006149cc826149d3565b9050919050565b60006149de82614b30565b9050919050565b60006149f08261488b565b91506149fb8361488b565b925082614a0b57614a0a614a45565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f717565727920666f7220746865207a65726f0000000000000000000000000000600082015250565b7f617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f722060008201527f617070726f76656420666f7220616c6c00000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f617070726f76616c20746f2063757272656e74206f776e657200000000000000600082015250565b7f496e76616c6964204d65726b6c652050726f6f662e0000000000000000000000600082015250565b7f66696e64206f776e6572206661696c6564000000000000000000000000000000600082015250565b7f717565727920666f72206e6f6e6578697374656e7420746f6b656e0000000000600082015250565b7f72656163686564206d617820616d6f756e740000000000000000000000000000600082015250565b7f6e6f7420626567756e0000000000000000000000000000000000000000000000600082015250565b7f7472616e7366657220746f206e6f6e204552433732315265636569766572206960008201527f6d706c656d656e74657200000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e7920616c7265616479206d696e746564206265666f7265206460008201527f6576206d696e742e000000000000000000000000000000000000000000000000602082015250565b7f7472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f7472616e736665722066726f6d20696e636f7272656374206f776e6572000000600082015250565b7f7265616368656420616d6f756e74207065722061646472657373000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f7472616e7366657220746f206e6f6e2045524337323152656365697665720000600082015250565b7f617070726f766520746f2063616c6c6572000000000000000000000000000000600082015250565b7f756e61626c6520746f2067657420746f6b656e206f66206f776e657200000000600082015250565b50565b7f6d696e7420746f20746865207a65726f00000000000000000000000000000000600082015250565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f7175616e7469747920746f6f2068696768000000000000000000000000000000600082015250565b7f7472616e7366657220746f20746865207a65726f000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f696e646578206f7574206f6620626f756e647300000000000000000000000000600082015250565b7f616c7265616479206d696e746564000000000000000000000000000000000000600082015250565b61505a816147fb565b811461506557600080fd5b50565b6150718161480d565b811461507c57600080fd5b50565b61508881614819565b811461509357600080fd5b50565b61509f81614823565b81146150aa57600080fd5b50565b6150b68161488b565b81146150c157600080fd5b5056fea26469706673582212200a3cfb2a58a30ca3f1090750005027f0caa09b6e6297f18b76d7545a5de9e18a64736f6c63430008070033
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.