ERC-721
Overview
Max Total Supply
545 CMNFT
Holders
158
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 CMNFTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CapsuleMachineNFT
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // Capsule Machine NFT // Because we have the freedom to say and make what we want we must. pragma solidity ^0.8.0; import "./ERC721A.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; contract CapsuleMachineNFT is ERC721A { using SafeMath for uint256; address private constant artist_1 = 0x28a3182325A294b2f9eb021e70a5F11E9437c4c5; address private constant artist_2 = 0x9438d54Dc1eeAB1B2E1bdad6F1A46A80aBAD82DD; address private constant artist_3 = 0xf15b41e2CEECFF60fD3DdEed994475f17579a413; address private constant artist_4 = 0x43eE0FA4c93Cd778C09A108973731BA148d46b11; address private constant artist_5 = 0x7b33E65A682CC5c106b8B859bD6703E1548d65d8; address private constant artist_6 = 0x15109f7f8Ac81710daec2bc9296C4bAB677b6820; address private constant artist_7 = 0xffAB16457766C76d264cacdA07911CeAAB021D88; address private constant artist_8 = 0xb185cF7fD38D46387E760BDB66357D8B050839eA; address private constant artist_9 = 0x4dCEA2Fb6Eed9b45223CC214232B8a7DB55394d8; address private constant artist_10 = 0xBf3343C0cd08752de20fC846756EBC26A3F2d1f1; address private constant artist_11 = 0x5B183897c25E738dAFF8dCd7E1AA1E0501613640; address private constant artist_12 = 0xc0A2c04F88C51fF086D1162b9C579d7bD6e86255; address private constant artist_13 = 0x3F52b97EA2105307005b51532356f02A1C6095C8; address private constant artist_14 = 0xaA86bb428DaA756Ef618373c0415735F5621D628; address private constant artist_15 = 0x3c8FbAd346D66B0d58dddfb16AD94e515EA09BCC; address private constant artist_16 = 0x52F11485954ffCf3504846AD7b8E03CE8941b92e; address private constant artist_17 = 0xCd9a76966C158739A3c4407dfdB2F7B93B156c34; address private constant artist_18 = 0x60D261917a07746cADf5aD57367F394F8DD4Bd07; address private constant artist_19 = 0xB3f746d20406314130917E4bE87069667840A69b; address private constant artist_20 = 0xf68C43DadB156AC9C9a2C4052A5B3c3cb2e628A8; function withdraw() public onlyOwner { uint256 balance = address(this).balance; uint256 cut = balance.div(20); payable(artist_1).transfer(cut); payable(artist_2).transfer(cut); payable(artist_3).transfer(cut); payable(artist_4).transfer(cut); payable(artist_5).transfer(cut); payable(artist_6).transfer(cut); payable(artist_7).transfer(cut); payable(artist_8).transfer(cut); payable(artist_9).transfer(cut); payable(artist_10).transfer(cut); payable(artist_11).transfer(cut); payable(artist_12).transfer(cut); payable(artist_13).transfer(cut); payable(artist_14).transfer(cut); payable(artist_15).transfer(cut); payable(artist_16).transfer(cut); payable(artist_17).transfer(cut); payable(artist_18).transfer(cut); payable(artist_19).transfer(cut); payable(artist_20).transfer(cut); } constructor() ERC721A("Capsule Machine NFT", "CMNFT", 20, "ipfs://QmNsrxoVdgkBbHH7qemsoHYvoxgW8wQ2KTwE5G1LdLXEJW/") {} function mint(uint256 quantity) external payable { _safeMint(msg.sender, quantity); } }
// 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/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, Ownable { using Address for address; using Strings for uint256; using SafeMath for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } // Token name string private _name; // Token symbol string private _symbol; uint256 private tokenPrice = 50000000000000000; //0.05 ETH uint256 private constant maxNfts = 5025; uint256 internal immutable maxBatchSize; uint256 private currentIndex = 0; bool public paused = true; bool public revealed = false; bool public uriUnlocked = true; string private _baseURIPrefix; string public notRevealedUri; string public PROVENANCE = ""; bool public provenanceHashUnlocked = true; // 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. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, string memory _initNotRevealedUri ) { require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; setNotRevealedURI(_initNotRevealedUri); currentIndex++; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view returns (uint256) { return currentIndex - 1; } function setBaseURI(string memory baseURIPrefix) public onlyOwner { require(uriUnlocked, "The token URI has been locked forever."); _baseURIPrefix = baseURIPrefix; } function _baseURI() internal view virtual returns (string memory) { return _baseURIPrefix; } function lockURI() public onlyOwner { uriUnlocked = false; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), "ERC721A: number minted query for the zero address"); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner 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("ERC721A: unable to determine the owner of token"); } /** * @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), "ERC721Metadata: URI query for nonexistent token"); if (revealed == false) { return string(abi.encodePacked(notRevealedUri, tokenId.toString())); } string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } //only owner function reveal() public onlyOwner { revealed = true; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } /* * Set provenance once it's calculated */ function setProvenanceHash(string memory provenanceHash) public onlyOwner { require(provenanceHashUnlocked, "The provenance hash has been locked forever."); PROVENANCE = provenanceHash; } function lockProvenanceHash() public onlyOwner { provenanceHashUnlocked = false; } function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: 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), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: 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), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ 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: * * - `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), "ERC721A: mint to the zero address"); require(!paused, "ERC721A: Minting currently disabled"); // 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), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); require(currentIndex.add(quantity) <= maxNfts, "The number you're trying to buy exceeds the remaining supply!"); require(tokenPrice.mul(quantity) <= msg.value, "You didn't include enough ETH with your transaction"); _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), "ERC721A: transfer to non ERC721Receiver implementer" ); 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, "ERC721A: transfer caller is not owner nor approved"); require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner"); require(to != address(0), "ERC721A: transfer to the zero address"); _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); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > currentIndex - 1) { endIndex = currentIndex - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership(ownership.addr, ownership.startTimestamp); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @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("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { 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 {} function pause(bool _state) public onlyOwner { paused = _state; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenanceHashUnlocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURIPrefix","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriUnlocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a060405266b1a2bc2ec5000060035560006004556001600560006101000a81548160ff0219169083151502179055506000600560016101000a81548160ff0219169083151502179055506001600560026101000a81548160ff02191690831515021790555060405180602001604052806000815250600890805190602001906200008c929190620003b8565b506001600960006101000a81548160ff0219169083151502179055506000600e55348015620000ba57600080fd5b506040518060400160405280601381526020017f43617073756c65204d616368696e65204e4654000000000000000000000000008152506040518060400160405280600581526020017f434d4e46540000000000000000000000000000000000000000000000000000008152506014604051806060016040528060368152602001620051416036913962000163620001576200021860201b60201c565b6200022060201b60201c565b60008211620001a9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001a09062000512565b60405180910390fd5b8360019080519060200190620001c1929190620003b8565b508260029080519060200190620001da929190620003b8565b508160808181525050620001f481620002e460201b60201c565b600460008154809291906200020990620005a7565b91905055505050505062000653565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002f46200021860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200031a6200038f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000373576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036a9062000534565b60405180910390fd5b80600790805190602001906200038b929190620003b8565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003c69062000571565b90600052602060002090601f016020900481019282620003ea576000855562000436565b82601f106200040557805160ff191683800117855562000436565b8280016001018555821562000436579182015b828111156200043557825182559160200191906001019062000418565b5b50905062000445919062000449565b5090565b5b80821115620004645760008160009055506001016200044a565b5090565b60006200047760278362000556565b91507f455243373231413a206d61782062617463682073697a65206d7573742062652060008301527f6e6f6e7a65726f000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000620004df60208362000556565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600060208201905081810360008301526200052d8162000468565b9050919050565b600060208201905081810360008301526200054f81620004d0565b9050919050565b600082825260208201905092915050565b6000819050919050565b600060028204905060018216806200058a57607f821691505b60208210811415620005a157620005a062000624565b5b50919050565b6000620005b48262000567565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620005ea57620005e9620005f5565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b608051614ac46200067d600039600081816126a9015281816126d20152612e2e0152614ac46000f3fe6080604052600436106101ee5760003560e01c80636352211e1161010d578063a22cb465116100a0578063d7224ba01161006f578063d7224ba01461067e578063e072e16d146106a9578063e985e9c5146106d4578063f2c4ce1e14610711578063f2fde38b1461073a576101ee565b8063a22cb465146105d8578063a475b5dd14610601578063b88d4fde14610618578063c87b56dd14610641576101ee565b80638da5cb5b116100dc5780638da5cb5b1461054f5780638e021c061461057a57806395d89b4114610591578063a0712d68146105bc576101ee565b80636352211e146104935780636373a6b1146104d057806370a08231146104fb578063715018a614610538576101ee565b806318160ddd1161018557806342842e0e1161015457806342842e0e146103eb578063518302271461041457806355f804b31461043f5780635c975abb14610468576101ee565b806318160ddd1461035557806323b872dd146103805780632cb020e5146103a95780633ccfd60b146103d4576101ee565b8063081812fc116101c1578063081812fc1461029b578063081c8c44146102d8578063095ea7b314610303578063109695231461032c576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde0314610259578063077021c414610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613721565b610763565b604051610227919061422d565b60405180910390f35b34801561023c57600080fd5b50610257600480360381019061025291906136f8565b610845565b005b34801561026557600080fd5b5061026e6108de565b60405161027b9190614248565b60405180910390f35b34801561029057600080fd5b50610299610970565b005b3480156102a757600080fd5b506102c260048036038101906102bd91906137b4565b610a09565b6040516102cf91906141c6565b60405180910390f35b3480156102e457600080fd5b506102ed610a8e565b6040516102fa9190614248565b60405180910390f35b34801561030f57600080fd5b5061032a600480360381019061032591906136bc565b610b1c565b005b34801561033857600080fd5b50610353600480360381019061034e9190613773565b610c35565b005b34801561036157600080fd5b5061036a610d1a565b604051610377919061452a565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a291906135b6565b610d30565b005b3480156103b557600080fd5b506103be610d40565b6040516103cb919061422d565b60405180910390f35b3480156103e057600080fd5b506103e9610d53565b005b3480156103f757600080fd5b50610412600480360381019061040d91906135b6565b61150c565b005b34801561042057600080fd5b5061042961152c565b604051610436919061422d565b60405180910390f35b34801561044b57600080fd5b5061046660048036038101906104619190613773565b61153f565b005b34801561047457600080fd5b5061047d611624565b60405161048a919061422d565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b591906137b4565b611637565b6040516104c791906141c6565b60405180910390f35b3480156104dc57600080fd5b506104e561164d565b6040516104f29190614248565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d9190613551565b6116db565b60405161052f919061452a565b60405180910390f35b34801561054457600080fd5b5061054d6117c4565b005b34801561055b57600080fd5b5061056461184c565b60405161057191906141c6565b60405180910390f35b34801561058657600080fd5b5061058f611875565b005b34801561059d57600080fd5b506105a661190e565b6040516105b39190614248565b60405180910390f35b6105d660048036038101906105d191906137b4565b6119a0565b005b3480156105e457600080fd5b506105ff60048036038101906105fa9190613680565b6119ad565b005b34801561060d57600080fd5b50610616611b2e565b005b34801561062457600080fd5b5061063f600480360381019061063a9190613605565b611bc7565b005b34801561064d57600080fd5b50610668600480360381019061066391906137b4565b611c23565b6040516106759190614248565b60405180910390f35b34801561068a57600080fd5b50610693611d19565b6040516106a0919061452a565b60405180910390f35b3480156106b557600080fd5b506106be611d1f565b6040516106cb919061422d565b60405180910390f35b3480156106e057600080fd5b506106fb60048036038101906106f6919061357a565b611d32565b604051610708919061422d565b60405180910390f35b34801561071d57600080fd5b5061073860048036038101906107339190613773565b611dc6565b005b34801561074657600080fd5b50610761600480360381019061075c9190613551565b611e5c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083e575061083d82611f54565b5b9050919050565b61084d611fbe565b73ffffffffffffffffffffffffffffffffffffffff1661086b61184c565b73ffffffffffffffffffffffffffffffffffffffff16146108c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b8906143ca565b60405180910390fd5b80600560006101000a81548160ff02191690831515021790555050565b6060600180546108ed906148b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610919906148b9565b80156109665780601f1061093b57610100808354040283529160200191610966565b820191906000526020600020905b81548152906001019060200180831161094957829003601f168201915b5050505050905090565b610978611fbe565b73ffffffffffffffffffffffffffffffffffffffff1661099661184c565b73ffffffffffffffffffffffffffffffffffffffff16146109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e3906143ca565b60405180910390fd5b6000600960006101000a81548160ff021916908315150217905550565b6000610a1482611fc6565b610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a906144ea565b60405180910390fd5b600c600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60078054610a9b906148b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac7906148b9565b8015610b145780601f10610ae957610100808354040283529160200191610b14565b820191906000526020600020905b815481529060010190602001808311610af757829003601f168201915b505050505081565b6000610b2782611637565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f9061444a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bb7611fbe565b73ffffffffffffffffffffffffffffffffffffffff161480610be65750610be581610be0611fbe565b611d32565b5b610c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1c9061434a565b60405180910390fd5b610c30838383611fd4565b505050565b610c3d611fbe565b73ffffffffffffffffffffffffffffffffffffffff16610c5b61184c565b73ffffffffffffffffffffffffffffffffffffffff1614610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca8906143ca565b60405180910390fd5b600960009054906101000a900460ff16610d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf79061430a565b60405180910390fd5b8060089080519060200190610d1692919061333b565b5050565b60006001600454610d2b9190614789565b905090565b610d3b838383612086565b505050565b600960009054906101000a900460ff1681565b610d5b611fbe565b73ffffffffffffffffffffffffffffffffffffffff16610d7961184c565b73ffffffffffffffffffffffffffffffffffffffff1614610dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc6906143ca565b60405180910390fd5b60004790506000610dea60148361263f90919063ffffffff16565b90507328a3182325a294b2f9eb021e70a5f11e9437c4c573ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e46573d6000803e3d6000fd5b50739438d54dc1eeab1b2e1bdad6f1a46a80abad82dd73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ea1573d6000803e3d6000fd5b5073f15b41e2ceecff60fd3ddeed994475f17579a41373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610efc573d6000803e3d6000fd5b507343ee0fa4c93cd778c09a108973731ba148d46b1173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f57573d6000803e3d6000fd5b50737b33e65a682cc5c106b8b859bd6703e1548d65d873ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610fb2573d6000803e3d6000fd5b507315109f7f8ac81710daec2bc9296c4bab677b682073ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561100d573d6000803e3d6000fd5b5073ffab16457766c76d264cacda07911ceaab021d8873ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611068573d6000803e3d6000fd5b5073b185cf7fd38d46387e760bdb66357d8b050839ea73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156110c3573d6000803e3d6000fd5b50734dcea2fb6eed9b45223cc214232b8a7db55394d873ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561111e573d6000803e3d6000fd5b5073bf3343c0cd08752de20fc846756ebc26a3f2d1f173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611179573d6000803e3d6000fd5b50735b183897c25e738daff8dcd7e1aa1e050161364073ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156111d4573d6000803e3d6000fd5b5073c0a2c04f88c51ff086d1162b9c579d7bd6e8625573ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561122f573d6000803e3d6000fd5b50733f52b97ea2105307005b51532356f02a1c6095c873ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561128a573d6000803e3d6000fd5b5073aa86bb428daa756ef618373c0415735f5621d62873ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112e5573d6000803e3d6000fd5b50733c8fbad346d66b0d58dddfb16ad94e515ea09bcc73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611340573d6000803e3d6000fd5b507352f11485954ffcf3504846ad7b8e03ce8941b92e73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561139b573d6000803e3d6000fd5b5073cd9a76966c158739a3c4407dfdb2f7b93b156c3473ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156113f6573d6000803e3d6000fd5b507360d261917a07746cadf5ad57367f394f8dd4bd0773ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611451573d6000803e3d6000fd5b5073b3f746d20406314130917e4be87069667840a69b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156114ac573d6000803e3d6000fd5b5073f68c43dadb156ac9c9a2c4052a5b3c3cb2e628a873ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611507573d6000803e3d6000fd5b505050565b61152783838360405180602001604052806000815250611bc7565b505050565b600560019054906101000a900460ff1681565b611547611fbe565b73ffffffffffffffffffffffffffffffffffffffff1661156561184c565b73ffffffffffffffffffffffffffffffffffffffff16146115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b2906143ca565b60405180910390fd5b600560029054906101000a900460ff1661160a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611601906142ca565b60405180910390fd5b806006908051906020019061162092919061333b565b5050565b600560009054906101000a900460ff1681565b600061164282612655565b600001519050919050565b6008805461165a906148b9565b80601f0160208091040260200160405190810160405280929190818152602001828054611686906148b9565b80156116d35780601f106116a8576101008083540402835291602001916116d3565b820191906000526020600020905b8154815290600101906020018083116116b657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561174c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117439061438a565b60405180910390fd5b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6117cc611fbe565b73ffffffffffffffffffffffffffffffffffffffff166117ea61184c565b73ffffffffffffffffffffffffffffffffffffffff1614611840576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611837906143ca565b60405180910390fd5b61184a6000612858565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61187d611fbe565b73ffffffffffffffffffffffffffffffffffffffff1661189b61184c565b73ffffffffffffffffffffffffffffffffffffffff16146118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e8906143ca565b60405180910390fd5b6000600560026101000a81548160ff021916908315150217905550565b60606002805461191d906148b9565b80601f0160208091040260200160405190810160405280929190818152602001828054611949906148b9565b80156119965780601f1061196b57610100808354040283529160200191611996565b820191906000526020600020905b81548152906001019060200180831161197957829003601f168201915b5050505050905090565b6119aa338261291c565b50565b6119b5611fbe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1a9061440a565b60405180910390fd5b80600d6000611a30611fbe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611add611fbe565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b22919061422d565b60405180910390a35050565b611b36611fbe565b73ffffffffffffffffffffffffffffffffffffffff16611b5461184c565b73ffffffffffffffffffffffffffffffffffffffff1614611baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba1906143ca565b60405180910390fd5b6001600560016101000a81548160ff021916908315150217905550565b611bd2848484612086565b611bde8484848461293a565b611c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c149061446a565b60405180910390fd5b50505050565b6060611c2e82611fc6565b611c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c64906143ea565b60405180910390fd5b60001515600560019054906101000a900460ff1615151415611cbb576007611c9483612ad1565b604051602001611ca59291906141a2565b6040516020818303038152906040529050611d14565b6000611cc5612c7e565b90506000815111611ce55760405180602001604052806000815250611d10565b80611cef84612ad1565b604051602001611d0092919061417e565b6040516020818303038152906040525b9150505b919050565b600e5481565b600560029054906101000a900460ff1681565b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dce611fbe565b73ffffffffffffffffffffffffffffffffffffffff16611dec61184c565b73ffffffffffffffffffffffffffffffffffffffff1614611e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e39906143ca565b60405180910390fd5b8060079080519060200190611e5892919061333b565b5050565b611e64611fbe565b73ffffffffffffffffffffffffffffffffffffffff16611e8261184c565b73ffffffffffffffffffffffffffffffffffffffff1614611ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecf906143ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3f9061428a565b60405180910390fd5b611f5181612858565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600060045482109050919050565b82600c600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061209182612655565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166120b8611fbe565b73ffffffffffffffffffffffffffffffffffffffff16148061211457506120dd611fbe565b73ffffffffffffffffffffffffffffffffffffffff166120fc84610a09565b73ffffffffffffffffffffffffffffffffffffffff16145b80612130575061212f826000015161212a611fbe565b611d32565b5b905080612172576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121699061442a565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146121e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121db906143aa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224b906142ea565b60405180910390fd5b6122618585856001612d10565b6122716000848460000151611fd4565b6001600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166122df9190614755565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612383919061462e565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff16815250600a600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846124899190614674565b9050600073ffffffffffffffffffffffffffffffffffffffff16600a600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125cf576124ff81611fc6565b156125ce576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff16815250600a600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126378686866001612d16565b505050505050565b6000818361264d91906146ca565b905092915050565b61265d6133c1565b61266682611fc6565b6126a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269c906142aa565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106127095760017f0000000000000000000000000000000000000000000000000000000000000000846126fc9190614789565b6127069190614674565b90505b60008390505b818110612817576000600a60008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461280357809350505050612853565b50808061280f9061488f565b91505061270f565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284a906144ca565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612936828260405180602001604052806000815250612d1c565b5050565b600061295b8473ffffffffffffffffffffffffffffffffffffffff166132fc565b15612ac4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612984611fbe565b8786866040518563ffffffff1660e01b81526004016129a694939291906141e1565b602060405180830381600087803b1580156129c057600080fd5b505af19250505080156129f157506040513d601f19601f820116820180604052508101906129ee919061374a565b60015b612a74573d8060008114612a21576040519150601f19603f3d011682016040523d82523d6000602084013e612a26565b606091505b50600081511415612a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a639061446a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ac9565b600190505b949350505050565b60606000821415612b19576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c79565b600082905060005b60008214612b4b578080612b34906148eb565b915050600a82612b4491906146ca565b9150612b21565b60008167ffffffffffffffff811115612b8d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612bbf5781602001600182028036833780820191505090505b5090505b60008514612c7257600182612bd89190614789565b9150600a85612be79190614934565b6030612bf39190614674565b60f81b818381518110612c2f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c6b91906146ca565b9450612bc3565b8093505050505b919050565b606060068054612c8d906148b9565b80601f0160208091040260200160405190810160405280929190818152602001828054612cb9906148b9565b8015612d065780601f10612cdb57610100808354040283529160200191612d06565b820191906000526020600020905b815481529060010190602001808311612ce957829003601f168201915b5050505050905090565b50505050565b50505050565b60006004549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8a906144aa565b60405180910390fd5b600560009054906101000a900460ff1615612de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dda9061432a565b60405180910390fd5b612dec81611fc6565b15612e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e239061448a565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e869061450a565b60405180910390fd5b6113a1612ea78460045461330f90919063ffffffff16565b1115612ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612edf9061436a565b60405180910390fd5b34612efe8460035461332590919063ffffffff16565b1115612f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f369061426a565b60405180910390fd5b612f4c6000858386612d10565b6000600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151613049919061462e565b6fffffffffffffffffffffffffffffffff168152602001858360200151613070919061462e565b6fffffffffffffffffffffffffffffffff16815250600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff16815250600a600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156132df57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461327f600088848861293a565b6132be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b59061446a565b60405180910390fd5b81806132c9906148eb565b92505080806132d7906148eb565b91505061320e565b50806004819055506132f46000878588612d16565b505050505050565b600080823b905060008111915050919050565b6000818361331d9190614674565b905092915050565b6000818361333391906146fb565b905092915050565b828054613347906148b9565b90600052602060002090601f01602090048101928261336957600085556133b0565b82601f1061338257805160ff19168380011785556133b0565b828001600101855582156133b0579182015b828111156133af578251825591602001919060010190613394565b5b5090506133bd91906133fb565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156134145760008160009055506001016133fc565b5090565b600061342b61342684614576565b614545565b90508281526020810184848401111561344357600080fd5b61344e84828561484d565b509392505050565b6000613469613464846145a6565b614545565b90508281526020810184848401111561348157600080fd5b61348c84828561484d565b509392505050565b6000813590506134a381614a32565b92915050565b6000813590506134b881614a49565b92915050565b6000813590506134cd81614a60565b92915050565b6000815190506134e281614a60565b92915050565b600082601f8301126134f957600080fd5b8135613509848260208601613418565b91505092915050565b600082601f83011261352357600080fd5b8135613533848260208601613456565b91505092915050565b60008135905061354b81614a77565b92915050565b60006020828403121561356357600080fd5b600061357184828501613494565b91505092915050565b6000806040838503121561358d57600080fd5b600061359b85828601613494565b92505060206135ac85828601613494565b9150509250929050565b6000806000606084860312156135cb57600080fd5b60006135d986828701613494565b93505060206135ea86828701613494565b92505060406135fb8682870161353c565b9150509250925092565b6000806000806080858703121561361b57600080fd5b600061362987828801613494565b945050602061363a87828801613494565b935050604061364b8782880161353c565b925050606085013567ffffffffffffffff81111561366857600080fd5b613674878288016134e8565b91505092959194509250565b6000806040838503121561369357600080fd5b60006136a185828601613494565b92505060206136b2858286016134a9565b9150509250929050565b600080604083850312156136cf57600080fd5b60006136dd85828601613494565b92505060206136ee8582860161353c565b9150509250929050565b60006020828403121561370a57600080fd5b6000613718848285016134a9565b91505092915050565b60006020828403121561373357600080fd5b6000613741848285016134be565b91505092915050565b60006020828403121561375c57600080fd5b600061376a848285016134d3565b91505092915050565b60006020828403121561378557600080fd5b600082013567ffffffffffffffff81111561379f57600080fd5b6137ab84828501613512565b91505092915050565b6000602082840312156137c657600080fd5b60006137d48482850161353c565b91505092915050565b6137e6816147bd565b82525050565b6137f5816147cf565b82525050565b6000613806826145eb565b6138108185614601565b935061382081856020860161485c565b61382981614a21565b840191505092915050565b600061383f826145f6565b6138498185614612565b935061385981856020860161485c565b61386281614a21565b840191505092915050565b6000613878826145f6565b6138828185614623565b935061389281856020860161485c565b80840191505092915050565b600081546138ab816148b9565b6138b58186614623565b945060018216600081146138d057600181146138e157613914565b60ff19831686528186019350613914565b6138ea856145d6565b60005b8381101561390c578154818901526001820191506020810190506138ed565b838801955050505b50505092915050565b600061392a603383614612565b91507f596f75206469646e277420696e636c75646520656e6f7567682045544820776960008301527f746820796f7572207472616e73616374696f6e000000000000000000000000006020830152604082019050919050565b6000613990602683614612565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139f6602a83614612565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a5c602683614612565b91507f54686520746f6b656e2055524920686173206265656e206c6f636b656420666f60008301527f72657665722e00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ac2602583614612565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b28602c83614612565b91507f5468652070726f76656e616e6365206861736820686173206265656e206c6f6360008301527f6b656420666f72657665722e00000000000000000000000000000000000000006020830152604082019050919050565b6000613b8e602383614612565b91507f455243373231413a204d696e74696e672063757272656e746c7920646973616260008301527f6c656400000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bf4603983614612565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b6000613c5a603d83614612565b91507f546865206e756d62657220796f7527726520747279696e6720746f206275792060008301527f65786365656473207468652072656d61696e696e6720737570706c79210000006020830152604082019050919050565b6000613cc0602b83614612565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b6000613d26602683614612565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d8c602083614612565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613dcc602f83614612565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613e32601a83614612565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b6000613e72603283614612565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b6000613ed8602283614612565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f3e603383614612565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b6000613fa4601d83614612565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b6000613fe4602183614612565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061404a602f83614612565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006140b0602d83614612565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b6000614116602283614612565b91507f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008301527f67680000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61417881614843565b82525050565b600061418a828561386d565b9150614196828461386d565b91508190509392505050565b60006141ae828561389e565b91506141ba828461386d565b91508190509392505050565b60006020820190506141db60008301846137dd565b92915050565b60006080820190506141f660008301876137dd565b61420360208301866137dd565b614210604083018561416f565b818103606083015261422281846137fb565b905095945050505050565b600060208201905061424260008301846137ec565b92915050565b600060208201905081810360008301526142628184613834565b905092915050565b600060208201905081810360008301526142838161391d565b9050919050565b600060208201905081810360008301526142a381613983565b9050919050565b600060208201905081810360008301526142c3816139e9565b9050919050565b600060208201905081810360008301526142e381613a4f565b9050919050565b6000602082019050818103600083015261430381613ab5565b9050919050565b6000602082019050818103600083015261432381613b1b565b9050919050565b6000602082019050818103600083015261434381613b81565b9050919050565b6000602082019050818103600083015261436381613be7565b9050919050565b6000602082019050818103600083015261438381613c4d565b9050919050565b600060208201905081810360008301526143a381613cb3565b9050919050565b600060208201905081810360008301526143c381613d19565b9050919050565b600060208201905081810360008301526143e381613d7f565b9050919050565b6000602082019050818103600083015261440381613dbf565b9050919050565b6000602082019050818103600083015261442381613e25565b9050919050565b6000602082019050818103600083015261444381613e65565b9050919050565b6000602082019050818103600083015261446381613ecb565b9050919050565b6000602082019050818103600083015261448381613f31565b9050919050565b600060208201905081810360008301526144a381613f97565b9050919050565b600060208201905081810360008301526144c381613fd7565b9050919050565b600060208201905081810360008301526144e38161403d565b9050919050565b60006020820190508181036000830152614503816140a3565b9050919050565b6000602082019050818103600083015261452381614109565b9050919050565b600060208201905061453f600083018461416f565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561456c5761456b6149f2565b5b8060405250919050565b600067ffffffffffffffff821115614591576145906149f2565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156145c1576145c06149f2565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061463982614807565b915061464483614807565b9250826fffffffffffffffffffffffffffffffff0382111561466957614668614965565b5b828201905092915050565b600061467f82614843565b915061468a83614843565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146bf576146be614965565b5b828201905092915050565b60006146d582614843565b91506146e083614843565b9250826146f0576146ef614994565b5b828204905092915050565b600061470682614843565b915061471183614843565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561474a57614749614965565b5b828202905092915050565b600061476082614807565b915061476b83614807565b92508282101561477e5761477d614965565b5b828203905092915050565b600061479482614843565b915061479f83614843565b9250828210156147b2576147b1614965565b5b828203905092915050565b60006147c882614823565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561487a57808201518184015260208101905061485f565b83811115614889576000848401525b50505050565b600061489a82614843565b915060008214156148ae576148ad614965565b5b600182039050919050565b600060028204905060018216806148d157607f821691505b602082108114156148e5576148e46149c3565b5b50919050565b60006148f682614843565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561492957614928614965565b5b600182019050919050565b600061493f82614843565b915061494a83614843565b92508261495a57614959614994565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614a3b816147bd565b8114614a4657600080fd5b50565b614a52816147cf565b8114614a5d57600080fd5b50565b614a69816147db565b8114614a7457600080fd5b50565b614a8081614843565b8114614a8b57600080fd5b5056fea26469706673582212205fb799ab55e5d4b371dd3d838446c034e443f7cd4c5d538bbab66d3042aa1c2164736f6c63430008000033697066733a2f2f516d4e7372786f5664676b426248483771656d736f4859766f786757387751324b5477453547314c644c58454a572f
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c80636352211e1161010d578063a22cb465116100a0578063d7224ba01161006f578063d7224ba01461067e578063e072e16d146106a9578063e985e9c5146106d4578063f2c4ce1e14610711578063f2fde38b1461073a576101ee565b8063a22cb465146105d8578063a475b5dd14610601578063b88d4fde14610618578063c87b56dd14610641576101ee565b80638da5cb5b116100dc5780638da5cb5b1461054f5780638e021c061461057a57806395d89b4114610591578063a0712d68146105bc576101ee565b80636352211e146104935780636373a6b1146104d057806370a08231146104fb578063715018a614610538576101ee565b806318160ddd1161018557806342842e0e1161015457806342842e0e146103eb578063518302271461041457806355f804b31461043f5780635c975abb14610468576101ee565b806318160ddd1461035557806323b872dd146103805780632cb020e5146103a95780633ccfd60b146103d4576101ee565b8063081812fc116101c1578063081812fc1461029b578063081c8c44146102d8578063095ea7b314610303578063109695231461032c576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde0314610259578063077021c414610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613721565b610763565b604051610227919061422d565b60405180910390f35b34801561023c57600080fd5b50610257600480360381019061025291906136f8565b610845565b005b34801561026557600080fd5b5061026e6108de565b60405161027b9190614248565b60405180910390f35b34801561029057600080fd5b50610299610970565b005b3480156102a757600080fd5b506102c260048036038101906102bd91906137b4565b610a09565b6040516102cf91906141c6565b60405180910390f35b3480156102e457600080fd5b506102ed610a8e565b6040516102fa9190614248565b60405180910390f35b34801561030f57600080fd5b5061032a600480360381019061032591906136bc565b610b1c565b005b34801561033857600080fd5b50610353600480360381019061034e9190613773565b610c35565b005b34801561036157600080fd5b5061036a610d1a565b604051610377919061452a565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a291906135b6565b610d30565b005b3480156103b557600080fd5b506103be610d40565b6040516103cb919061422d565b60405180910390f35b3480156103e057600080fd5b506103e9610d53565b005b3480156103f757600080fd5b50610412600480360381019061040d91906135b6565b61150c565b005b34801561042057600080fd5b5061042961152c565b604051610436919061422d565b60405180910390f35b34801561044b57600080fd5b5061046660048036038101906104619190613773565b61153f565b005b34801561047457600080fd5b5061047d611624565b60405161048a919061422d565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b591906137b4565b611637565b6040516104c791906141c6565b60405180910390f35b3480156104dc57600080fd5b506104e561164d565b6040516104f29190614248565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d9190613551565b6116db565b60405161052f919061452a565b60405180910390f35b34801561054457600080fd5b5061054d6117c4565b005b34801561055b57600080fd5b5061056461184c565b60405161057191906141c6565b60405180910390f35b34801561058657600080fd5b5061058f611875565b005b34801561059d57600080fd5b506105a661190e565b6040516105b39190614248565b60405180910390f35b6105d660048036038101906105d191906137b4565b6119a0565b005b3480156105e457600080fd5b506105ff60048036038101906105fa9190613680565b6119ad565b005b34801561060d57600080fd5b50610616611b2e565b005b34801561062457600080fd5b5061063f600480360381019061063a9190613605565b611bc7565b005b34801561064d57600080fd5b50610668600480360381019061066391906137b4565b611c23565b6040516106759190614248565b60405180910390f35b34801561068a57600080fd5b50610693611d19565b6040516106a0919061452a565b60405180910390f35b3480156106b557600080fd5b506106be611d1f565b6040516106cb919061422d565b60405180910390f35b3480156106e057600080fd5b506106fb60048036038101906106f6919061357a565b611d32565b604051610708919061422d565b60405180910390f35b34801561071d57600080fd5b5061073860048036038101906107339190613773565b611dc6565b005b34801561074657600080fd5b50610761600480360381019061075c9190613551565b611e5c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083e575061083d82611f54565b5b9050919050565b61084d611fbe565b73ffffffffffffffffffffffffffffffffffffffff1661086b61184c565b73ffffffffffffffffffffffffffffffffffffffff16146108c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b8906143ca565b60405180910390fd5b80600560006101000a81548160ff02191690831515021790555050565b6060600180546108ed906148b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610919906148b9565b80156109665780601f1061093b57610100808354040283529160200191610966565b820191906000526020600020905b81548152906001019060200180831161094957829003601f168201915b5050505050905090565b610978611fbe565b73ffffffffffffffffffffffffffffffffffffffff1661099661184c565b73ffffffffffffffffffffffffffffffffffffffff16146109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e3906143ca565b60405180910390fd5b6000600960006101000a81548160ff021916908315150217905550565b6000610a1482611fc6565b610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a906144ea565b60405180910390fd5b600c600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60078054610a9b906148b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac7906148b9565b8015610b145780601f10610ae957610100808354040283529160200191610b14565b820191906000526020600020905b815481529060010190602001808311610af757829003601f168201915b505050505081565b6000610b2782611637565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f9061444a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bb7611fbe565b73ffffffffffffffffffffffffffffffffffffffff161480610be65750610be581610be0611fbe565b611d32565b5b610c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1c9061434a565b60405180910390fd5b610c30838383611fd4565b505050565b610c3d611fbe565b73ffffffffffffffffffffffffffffffffffffffff16610c5b61184c565b73ffffffffffffffffffffffffffffffffffffffff1614610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca8906143ca565b60405180910390fd5b600960009054906101000a900460ff16610d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf79061430a565b60405180910390fd5b8060089080519060200190610d1692919061333b565b5050565b60006001600454610d2b9190614789565b905090565b610d3b838383612086565b505050565b600960009054906101000a900460ff1681565b610d5b611fbe565b73ffffffffffffffffffffffffffffffffffffffff16610d7961184c565b73ffffffffffffffffffffffffffffffffffffffff1614610dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc6906143ca565b60405180910390fd5b60004790506000610dea60148361263f90919063ffffffff16565b90507328a3182325a294b2f9eb021e70a5f11e9437c4c573ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e46573d6000803e3d6000fd5b50739438d54dc1eeab1b2e1bdad6f1a46a80abad82dd73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ea1573d6000803e3d6000fd5b5073f15b41e2ceecff60fd3ddeed994475f17579a41373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610efc573d6000803e3d6000fd5b507343ee0fa4c93cd778c09a108973731ba148d46b1173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f57573d6000803e3d6000fd5b50737b33e65a682cc5c106b8b859bd6703e1548d65d873ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610fb2573d6000803e3d6000fd5b507315109f7f8ac81710daec2bc9296c4bab677b682073ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561100d573d6000803e3d6000fd5b5073ffab16457766c76d264cacda07911ceaab021d8873ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611068573d6000803e3d6000fd5b5073b185cf7fd38d46387e760bdb66357d8b050839ea73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156110c3573d6000803e3d6000fd5b50734dcea2fb6eed9b45223cc214232b8a7db55394d873ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561111e573d6000803e3d6000fd5b5073bf3343c0cd08752de20fc846756ebc26a3f2d1f173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611179573d6000803e3d6000fd5b50735b183897c25e738daff8dcd7e1aa1e050161364073ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156111d4573d6000803e3d6000fd5b5073c0a2c04f88c51ff086d1162b9c579d7bd6e8625573ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561122f573d6000803e3d6000fd5b50733f52b97ea2105307005b51532356f02a1c6095c873ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561128a573d6000803e3d6000fd5b5073aa86bb428daa756ef618373c0415735f5621d62873ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112e5573d6000803e3d6000fd5b50733c8fbad346d66b0d58dddfb16ad94e515ea09bcc73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611340573d6000803e3d6000fd5b507352f11485954ffcf3504846ad7b8e03ce8941b92e73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561139b573d6000803e3d6000fd5b5073cd9a76966c158739a3c4407dfdb2f7b93b156c3473ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156113f6573d6000803e3d6000fd5b507360d261917a07746cadf5ad57367f394f8dd4bd0773ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611451573d6000803e3d6000fd5b5073b3f746d20406314130917e4be87069667840a69b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156114ac573d6000803e3d6000fd5b5073f68c43dadb156ac9c9a2c4052a5b3c3cb2e628a873ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611507573d6000803e3d6000fd5b505050565b61152783838360405180602001604052806000815250611bc7565b505050565b600560019054906101000a900460ff1681565b611547611fbe565b73ffffffffffffffffffffffffffffffffffffffff1661156561184c565b73ffffffffffffffffffffffffffffffffffffffff16146115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b2906143ca565b60405180910390fd5b600560029054906101000a900460ff1661160a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611601906142ca565b60405180910390fd5b806006908051906020019061162092919061333b565b5050565b600560009054906101000a900460ff1681565b600061164282612655565b600001519050919050565b6008805461165a906148b9565b80601f0160208091040260200160405190810160405280929190818152602001828054611686906148b9565b80156116d35780601f106116a8576101008083540402835291602001916116d3565b820191906000526020600020905b8154815290600101906020018083116116b657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561174c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117439061438a565b60405180910390fd5b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6117cc611fbe565b73ffffffffffffffffffffffffffffffffffffffff166117ea61184c565b73ffffffffffffffffffffffffffffffffffffffff1614611840576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611837906143ca565b60405180910390fd5b61184a6000612858565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61187d611fbe565b73ffffffffffffffffffffffffffffffffffffffff1661189b61184c565b73ffffffffffffffffffffffffffffffffffffffff16146118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e8906143ca565b60405180910390fd5b6000600560026101000a81548160ff021916908315150217905550565b60606002805461191d906148b9565b80601f0160208091040260200160405190810160405280929190818152602001828054611949906148b9565b80156119965780601f1061196b57610100808354040283529160200191611996565b820191906000526020600020905b81548152906001019060200180831161197957829003601f168201915b5050505050905090565b6119aa338261291c565b50565b6119b5611fbe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1a9061440a565b60405180910390fd5b80600d6000611a30611fbe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611add611fbe565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b22919061422d565b60405180910390a35050565b611b36611fbe565b73ffffffffffffffffffffffffffffffffffffffff16611b5461184c565b73ffffffffffffffffffffffffffffffffffffffff1614611baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba1906143ca565b60405180910390fd5b6001600560016101000a81548160ff021916908315150217905550565b611bd2848484612086565b611bde8484848461293a565b611c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c149061446a565b60405180910390fd5b50505050565b6060611c2e82611fc6565b611c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c64906143ea565b60405180910390fd5b60001515600560019054906101000a900460ff1615151415611cbb576007611c9483612ad1565b604051602001611ca59291906141a2565b6040516020818303038152906040529050611d14565b6000611cc5612c7e565b90506000815111611ce55760405180602001604052806000815250611d10565b80611cef84612ad1565b604051602001611d0092919061417e565b6040516020818303038152906040525b9150505b919050565b600e5481565b600560029054906101000a900460ff1681565b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dce611fbe565b73ffffffffffffffffffffffffffffffffffffffff16611dec61184c565b73ffffffffffffffffffffffffffffffffffffffff1614611e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e39906143ca565b60405180910390fd5b8060079080519060200190611e5892919061333b565b5050565b611e64611fbe565b73ffffffffffffffffffffffffffffffffffffffff16611e8261184c565b73ffffffffffffffffffffffffffffffffffffffff1614611ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecf906143ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3f9061428a565b60405180910390fd5b611f5181612858565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600060045482109050919050565b82600c600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061209182612655565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166120b8611fbe565b73ffffffffffffffffffffffffffffffffffffffff16148061211457506120dd611fbe565b73ffffffffffffffffffffffffffffffffffffffff166120fc84610a09565b73ffffffffffffffffffffffffffffffffffffffff16145b80612130575061212f826000015161212a611fbe565b611d32565b5b905080612172576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121699061442a565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146121e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121db906143aa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224b906142ea565b60405180910390fd5b6122618585856001612d10565b6122716000848460000151611fd4565b6001600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166122df9190614755565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612383919061462e565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff16815250600a600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846124899190614674565b9050600073ffffffffffffffffffffffffffffffffffffffff16600a600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125cf576124ff81611fc6565b156125ce576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff16815250600a600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126378686866001612d16565b505050505050565b6000818361264d91906146ca565b905092915050565b61265d6133c1565b61266682611fc6565b6126a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269c906142aa565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000001483106127095760017f0000000000000000000000000000000000000000000000000000000000000014846126fc9190614789565b6127069190614674565b90505b60008390505b818110612817576000600a60008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461280357809350505050612853565b50808061280f9061488f565b91505061270f565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284a906144ca565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612936828260405180602001604052806000815250612d1c565b5050565b600061295b8473ffffffffffffffffffffffffffffffffffffffff166132fc565b15612ac4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612984611fbe565b8786866040518563ffffffff1660e01b81526004016129a694939291906141e1565b602060405180830381600087803b1580156129c057600080fd5b505af19250505080156129f157506040513d601f19601f820116820180604052508101906129ee919061374a565b60015b612a74573d8060008114612a21576040519150601f19603f3d011682016040523d82523d6000602084013e612a26565b606091505b50600081511415612a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a639061446a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ac9565b600190505b949350505050565b60606000821415612b19576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c79565b600082905060005b60008214612b4b578080612b34906148eb565b915050600a82612b4491906146ca565b9150612b21565b60008167ffffffffffffffff811115612b8d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612bbf5781602001600182028036833780820191505090505b5090505b60008514612c7257600182612bd89190614789565b9150600a85612be79190614934565b6030612bf39190614674565b60f81b818381518110612c2f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c6b91906146ca565b9450612bc3565b8093505050505b919050565b606060068054612c8d906148b9565b80601f0160208091040260200160405190810160405280929190818152602001828054612cb9906148b9565b8015612d065780601f10612cdb57610100808354040283529160200191612d06565b820191906000526020600020905b815481529060010190602001808311612ce957829003601f168201915b5050505050905090565b50505050565b50505050565b60006004549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8a906144aa565b60405180910390fd5b600560009054906101000a900460ff1615612de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dda9061432a565b60405180910390fd5b612dec81611fc6565b15612e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e239061448a565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000014831115612e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e869061450a565b60405180910390fd5b6113a1612ea78460045461330f90919063ffffffff16565b1115612ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612edf9061436a565b60405180910390fd5b34612efe8460035461332590919063ffffffff16565b1115612f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f369061426a565b60405180910390fd5b612f4c6000858386612d10565b6000600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151613049919061462e565b6fffffffffffffffffffffffffffffffff168152602001858360200151613070919061462e565b6fffffffffffffffffffffffffffffffff16815250600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff16815250600a600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156132df57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461327f600088848861293a565b6132be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b59061446a565b60405180910390fd5b81806132c9906148eb565b92505080806132d7906148eb565b91505061320e565b50806004819055506132f46000878588612d16565b505050505050565b600080823b905060008111915050919050565b6000818361331d9190614674565b905092915050565b6000818361333391906146fb565b905092915050565b828054613347906148b9565b90600052602060002090601f01602090048101928261336957600085556133b0565b82601f1061338257805160ff19168380011785556133b0565b828001600101855582156133b0579182015b828111156133af578251825591602001919060010190613394565b5b5090506133bd91906133fb565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156134145760008160009055506001016133fc565b5090565b600061342b61342684614576565b614545565b90508281526020810184848401111561344357600080fd5b61344e84828561484d565b509392505050565b6000613469613464846145a6565b614545565b90508281526020810184848401111561348157600080fd5b61348c84828561484d565b509392505050565b6000813590506134a381614a32565b92915050565b6000813590506134b881614a49565b92915050565b6000813590506134cd81614a60565b92915050565b6000815190506134e281614a60565b92915050565b600082601f8301126134f957600080fd5b8135613509848260208601613418565b91505092915050565b600082601f83011261352357600080fd5b8135613533848260208601613456565b91505092915050565b60008135905061354b81614a77565b92915050565b60006020828403121561356357600080fd5b600061357184828501613494565b91505092915050565b6000806040838503121561358d57600080fd5b600061359b85828601613494565b92505060206135ac85828601613494565b9150509250929050565b6000806000606084860312156135cb57600080fd5b60006135d986828701613494565b93505060206135ea86828701613494565b92505060406135fb8682870161353c565b9150509250925092565b6000806000806080858703121561361b57600080fd5b600061362987828801613494565b945050602061363a87828801613494565b935050604061364b8782880161353c565b925050606085013567ffffffffffffffff81111561366857600080fd5b613674878288016134e8565b91505092959194509250565b6000806040838503121561369357600080fd5b60006136a185828601613494565b92505060206136b2858286016134a9565b9150509250929050565b600080604083850312156136cf57600080fd5b60006136dd85828601613494565b92505060206136ee8582860161353c565b9150509250929050565b60006020828403121561370a57600080fd5b6000613718848285016134a9565b91505092915050565b60006020828403121561373357600080fd5b6000613741848285016134be565b91505092915050565b60006020828403121561375c57600080fd5b600061376a848285016134d3565b91505092915050565b60006020828403121561378557600080fd5b600082013567ffffffffffffffff81111561379f57600080fd5b6137ab84828501613512565b91505092915050565b6000602082840312156137c657600080fd5b60006137d48482850161353c565b91505092915050565b6137e6816147bd565b82525050565b6137f5816147cf565b82525050565b6000613806826145eb565b6138108185614601565b935061382081856020860161485c565b61382981614a21565b840191505092915050565b600061383f826145f6565b6138498185614612565b935061385981856020860161485c565b61386281614a21565b840191505092915050565b6000613878826145f6565b6138828185614623565b935061389281856020860161485c565b80840191505092915050565b600081546138ab816148b9565b6138b58186614623565b945060018216600081146138d057600181146138e157613914565b60ff19831686528186019350613914565b6138ea856145d6565b60005b8381101561390c578154818901526001820191506020810190506138ed565b838801955050505b50505092915050565b600061392a603383614612565b91507f596f75206469646e277420696e636c75646520656e6f7567682045544820776960008301527f746820796f7572207472616e73616374696f6e000000000000000000000000006020830152604082019050919050565b6000613990602683614612565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139f6602a83614612565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a5c602683614612565b91507f54686520746f6b656e2055524920686173206265656e206c6f636b656420666f60008301527f72657665722e00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ac2602583614612565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b28602c83614612565b91507f5468652070726f76656e616e6365206861736820686173206265656e206c6f6360008301527f6b656420666f72657665722e00000000000000000000000000000000000000006020830152604082019050919050565b6000613b8e602383614612565b91507f455243373231413a204d696e74696e672063757272656e746c7920646973616260008301527f6c656400000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bf4603983614612565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b6000613c5a603d83614612565b91507f546865206e756d62657220796f7527726520747279696e6720746f206275792060008301527f65786365656473207468652072656d61696e696e6720737570706c79210000006020830152604082019050919050565b6000613cc0602b83614612565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b6000613d26602683614612565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d8c602083614612565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613dcc602f83614612565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613e32601a83614612565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b6000613e72603283614612565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b6000613ed8602283614612565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f3e603383614612565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b6000613fa4601d83614612565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b6000613fe4602183614612565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061404a602f83614612565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006140b0602d83614612565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b6000614116602283614612565b91507f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008301527f67680000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61417881614843565b82525050565b600061418a828561386d565b9150614196828461386d565b91508190509392505050565b60006141ae828561389e565b91506141ba828461386d565b91508190509392505050565b60006020820190506141db60008301846137dd565b92915050565b60006080820190506141f660008301876137dd565b61420360208301866137dd565b614210604083018561416f565b818103606083015261422281846137fb565b905095945050505050565b600060208201905061424260008301846137ec565b92915050565b600060208201905081810360008301526142628184613834565b905092915050565b600060208201905081810360008301526142838161391d565b9050919050565b600060208201905081810360008301526142a381613983565b9050919050565b600060208201905081810360008301526142c3816139e9565b9050919050565b600060208201905081810360008301526142e381613a4f565b9050919050565b6000602082019050818103600083015261430381613ab5565b9050919050565b6000602082019050818103600083015261432381613b1b565b9050919050565b6000602082019050818103600083015261434381613b81565b9050919050565b6000602082019050818103600083015261436381613be7565b9050919050565b6000602082019050818103600083015261438381613c4d565b9050919050565b600060208201905081810360008301526143a381613cb3565b9050919050565b600060208201905081810360008301526143c381613d19565b9050919050565b600060208201905081810360008301526143e381613d7f565b9050919050565b6000602082019050818103600083015261440381613dbf565b9050919050565b6000602082019050818103600083015261442381613e25565b9050919050565b6000602082019050818103600083015261444381613e65565b9050919050565b6000602082019050818103600083015261446381613ecb565b9050919050565b6000602082019050818103600083015261448381613f31565b9050919050565b600060208201905081810360008301526144a381613f97565b9050919050565b600060208201905081810360008301526144c381613fd7565b9050919050565b600060208201905081810360008301526144e38161403d565b9050919050565b60006020820190508181036000830152614503816140a3565b9050919050565b6000602082019050818103600083015261452381614109565b9050919050565b600060208201905061453f600083018461416f565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561456c5761456b6149f2565b5b8060405250919050565b600067ffffffffffffffff821115614591576145906149f2565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156145c1576145c06149f2565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061463982614807565b915061464483614807565b9250826fffffffffffffffffffffffffffffffff0382111561466957614668614965565b5b828201905092915050565b600061467f82614843565b915061468a83614843565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146bf576146be614965565b5b828201905092915050565b60006146d582614843565b91506146e083614843565b9250826146f0576146ef614994565b5b828204905092915050565b600061470682614843565b915061471183614843565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561474a57614749614965565b5b828202905092915050565b600061476082614807565b915061476b83614807565b92508282101561477e5761477d614965565b5b828203905092915050565b600061479482614843565b915061479f83614843565b9250828210156147b2576147b1614965565b5b828203905092915050565b60006147c882614823565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561487a57808201518184015260208101905061485f565b83811115614889576000848401525b50505050565b600061489a82614843565b915060008214156148ae576148ad614965565b5b600182039050919050565b600060028204905060018216806148d157607f821691505b602082108114156148e5576148e46149c3565b5b50919050565b60006148f682614843565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561492957614928614965565b5b600182019050919050565b600061493f82614843565b915061494a83614843565b92508261495a57614959614994565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614a3b816147bd565b8114614a4657600080fd5b50565b614a52816147cf565b8114614a5d57600080fd5b50565b614a69816147db565b8114614a7457600080fd5b50565b614a8081614843565b8114614a8b57600080fd5b5056fea26469706673582212205fb799ab55e5d4b371dd3d838446c034e443f7cd4c5d538bbab66d3042aa1c2164736f6c63430008000033
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.