ERC-721
Overview
Max Total Supply
4,000 RMT
Holders
347
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 RMTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
RichMamaContract
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; error ContractPaused(); contract RichMamaContract is ERC721A, ReentrancyGuard, Ownable, Pausable { using ECDSA for bytes32; using Strings for uint256; // var for token uri string public uriPrefix; string public uriSuffix = ".json"; // switch for sale active bool public isSaleActive = false; // 0.1 is for allowlist, the price needs to be revised // to the public price before the public uint256 public price = 0.1 ether; // also, the value of maxSupply is for allowlist, need to be change in public func uint256 public maxSupply = 1000; // used to validate authorized mint addresses address private signerAddress = 0x272422f38181F3887dA85A7C886619A83BA9feEE; constructor() ERC721A("RichMama Token", "RMT") { setUriPrefix("ipfs://QmP3PtUCDmKNZuAqLAQXSQ6HuzAFCjxYWma15RQ4nAPCVW/RichMama/TokenURI/"); } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "URI query for nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } // function for pause function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual override { super._beforeTokenTransfers(from, to, startTokenId, quantity); if (paused()) revert ContractPaused(); } // function for mint function setMintPrice(uint256 _newMintPrice) public onlyOwner { require(price != _newMintPrice, "NEW_STATE_IDENTICAL_TO_OLD_STATE"); price = _newMintPrice; } function setMaxSupply(uint256 _maxSupply) public onlyOwner { require(maxSupply != _maxSupply, "NEW_STATE_IDENTICAL_TO_OLD_STATE"); maxSupply = _maxSupply; } function setPublic() public onlyOwner { price = 0.2 ether; maxSupply = 4000; } function setSaleState(bool _saleActiveState) public onlyOwner { require(isSaleActive != _saleActiveState, "NEW_STATE_IDENTICAL_TO_OLD_STATE"); isSaleActive = _saleActiveState; } function setSignerAddress(address _signerAddress) external onlyOwner { require(_signerAddress != address(0)); signerAddress = _signerAddress; } function verifyAddressSigner(bytes32 _messageHash, bytes memory _signature) private view returns (bool) { return signerAddress == _messageHash.toEthSignedMessageHash().recover(_signature); } function hashMessage(address _sender, uint256 _maximumAllowedMints) private pure returns (bytes32) { return keccak256(abi.encode(_sender, _maximumAllowedMints)); } /** * @notice Allow for minting of tokens up to the maximum allowed for a given address. * The address of the sender and the number of mints allowed are hashed and signed * with the server's private key and verified here to prove allowlisting status. */ function mint( bytes32 _messageHash, bytes calldata _signature, uint256 _mintAmount, uint256 _maxAllowedMints ) external payable virtual nonReentrant { require(isSaleActive, "SALE_IS_NOT_ACTIVE"); require(_mintAmount > 0 && _mintAmount <= _maxAllowedMints, "INVALID_MINT_AMOUNT"); unchecked { // It has been checked that _mintAmount will not exceed maxMintAmountPerAddress. // First, numberMinted is less than maxMintAmountPerAddress, and totalSupply is less than maxSupply // So numberMinted(msg.sender) + _mintAmount is less than 2 * maxMintAmountPerAddress, // and totalSupply() + _mintAmount is less than 2 * maxSupply, neither number will overflow. require(_numberMinted(msg.sender) + _mintAmount <= _maxAllowedMints, "MINT_TOO_MUCH"); require(totalSupply() + _mintAmount <= maxSupply, "NOT_ENOUGH_MINTS_AVAILABLE"); } // Check signature require(hashMessage(msg.sender, _maxAllowedMints) == _messageHash, "MESSAGE_INVALID"); require(verifyAddressSigner(_messageHash, _signature), "SIGNATURE_VALIDATION_FAILED"); // Imprecise floats are scary, adding margin just to be safe to not fail txs require(msg.value >= ((price * _mintAmount) - 0.0001 ether) && msg.value <= ((price * _mintAmount) + 0.0001 ether), "INVALID_PRICE"); // ALL checks passed _safeMint(msg.sender, _mintAmount); } function gift(address _receiver, uint256 _mintAmount) external onlyOwner { unchecked { // Uncheck reason as same as mint require(totalSupply() + _mintAmount <= maxSupply, "MINT_TOO_LARGE"); } _safeMint(_receiver, _mintAmount); } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } /** * @notice Allow contract owner to withdraw to specific accounts */ function withdrawAll() external onlyOwner { uint256 balance = address(this).balance; require(payable(0xD6f04aA4797CEac65F7f0A744bb8897DfA663331).send(balance)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// 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 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ContractPaused","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"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":"_receiver","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_messageHash","type":"bytes32"},{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"_maxAllowedMints","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_saleActiveState","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signerAddress","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b908051906020019062000051929190620003b3565b506000600c60006101000a81548160ff02191690831515021790555067016345785d8a0000600d556103e8600e5573272422f38181f3887da85a7c886619a83ba9feee600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000e157600080fd5b506040518060400160405280600e81526020017f526963684d616d6120546f6b656e0000000000000000000000000000000000008152506040518060400160405280600381526020017f524d540000000000000000000000000000000000000000000000000000000000815250816002908051906020019062000166929190620003b3565b5080600390805190602001906200017f929190620003b3565b50620001906200020b60201b60201c565b60008190555050506001600881905550620001c0620001b46200021060201b60201c565b6200021860201b60201c565b6000600960146101000a81548160ff021916908315150217905550620002056040518060800160405280604881526020016200553f60489139620002de60201b60201c565b6200054b565b600090565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002ee6200021060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003146200038960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200036d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000364906200048a565b60405180910390fd5b80600a908051906020019062000385929190620003b3565b5050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003c190620004bd565b90600052602060002090601f016020900481019282620003e5576000855562000431565b82601f106200040057805160ff191683800117855562000431565b8280016001018555821562000431579182015b828111156200043057825182559160200191906001019062000413565b5b50905062000440919062000444565b5090565b5b808211156200045f57600081600090555060010162000445565b5090565b600062000472602083620004ac565b91506200047f8262000522565b602082019050919050565b60006020820190508181036000830152620004a58162000463565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004d657607f821691505b60208210811415620004ed57620004ec620004f3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614fe4806200055b6000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063a22cb465116100a0578063cbce4c971161006f578063cbce4c971461072e578063d5abeb0114610757578063e985e9c514610782578063f2fde38b146107bf578063f4a0a528146107e85761020f565b8063a22cb46514610676578063b88d4fde1461069f578063c4e37095146106c8578063c87b56dd146106f15761020f565b80638462151c116100e75780638462151c146105a1578063853828b6146105de5780638da5cb5b146105f557806395d89b4114610620578063a035b1fe1461064b5761020f565b8063715018a61461053357806377e563571461054a5780637ec4a659146105615780638456cb591461058a5761020f565b80633f4ba83a1161019b5780635c975abb1161016a5780635c975abb1461043a57806362b99ad4146104655780636352211e146104905780636f8b44b0146104cd57806370a08231146104f65761020f565b80633f4ba83a146103a457806342842e0e146103bb5780635503a0e8146103e4578063564566a81461040f5761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806316ba10e01461030b57806318160ddd1461033457806323b872dd1461035f57806331fa3eb9146103885761020f565b806301ffc9a714610214578063046dc1661461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613cd0565b610811565b604051610248919061436e565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190613a58565b6108f3565b005b34801561028657600080fd5b5061028f6109ed565b60405161029c91906143ce565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190613d73565b610a7f565b6040516102d991906142bc565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190613bdb565b610afb565b005b34801561031757600080fd5b50610332600480360381019061032d9190613d2a565b610c06565b005b34801561034057600080fd5b50610349610c9c565b6040516103569190614650565b60405180910390f35b34801561036b57600080fd5b5061038660048036038101906103819190613ac5565b610cb3565b005b6103a2600480360381019061039d9190613c48565b610cc3565b005b3480156103b057600080fd5b506103b9610fc6565b005b3480156103c757600080fd5b506103e260048036038101906103dd9190613ac5565b61104c565b005b3480156103f057600080fd5b506103f961106c565b60405161040691906143ce565b60405180910390f35b34801561041b57600080fd5b506104246110fa565b604051610431919061436e565b60405180910390f35b34801561044657600080fd5b5061044f61110d565b60405161045c919061436e565b60405180910390f35b34801561047157600080fd5b5061047a611124565b60405161048791906143ce565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b29190613d73565b6111b2565b6040516104c491906142bc565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef9190613d73565b6111c8565b005b34801561050257600080fd5b5061051d60048036038101906105189190613a58565b611293565b60405161052a9190614650565b60405180910390f35b34801561053f57600080fd5b50610548611363565b005b34801561055657600080fd5b5061055f6113eb565b005b34801561056d57600080fd5b5061058860048036038101906105839190613d2a565b611481565b005b34801561059657600080fd5b5061059f611517565b005b3480156105ad57600080fd5b506105c860048036038101906105c39190613a58565b61159d565b6040516105d5919061434c565b60405180910390f35b3480156105ea57600080fd5b506105f361179f565b005b34801561060157600080fd5b5061060a611875565b60405161061791906142bc565b60405180910390f35b34801561062c57600080fd5b5061063561189f565b60405161064291906143ce565b60405180910390f35b34801561065757600080fd5b50610660611931565b60405161066d9190614650565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190613b9b565b611937565b005b3480156106ab57600080fd5b506106c660048036038101906106c19190613b18565b611aaf565b005b3480156106d457600080fd5b506106ef60048036038101906106ea9190613c1b565b611b2b565b005b3480156106fd57600080fd5b5061071860048036038101906107139190613d73565b611c1a565b60405161072591906143ce565b60405180910390f35b34801561073a57600080fd5b5061075560048036038101906107509190613bdb565b611cc4565b005b34801561076357600080fd5b5061076c611d9c565b6040516107799190614650565b60405180910390f35b34801561078e57600080fd5b506107a960048036038101906107a49190613a85565b611da2565b6040516107b6919061436e565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e19190613a58565b611e36565b005b3480156107f457600080fd5b5061080f600480360381019061080a9190613d73565b611f2e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108dc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ec57506108eb82611ff9565b5b9050919050565b6108fb612063565b73ffffffffffffffffffffffffffffffffffffffff16610919611875565b73ffffffffffffffffffffffffffffffffffffffff161461096f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610966906145b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109a957600080fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600280546109fc90614965565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2890614965565b8015610a755780601f10610a4a57610100808354040283529160200191610a75565b820191906000526020600020905b815481529060010190602001808311610a5857829003601f168201915b5050505050905090565b6000610a8a8261206b565b610ac0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b06826111b2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b6e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b8d612063565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bbf5750610bbd81610bb8612063565b611da2565b155b15610bf6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c018383836120b9565b505050565b610c0e612063565b73ffffffffffffffffffffffffffffffffffffffff16610c2c611875565b73ffffffffffffffffffffffffffffffffffffffff1614610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c79906145b0565b60405180910390fd5b80600b9080519060200190610c989291906137be565b5050565b6000610ca661216b565b6001546000540303905090565b610cbe838383612170565b505050565b60026008541415610d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0090614630565b60405180910390fd5b6002600881905550600c60009054906101000a900460ff16610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5790614410565b60405180910390fd5b600082118015610d705750808211155b610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da690614610565b60405180910390fd5b8082610dba33612626565b011115610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df3906145d0565b60405180910390fd5b600e5482610e08610c9c565b011115610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4190614430565b60405180910390fd5b84610e553383612690565b14610e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8c906144d0565b60405180910390fd5b610ee38585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506126c3565b610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1990614530565b60405180910390fd5b655af3107a400082600d54610f37919061480a565b610f419190614864565b3410158015610f6e5750655af3107a400082600d54610f60919061480a565b610f6a9190614783565b3411155b610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa4906144f0565b60405180910390fd5b610fb73383612738565b60016008819055505050505050565b610fce612063565b73ffffffffffffffffffffffffffffffffffffffff16610fec611875565b73ffffffffffffffffffffffffffffffffffffffff1614611042576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611039906145b0565b60405180910390fd5b61104a612756565b565b61106783838360405180602001604052806000815250611aaf565b505050565b600b805461107990614965565b80601f01602080910402602001604051908101604052809291908181526020018280546110a590614965565b80156110f25780601f106110c7576101008083540402835291602001916110f2565b820191906000526020600020905b8154815290600101906020018083116110d557829003601f168201915b505050505081565b600c60009054906101000a900460ff1681565b6000600960149054906101000a900460ff16905090565b600a805461113190614965565b80601f016020809104026020016040519081016040528092919081815260200182805461115d90614965565b80156111aa5780601f1061117f576101008083540402835291602001916111aa565b820191906000526020600020905b81548152906001019060200180831161118d57829003601f168201915b505050505081565b60006111bd826127f8565b600001519050919050565b6111d0612063565b73ffffffffffffffffffffffffffffffffffffffff166111ee611875565b73ffffffffffffffffffffffffffffffffffffffff1614611244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123b906145b0565b60405180910390fd5b80600e541415611289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128090614570565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112fb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61136b612063565b73ffffffffffffffffffffffffffffffffffffffff16611389611875565b73ffffffffffffffffffffffffffffffffffffffff16146113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d6906145b0565b60405180910390fd5b6113e96000612a87565b565b6113f3612063565b73ffffffffffffffffffffffffffffffffffffffff16611411611875565b73ffffffffffffffffffffffffffffffffffffffff1614611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e906145b0565b60405180910390fd5b6702c68af0bb140000600d81905550610fa0600e81905550565b611489612063565b73ffffffffffffffffffffffffffffffffffffffff166114a7611875565b73ffffffffffffffffffffffffffffffffffffffff16146114fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f4906145b0565b60405180910390fd5b80600a90805190602001906115139291906137be565b5050565b61151f612063565b73ffffffffffffffffffffffffffffffffffffffff1661153d611875565b73ffffffffffffffffffffffffffffffffffffffff1614611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158a906145b0565b60405180910390fd5b61159b612b4d565b565b606060008060006115ad85611293565b905060008167ffffffffffffffff8111156115cb576115ca614b37565b5b6040519080825280602002602001820160405280156115f95781602001602082028036833780820191505090505b509050611604613844565b600061160e61216b565b90505b83861461179157600460008281526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505091508160400151156116ea57611786565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461172a57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611785578083878060010198508151811061177857611777614b08565b5b6020026020010181815250505b5b806001019050611611565b508195505050505050919050565b6117a7612063565b73ffffffffffffffffffffffffffffffffffffffff166117c5611875565b73ffffffffffffffffffffffffffffffffffffffff161461181b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611812906145b0565b60405180910390fd5b600047905073d6f04aa4797ceac65f7f0a744bb8897dfa66333173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061187257600080fd5b50565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546118ae90614965565b80601f01602080910402602001604051908101604052809291908181526020018280546118da90614965565b80156119275780601f106118fc57610100808354040283529160200191611927565b820191906000526020600020905b81548152906001019060200180831161190a57829003601f168201915b5050505050905090565b600d5481565b61193f612063565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119a4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119b1612063565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a5e612063565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aa3919061436e565b60405180910390a35050565b611aba848484612170565b611ad98373ffffffffffffffffffffffffffffffffffffffff16612bf0565b8015611aee5750611aec84848484612c13565b155b15611b25576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611b33612063565b73ffffffffffffffffffffffffffffffffffffffff16611b51611875565b73ffffffffffffffffffffffffffffffffffffffff1614611ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9e906145b0565b60405180910390fd5b801515600c60009054906101000a900460ff1615151415611bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf490614570565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b6060611c258261206b565b611c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5b90614490565b60405180910390fd5b6000611c6e612d73565b90506000815111611c8e5760405180602001604052806000815250611cbc565b80611c9884612e05565b600b604051602001611cac93929190614265565b6040516020818303038152906040525b915050919050565b611ccc612063565b73ffffffffffffffffffffffffffffffffffffffff16611cea611875565b73ffffffffffffffffffffffffffffffffffffffff1614611d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d37906145b0565b60405180910390fd5b600e5481611d4c610c9c565b011115611d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d85906145f0565b60405180910390fd5b611d988282612738565b5050565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e3e612063565b73ffffffffffffffffffffffffffffffffffffffff16611e5c611875565b73ffffffffffffffffffffffffffffffffffffffff1614611eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea9906145b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f19906144b0565b60405180910390fd5b611f2b81612a87565b50565b611f36612063565b73ffffffffffffffffffffffffffffffffffffffff16611f54611875565b73ffffffffffffffffffffffffffffffffffffffff1614611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa1906145b0565b60405180910390fd5b80600d541415611fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe690614570565b60405180910390fd5b80600d8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161207661216b565b11158015612085575060005482105b80156120b2575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061217b826127f8565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121e6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612207612063565b73ffffffffffffffffffffffffffffffffffffffff161480612236575061223585612230612063565b611da2565b5b8061227b5750612244612063565b73ffffffffffffffffffffffffffffffffffffffff1661226384610a7f565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806122b4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561231b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123288585856001612f66565b612334600084876120b9565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125b45760005482146125b357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461261f8585856001612fb7565b5050505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b600082826040516020016126a5929190614323565b60405160208183030381529060405280519060200120905092915050565b60006126e0826126d285612fbd565b612fed90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b612752828260405180602001604052806000815250613014565b5050565b61275e61110d565b61279d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279490614450565b60405180910390fd5b6000600960146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6127e1612063565b6040516127ee91906142bc565b60405180910390a1565b612800613844565b60008290508061280e61216b565b1115801561281d575060005481105b15612a50576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612a4e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612932578092505050612a82565b5b600115612a4d57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a48578092505050612a82565b612933565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b5561110d565b15612b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8c90614550565b60405180910390fd5b6001600960146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612bd9612063565b604051612be691906142bc565b60405180910390a1565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c39612063565b8786866040518563ffffffff1660e01b8152600401612c5b94939291906142d7565b602060405180830381600087803b158015612c7557600080fd5b505af1925050508015612ca657506040513d601f19601f82011682018060405250810190612ca39190613cfd565b60015b612d20573d8060008114612cd6576040519150601f19603f3d011682016040523d82523d6000602084013e612cdb565b606091505b50600081511415612d18576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612d8290614965565b80601f0160208091040260200160405190810160405280929190818152602001828054612dae90614965565b8015612dfb5780601f10612dd057610100808354040283529160200191612dfb565b820191906000526020600020905b815481529060010190602001808311612dde57829003601f168201915b5050505050905090565b60606000821415612e4d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f61565b600082905060005b60008214612e7f578080612e68906149c8565b915050600a82612e7891906147d9565b9150612e55565b60008167ffffffffffffffff811115612e9b57612e9a614b37565b5b6040519080825280601f01601f191660200182016040528015612ecd5781602001600182028036833780820191505090505b5090505b60008514612f5a57600182612ee69190614864565b9150600a85612ef59190614a1b565b6030612f019190614783565b60f81b818381518110612f1757612f16614b08565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f5391906147d9565b9450612ed1565b8093505050505b919050565b612f7284848484613026565b612f7a61110d565b15612fb1576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b50505050565b600081604051602001612fd09190614296565b604051602081830303815290604052805190602001209050919050565b6000806000612ffc858561302c565b91509150613009816130af565b819250505092915050565b6130218383836001613284565b505050565b50505050565b60008060418351141561306e5760008060006020860151925060408601519150606086015160001a905061306287828585613652565b945094505050506130a8565b60408351141561309f57600080602085015191506040850151905061309486838361375f565b9350935050506130a8565b60006002915091505b9250929050565b600060048111156130c3576130c2614aaa565b5b8160048111156130d6576130d5614aaa565b5b14156130e157613281565b600160048111156130f5576130f4614aaa565b5b81600481111561310857613107614aaa565b5b1415613149576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613140906143f0565b60405180910390fd5b6002600481111561315d5761315c614aaa565b5b8160048111156131705761316f614aaa565b5b14156131b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a890614470565b60405180910390fd5b600360048111156131c5576131c4614aaa565b5b8160048111156131d8576131d7614aaa565b5b1415613219576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321090614510565b60405180910390fd5b60048081111561322c5761322b614aaa565b5b81600481111561323f5761323e614aaa565b5b1415613280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327790614590565b60405180910390fd5b5b50565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156132f1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561332c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6133396000868387612f66565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561350357506135028773ffffffffffffffffffffffffffffffffffffffff16612bf0565b5b156135c9575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135786000888480600101955088612c13565b6135ae576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156135095782600054146135c457600080fd5b613635565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156135ca575b81600081905550505061364b6000868387612fb7565b5050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561368d576000600391509150613756565b601b8560ff16141580156136a55750601c8560ff1614155b156136b7576000600491509150613756565b6000600187878787604051600081526020016040526040516136dc9493929190614389565b6020604051602081039080840390855afa1580156136fe573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561374d57600060019250925050613756565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c6137a29190614783565b90506137b087828885613652565b935093505050935093915050565b8280546137ca90614965565b90600052602060002090601f0160209004810192826137ec5760008555613833565b82601f1061380557805160ff1916838001178555613833565b82800160010185558215613833579182015b82811115613832578251825591602001919060010190613817565b5b5090506138409190613887565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156138a0576000816000905550600101613888565b5090565b60006138b76138b284614690565b61466b565b9050828152602081018484840111156138d3576138d2614b75565b5b6138de848285614923565b509392505050565b60006138f96138f4846146c1565b61466b565b90508281526020810184848401111561391557613914614b75565b5b613920848285614923565b509392505050565b60008135905061393781614f3b565b92915050565b60008135905061394c81614f52565b92915050565b60008135905061396181614f69565b92915050565b60008135905061397681614f80565b92915050565b60008151905061398b81614f80565b92915050565b60008083601f8401126139a7576139a6614b6b565b5b8235905067ffffffffffffffff8111156139c4576139c3614b66565b5b6020830191508360018202830111156139e0576139df614b70565b5b9250929050565b600082601f8301126139fc576139fb614b6b565b5b8135613a0c8482602086016138a4565b91505092915050565b600082601f830112613a2a57613a29614b6b565b5b8135613a3a8482602086016138e6565b91505092915050565b600081359050613a5281614f97565b92915050565b600060208284031215613a6e57613a6d614b7f565b5b6000613a7c84828501613928565b91505092915050565b60008060408385031215613a9c57613a9b614b7f565b5b6000613aaa85828601613928565b9250506020613abb85828601613928565b9150509250929050565b600080600060608486031215613ade57613add614b7f565b5b6000613aec86828701613928565b9350506020613afd86828701613928565b9250506040613b0e86828701613a43565b9150509250925092565b60008060008060808587031215613b3257613b31614b7f565b5b6000613b4087828801613928565b9450506020613b5187828801613928565b9350506040613b6287828801613a43565b925050606085013567ffffffffffffffff811115613b8357613b82614b7a565b5b613b8f878288016139e7565b91505092959194509250565b60008060408385031215613bb257613bb1614b7f565b5b6000613bc085828601613928565b9250506020613bd18582860161393d565b9150509250929050565b60008060408385031215613bf257613bf1614b7f565b5b6000613c0085828601613928565b9250506020613c1185828601613a43565b9150509250929050565b600060208284031215613c3157613c30614b7f565b5b6000613c3f8482850161393d565b91505092915050565b600080600080600060808688031215613c6457613c63614b7f565b5b6000613c7288828901613952565b955050602086013567ffffffffffffffff811115613c9357613c92614b7a565b5b613c9f88828901613991565b94509450506040613cb288828901613a43565b9250506060613cc388828901613a43565b9150509295509295909350565b600060208284031215613ce657613ce5614b7f565b5b6000613cf484828501613967565b91505092915050565b600060208284031215613d1357613d12614b7f565b5b6000613d218482850161397c565b91505092915050565b600060208284031215613d4057613d3f614b7f565b5b600082013567ffffffffffffffff811115613d5e57613d5d614b7a565b5b613d6a84828501613a15565b91505092915050565b600060208284031215613d8957613d88614b7f565b5b6000613d9784828501613a43565b91505092915050565b6000613dac8383614238565b60208301905092915050565b613dc181614898565b82525050565b6000613dd282614717565b613ddc8185614745565b9350613de7836146f2565b8060005b83811015613e18578151613dff8882613da0565b9750613e0a83614738565b925050600181019050613deb565b5085935050505092915050565b613e2e816148aa565b82525050565b613e3d816148b6565b82525050565b613e54613e4f826148b6565b614a11565b82525050565b6000613e6582614722565b613e6f8185614756565b9350613e7f818560208601614932565b613e8881614b84565b840191505092915050565b6000613e9e8261472d565b613ea88185614767565b9350613eb8818560208601614932565b613ec181614b84565b840191505092915050565b6000613ed78261472d565b613ee18185614778565b9350613ef1818560208601614932565b80840191505092915050565b60008154613f0a81614965565b613f148186614778565b94506001821660008114613f2f5760018114613f4057613f73565b60ff19831686528186019350613f73565b613f4985614702565b60005b83811015613f6b57815481890152600182019150602081019050613f4c565b838801955050505b50505092915050565b6000613f89601883614767565b9150613f9482614b95565b602082019050919050565b6000613fac601283614767565b9150613fb782614bbe565b602082019050919050565b6000613fcf601a83614767565b9150613fda82614be7565b602082019050919050565b6000613ff2601483614767565b9150613ffd82614c10565b602082019050919050565b6000614015601f83614767565b915061402082614c39565b602082019050919050565b6000614038601c83614778565b915061404382614c62565b601c82019050919050565b600061405b601f83614767565b915061406682614c8b565b602082019050919050565b600061407e602683614767565b915061408982614cb4565b604082019050919050565b60006140a1600f83614767565b91506140ac82614d03565b602082019050919050565b60006140c4600d83614767565b91506140cf82614d2c565b602082019050919050565b60006140e7602283614767565b91506140f282614d55565b604082019050919050565b600061410a601b83614767565b915061411582614da4565b602082019050919050565b600061412d601083614767565b915061413882614dcd565b602082019050919050565b6000614150602083614767565b915061415b82614df6565b602082019050919050565b6000614173602283614767565b915061417e82614e1f565b604082019050919050565b6000614196602083614767565b91506141a182614e6e565b602082019050919050565b60006141b9600d83614767565b91506141c482614e97565b602082019050919050565b60006141dc600e83614767565b91506141e782614ec0565b602082019050919050565b60006141ff601383614767565b915061420a82614ee9565b602082019050919050565b6000614222601f83614767565b915061422d82614f12565b602082019050919050565b6142418161490c565b82525050565b6142508161490c565b82525050565b61425f81614916565b82525050565b60006142718286613ecc565b915061427d8285613ecc565b91506142898284613efd565b9150819050949350505050565b60006142a18261402b565b91506142ad8284613e43565b60208201915081905092915050565b60006020820190506142d16000830184613db8565b92915050565b60006080820190506142ec6000830187613db8565b6142f96020830186613db8565b6143066040830185614247565b81810360608301526143188184613e5a565b905095945050505050565b60006040820190506143386000830185613db8565b6143456020830184614247565b9392505050565b600060208201905081810360008301526143668184613dc7565b905092915050565b60006020820190506143836000830184613e25565b92915050565b600060808201905061439e6000830187613e34565b6143ab6020830186614256565b6143b86040830185613e34565b6143c56060830184613e34565b95945050505050565b600060208201905081810360008301526143e88184613e93565b905092915050565b6000602082019050818103600083015261440981613f7c565b9050919050565b6000602082019050818103600083015261442981613f9f565b9050919050565b6000602082019050818103600083015261444981613fc2565b9050919050565b6000602082019050818103600083015261446981613fe5565b9050919050565b6000602082019050818103600083015261448981614008565b9050919050565b600060208201905081810360008301526144a98161404e565b9050919050565b600060208201905081810360008301526144c981614071565b9050919050565b600060208201905081810360008301526144e981614094565b9050919050565b60006020820190508181036000830152614509816140b7565b9050919050565b60006020820190508181036000830152614529816140da565b9050919050565b60006020820190508181036000830152614549816140fd565b9050919050565b6000602082019050818103600083015261456981614120565b9050919050565b6000602082019050818103600083015261458981614143565b9050919050565b600060208201905081810360008301526145a981614166565b9050919050565b600060208201905081810360008301526145c981614189565b9050919050565b600060208201905081810360008301526145e9816141ac565b9050919050565b60006020820190508181036000830152614609816141cf565b9050919050565b60006020820190508181036000830152614629816141f2565b9050919050565b6000602082019050818103600083015261464981614215565b9050919050565b60006020820190506146656000830184614247565b92915050565b6000614675614686565b90506146818282614997565b919050565b6000604051905090565b600067ffffffffffffffff8211156146ab576146aa614b37565b5b6146b482614b84565b9050602081019050919050565b600067ffffffffffffffff8211156146dc576146db614b37565b5b6146e582614b84565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061478e8261490c565b91506147998361490c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147ce576147cd614a4c565b5b828201905092915050565b60006147e48261490c565b91506147ef8361490c565b9250826147ff576147fe614a7b565b5b828204905092915050565b60006148158261490c565b91506148208361490c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561485957614858614a4c565b5b828202905092915050565b600061486f8261490c565b915061487a8361490c565b92508282101561488d5761488c614a4c565b5b828203905092915050565b60006148a3826148ec565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614950578082015181840152602081019050614935565b8381111561495f576000848401525b50505050565b6000600282049050600182168061497d57607f821691505b6020821081141561499157614990614ad9565b5b50919050565b6149a082614b84565b810181811067ffffffffffffffff821117156149bf576149be614b37565b5b80604052505050565b60006149d38261490c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a0657614a05614a4c565b5b600182019050919050565b6000819050919050565b6000614a268261490c565b9150614a318361490c565b925082614a4157614a40614a7b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f53414c455f49535f4e4f545f4143544956450000000000000000000000000000600082015250565b7f4e4f545f454e4f5547485f4d494e54535f415641494c41424c45000000000000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d4553534147455f494e56414c49440000000000000000000000000000000000600082015250565b7f494e56414c49445f505249434500000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f5349474e41545552455f56414c49444154494f4e5f4641494c45440000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4e45575f53544154455f4944454e544943414c5f544f5f4f4c445f5354415445600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d494e545f544f4f5f4d55434800000000000000000000000000000000000000600082015250565b7f4d494e545f544f4f5f4c41524745000000000000000000000000000000000000600082015250565b7f494e56414c49445f4d494e545f414d4f554e5400000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b614f4481614898565b8114614f4f57600080fd5b50565b614f5b816148aa565b8114614f6657600080fd5b50565b614f72816148b6565b8114614f7d57600080fd5b50565b614f89816148c0565b8114614f9457600080fd5b50565b614fa08161490c565b8114614fab57600080fd5b5056fea2646970667358221220d96791781d43eb5384a0fcc0b6dfbd32f5800119ae7b697547c844f0712f5e3264736f6c63430008070033697066733a2f2f516d503350745543446d4b4e5a7541714c41515853513648757a4146436a7859576d6131355251346e41504356572f526963684d616d612f546f6b656e5552492f
Deployed Bytecode
0x60806040526004361061020f5760003560e01c8063715018a611610118578063a22cb465116100a0578063cbce4c971161006f578063cbce4c971461072e578063d5abeb0114610757578063e985e9c514610782578063f2fde38b146107bf578063f4a0a528146107e85761020f565b8063a22cb46514610676578063b88d4fde1461069f578063c4e37095146106c8578063c87b56dd146106f15761020f565b80638462151c116100e75780638462151c146105a1578063853828b6146105de5780638da5cb5b146105f557806395d89b4114610620578063a035b1fe1461064b5761020f565b8063715018a61461053357806377e563571461054a5780637ec4a659146105615780638456cb591461058a5761020f565b80633f4ba83a1161019b5780635c975abb1161016a5780635c975abb1461043a57806362b99ad4146104655780636352211e146104905780636f8b44b0146104cd57806370a08231146104f65761020f565b80633f4ba83a146103a457806342842e0e146103bb5780635503a0e8146103e4578063564566a81461040f5761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806316ba10e01461030b57806318160ddd1461033457806323b872dd1461035f57806331fa3eb9146103885761020f565b806301ffc9a714610214578063046dc1661461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613cd0565b610811565b604051610248919061436e565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190613a58565b6108f3565b005b34801561028657600080fd5b5061028f6109ed565b60405161029c91906143ce565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190613d73565b610a7f565b6040516102d991906142bc565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190613bdb565b610afb565b005b34801561031757600080fd5b50610332600480360381019061032d9190613d2a565b610c06565b005b34801561034057600080fd5b50610349610c9c565b6040516103569190614650565b60405180910390f35b34801561036b57600080fd5b5061038660048036038101906103819190613ac5565b610cb3565b005b6103a2600480360381019061039d9190613c48565b610cc3565b005b3480156103b057600080fd5b506103b9610fc6565b005b3480156103c757600080fd5b506103e260048036038101906103dd9190613ac5565b61104c565b005b3480156103f057600080fd5b506103f961106c565b60405161040691906143ce565b60405180910390f35b34801561041b57600080fd5b506104246110fa565b604051610431919061436e565b60405180910390f35b34801561044657600080fd5b5061044f61110d565b60405161045c919061436e565b60405180910390f35b34801561047157600080fd5b5061047a611124565b60405161048791906143ce565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b29190613d73565b6111b2565b6040516104c491906142bc565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef9190613d73565b6111c8565b005b34801561050257600080fd5b5061051d60048036038101906105189190613a58565b611293565b60405161052a9190614650565b60405180910390f35b34801561053f57600080fd5b50610548611363565b005b34801561055657600080fd5b5061055f6113eb565b005b34801561056d57600080fd5b5061058860048036038101906105839190613d2a565b611481565b005b34801561059657600080fd5b5061059f611517565b005b3480156105ad57600080fd5b506105c860048036038101906105c39190613a58565b61159d565b6040516105d5919061434c565b60405180910390f35b3480156105ea57600080fd5b506105f361179f565b005b34801561060157600080fd5b5061060a611875565b60405161061791906142bc565b60405180910390f35b34801561062c57600080fd5b5061063561189f565b60405161064291906143ce565b60405180910390f35b34801561065757600080fd5b50610660611931565b60405161066d9190614650565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190613b9b565b611937565b005b3480156106ab57600080fd5b506106c660048036038101906106c19190613b18565b611aaf565b005b3480156106d457600080fd5b506106ef60048036038101906106ea9190613c1b565b611b2b565b005b3480156106fd57600080fd5b5061071860048036038101906107139190613d73565b611c1a565b60405161072591906143ce565b60405180910390f35b34801561073a57600080fd5b5061075560048036038101906107509190613bdb565b611cc4565b005b34801561076357600080fd5b5061076c611d9c565b6040516107799190614650565b60405180910390f35b34801561078e57600080fd5b506107a960048036038101906107a49190613a85565b611da2565b6040516107b6919061436e565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e19190613a58565b611e36565b005b3480156107f457600080fd5b5061080f600480360381019061080a9190613d73565b611f2e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108dc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ec57506108eb82611ff9565b5b9050919050565b6108fb612063565b73ffffffffffffffffffffffffffffffffffffffff16610919611875565b73ffffffffffffffffffffffffffffffffffffffff161461096f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610966906145b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109a957600080fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600280546109fc90614965565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2890614965565b8015610a755780601f10610a4a57610100808354040283529160200191610a75565b820191906000526020600020905b815481529060010190602001808311610a5857829003601f168201915b5050505050905090565b6000610a8a8261206b565b610ac0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b06826111b2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b6e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b8d612063565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bbf5750610bbd81610bb8612063565b611da2565b155b15610bf6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c018383836120b9565b505050565b610c0e612063565b73ffffffffffffffffffffffffffffffffffffffff16610c2c611875565b73ffffffffffffffffffffffffffffffffffffffff1614610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c79906145b0565b60405180910390fd5b80600b9080519060200190610c989291906137be565b5050565b6000610ca661216b565b6001546000540303905090565b610cbe838383612170565b505050565b60026008541415610d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0090614630565b60405180910390fd5b6002600881905550600c60009054906101000a900460ff16610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5790614410565b60405180910390fd5b600082118015610d705750808211155b610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da690614610565b60405180910390fd5b8082610dba33612626565b011115610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df3906145d0565b60405180910390fd5b600e5482610e08610c9c565b011115610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4190614430565b60405180910390fd5b84610e553383612690565b14610e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8c906144d0565b60405180910390fd5b610ee38585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506126c3565b610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1990614530565b60405180910390fd5b655af3107a400082600d54610f37919061480a565b610f419190614864565b3410158015610f6e5750655af3107a400082600d54610f60919061480a565b610f6a9190614783565b3411155b610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa4906144f0565b60405180910390fd5b610fb73383612738565b60016008819055505050505050565b610fce612063565b73ffffffffffffffffffffffffffffffffffffffff16610fec611875565b73ffffffffffffffffffffffffffffffffffffffff1614611042576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611039906145b0565b60405180910390fd5b61104a612756565b565b61106783838360405180602001604052806000815250611aaf565b505050565b600b805461107990614965565b80601f01602080910402602001604051908101604052809291908181526020018280546110a590614965565b80156110f25780601f106110c7576101008083540402835291602001916110f2565b820191906000526020600020905b8154815290600101906020018083116110d557829003601f168201915b505050505081565b600c60009054906101000a900460ff1681565b6000600960149054906101000a900460ff16905090565b600a805461113190614965565b80601f016020809104026020016040519081016040528092919081815260200182805461115d90614965565b80156111aa5780601f1061117f576101008083540402835291602001916111aa565b820191906000526020600020905b81548152906001019060200180831161118d57829003601f168201915b505050505081565b60006111bd826127f8565b600001519050919050565b6111d0612063565b73ffffffffffffffffffffffffffffffffffffffff166111ee611875565b73ffffffffffffffffffffffffffffffffffffffff1614611244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123b906145b0565b60405180910390fd5b80600e541415611289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128090614570565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112fb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61136b612063565b73ffffffffffffffffffffffffffffffffffffffff16611389611875565b73ffffffffffffffffffffffffffffffffffffffff16146113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d6906145b0565b60405180910390fd5b6113e96000612a87565b565b6113f3612063565b73ffffffffffffffffffffffffffffffffffffffff16611411611875565b73ffffffffffffffffffffffffffffffffffffffff1614611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e906145b0565b60405180910390fd5b6702c68af0bb140000600d81905550610fa0600e81905550565b611489612063565b73ffffffffffffffffffffffffffffffffffffffff166114a7611875565b73ffffffffffffffffffffffffffffffffffffffff16146114fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f4906145b0565b60405180910390fd5b80600a90805190602001906115139291906137be565b5050565b61151f612063565b73ffffffffffffffffffffffffffffffffffffffff1661153d611875565b73ffffffffffffffffffffffffffffffffffffffff1614611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158a906145b0565b60405180910390fd5b61159b612b4d565b565b606060008060006115ad85611293565b905060008167ffffffffffffffff8111156115cb576115ca614b37565b5b6040519080825280602002602001820160405280156115f95781602001602082028036833780820191505090505b509050611604613844565b600061160e61216b565b90505b83861461179157600460008281526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505091508160400151156116ea57611786565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461172a57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611785578083878060010198508151811061177857611777614b08565b5b6020026020010181815250505b5b806001019050611611565b508195505050505050919050565b6117a7612063565b73ffffffffffffffffffffffffffffffffffffffff166117c5611875565b73ffffffffffffffffffffffffffffffffffffffff161461181b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611812906145b0565b60405180910390fd5b600047905073d6f04aa4797ceac65f7f0a744bb8897dfa66333173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061187257600080fd5b50565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546118ae90614965565b80601f01602080910402602001604051908101604052809291908181526020018280546118da90614965565b80156119275780601f106118fc57610100808354040283529160200191611927565b820191906000526020600020905b81548152906001019060200180831161190a57829003601f168201915b5050505050905090565b600d5481565b61193f612063565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119a4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119b1612063565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a5e612063565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aa3919061436e565b60405180910390a35050565b611aba848484612170565b611ad98373ffffffffffffffffffffffffffffffffffffffff16612bf0565b8015611aee5750611aec84848484612c13565b155b15611b25576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611b33612063565b73ffffffffffffffffffffffffffffffffffffffff16611b51611875565b73ffffffffffffffffffffffffffffffffffffffff1614611ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9e906145b0565b60405180910390fd5b801515600c60009054906101000a900460ff1615151415611bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf490614570565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b6060611c258261206b565b611c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5b90614490565b60405180910390fd5b6000611c6e612d73565b90506000815111611c8e5760405180602001604052806000815250611cbc565b80611c9884612e05565b600b604051602001611cac93929190614265565b6040516020818303038152906040525b915050919050565b611ccc612063565b73ffffffffffffffffffffffffffffffffffffffff16611cea611875565b73ffffffffffffffffffffffffffffffffffffffff1614611d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d37906145b0565b60405180910390fd5b600e5481611d4c610c9c565b011115611d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d85906145f0565b60405180910390fd5b611d988282612738565b5050565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e3e612063565b73ffffffffffffffffffffffffffffffffffffffff16611e5c611875565b73ffffffffffffffffffffffffffffffffffffffff1614611eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea9906145b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f19906144b0565b60405180910390fd5b611f2b81612a87565b50565b611f36612063565b73ffffffffffffffffffffffffffffffffffffffff16611f54611875565b73ffffffffffffffffffffffffffffffffffffffff1614611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa1906145b0565b60405180910390fd5b80600d541415611fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe690614570565b60405180910390fd5b80600d8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161207661216b565b11158015612085575060005482105b80156120b2575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061217b826127f8565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121e6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612207612063565b73ffffffffffffffffffffffffffffffffffffffff161480612236575061223585612230612063565b611da2565b5b8061227b5750612244612063565b73ffffffffffffffffffffffffffffffffffffffff1661226384610a7f565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806122b4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561231b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123288585856001612f66565b612334600084876120b9565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125b45760005482146125b357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461261f8585856001612fb7565b5050505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b600082826040516020016126a5929190614323565b60405160208183030381529060405280519060200120905092915050565b60006126e0826126d285612fbd565b612fed90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b612752828260405180602001604052806000815250613014565b5050565b61275e61110d565b61279d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279490614450565b60405180910390fd5b6000600960146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6127e1612063565b6040516127ee91906142bc565b60405180910390a1565b612800613844565b60008290508061280e61216b565b1115801561281d575060005481105b15612a50576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612a4e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612932578092505050612a82565b5b600115612a4d57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a48578092505050612a82565b612933565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b5561110d565b15612b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8c90614550565b60405180910390fd5b6001600960146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612bd9612063565b604051612be691906142bc565b60405180910390a1565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c39612063565b8786866040518563ffffffff1660e01b8152600401612c5b94939291906142d7565b602060405180830381600087803b158015612c7557600080fd5b505af1925050508015612ca657506040513d601f19601f82011682018060405250810190612ca39190613cfd565b60015b612d20573d8060008114612cd6576040519150601f19603f3d011682016040523d82523d6000602084013e612cdb565b606091505b50600081511415612d18576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612d8290614965565b80601f0160208091040260200160405190810160405280929190818152602001828054612dae90614965565b8015612dfb5780601f10612dd057610100808354040283529160200191612dfb565b820191906000526020600020905b815481529060010190602001808311612dde57829003601f168201915b5050505050905090565b60606000821415612e4d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f61565b600082905060005b60008214612e7f578080612e68906149c8565b915050600a82612e7891906147d9565b9150612e55565b60008167ffffffffffffffff811115612e9b57612e9a614b37565b5b6040519080825280601f01601f191660200182016040528015612ecd5781602001600182028036833780820191505090505b5090505b60008514612f5a57600182612ee69190614864565b9150600a85612ef59190614a1b565b6030612f019190614783565b60f81b818381518110612f1757612f16614b08565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f5391906147d9565b9450612ed1565b8093505050505b919050565b612f7284848484613026565b612f7a61110d565b15612fb1576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b50505050565b600081604051602001612fd09190614296565b604051602081830303815290604052805190602001209050919050565b6000806000612ffc858561302c565b91509150613009816130af565b819250505092915050565b6130218383836001613284565b505050565b50505050565b60008060418351141561306e5760008060006020860151925060408601519150606086015160001a905061306287828585613652565b945094505050506130a8565b60408351141561309f57600080602085015191506040850151905061309486838361375f565b9350935050506130a8565b60006002915091505b9250929050565b600060048111156130c3576130c2614aaa565b5b8160048111156130d6576130d5614aaa565b5b14156130e157613281565b600160048111156130f5576130f4614aaa565b5b81600481111561310857613107614aaa565b5b1415613149576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613140906143f0565b60405180910390fd5b6002600481111561315d5761315c614aaa565b5b8160048111156131705761316f614aaa565b5b14156131b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a890614470565b60405180910390fd5b600360048111156131c5576131c4614aaa565b5b8160048111156131d8576131d7614aaa565b5b1415613219576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321090614510565b60405180910390fd5b60048081111561322c5761322b614aaa565b5b81600481111561323f5761323e614aaa565b5b1415613280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327790614590565b60405180910390fd5b5b50565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156132f1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561332c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6133396000868387612f66565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561350357506135028773ffffffffffffffffffffffffffffffffffffffff16612bf0565b5b156135c9575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135786000888480600101955088612c13565b6135ae576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156135095782600054146135c457600080fd5b613635565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156135ca575b81600081905550505061364b6000868387612fb7565b5050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561368d576000600391509150613756565b601b8560ff16141580156136a55750601c8560ff1614155b156136b7576000600491509150613756565b6000600187878787604051600081526020016040526040516136dc9493929190614389565b6020604051602081039080840390855afa1580156136fe573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561374d57600060019250925050613756565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c6137a29190614783565b90506137b087828885613652565b935093505050935093915050565b8280546137ca90614965565b90600052602060002090601f0160209004810192826137ec5760008555613833565b82601f1061380557805160ff1916838001178555613833565b82800160010185558215613833579182015b82811115613832578251825591602001919060010190613817565b5b5090506138409190613887565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156138a0576000816000905550600101613888565b5090565b60006138b76138b284614690565b61466b565b9050828152602081018484840111156138d3576138d2614b75565b5b6138de848285614923565b509392505050565b60006138f96138f4846146c1565b61466b565b90508281526020810184848401111561391557613914614b75565b5b613920848285614923565b509392505050565b60008135905061393781614f3b565b92915050565b60008135905061394c81614f52565b92915050565b60008135905061396181614f69565b92915050565b60008135905061397681614f80565b92915050565b60008151905061398b81614f80565b92915050565b60008083601f8401126139a7576139a6614b6b565b5b8235905067ffffffffffffffff8111156139c4576139c3614b66565b5b6020830191508360018202830111156139e0576139df614b70565b5b9250929050565b600082601f8301126139fc576139fb614b6b565b5b8135613a0c8482602086016138a4565b91505092915050565b600082601f830112613a2a57613a29614b6b565b5b8135613a3a8482602086016138e6565b91505092915050565b600081359050613a5281614f97565b92915050565b600060208284031215613a6e57613a6d614b7f565b5b6000613a7c84828501613928565b91505092915050565b60008060408385031215613a9c57613a9b614b7f565b5b6000613aaa85828601613928565b9250506020613abb85828601613928565b9150509250929050565b600080600060608486031215613ade57613add614b7f565b5b6000613aec86828701613928565b9350506020613afd86828701613928565b9250506040613b0e86828701613a43565b9150509250925092565b60008060008060808587031215613b3257613b31614b7f565b5b6000613b4087828801613928565b9450506020613b5187828801613928565b9350506040613b6287828801613a43565b925050606085013567ffffffffffffffff811115613b8357613b82614b7a565b5b613b8f878288016139e7565b91505092959194509250565b60008060408385031215613bb257613bb1614b7f565b5b6000613bc085828601613928565b9250506020613bd18582860161393d565b9150509250929050565b60008060408385031215613bf257613bf1614b7f565b5b6000613c0085828601613928565b9250506020613c1185828601613a43565b9150509250929050565b600060208284031215613c3157613c30614b7f565b5b6000613c3f8482850161393d565b91505092915050565b600080600080600060808688031215613c6457613c63614b7f565b5b6000613c7288828901613952565b955050602086013567ffffffffffffffff811115613c9357613c92614b7a565b5b613c9f88828901613991565b94509450506040613cb288828901613a43565b9250506060613cc388828901613a43565b9150509295509295909350565b600060208284031215613ce657613ce5614b7f565b5b6000613cf484828501613967565b91505092915050565b600060208284031215613d1357613d12614b7f565b5b6000613d218482850161397c565b91505092915050565b600060208284031215613d4057613d3f614b7f565b5b600082013567ffffffffffffffff811115613d5e57613d5d614b7a565b5b613d6a84828501613a15565b91505092915050565b600060208284031215613d8957613d88614b7f565b5b6000613d9784828501613a43565b91505092915050565b6000613dac8383614238565b60208301905092915050565b613dc181614898565b82525050565b6000613dd282614717565b613ddc8185614745565b9350613de7836146f2565b8060005b83811015613e18578151613dff8882613da0565b9750613e0a83614738565b925050600181019050613deb565b5085935050505092915050565b613e2e816148aa565b82525050565b613e3d816148b6565b82525050565b613e54613e4f826148b6565b614a11565b82525050565b6000613e6582614722565b613e6f8185614756565b9350613e7f818560208601614932565b613e8881614b84565b840191505092915050565b6000613e9e8261472d565b613ea88185614767565b9350613eb8818560208601614932565b613ec181614b84565b840191505092915050565b6000613ed78261472d565b613ee18185614778565b9350613ef1818560208601614932565b80840191505092915050565b60008154613f0a81614965565b613f148186614778565b94506001821660008114613f2f5760018114613f4057613f73565b60ff19831686528186019350613f73565b613f4985614702565b60005b83811015613f6b57815481890152600182019150602081019050613f4c565b838801955050505b50505092915050565b6000613f89601883614767565b9150613f9482614b95565b602082019050919050565b6000613fac601283614767565b9150613fb782614bbe565b602082019050919050565b6000613fcf601a83614767565b9150613fda82614be7565b602082019050919050565b6000613ff2601483614767565b9150613ffd82614c10565b602082019050919050565b6000614015601f83614767565b915061402082614c39565b602082019050919050565b6000614038601c83614778565b915061404382614c62565b601c82019050919050565b600061405b601f83614767565b915061406682614c8b565b602082019050919050565b600061407e602683614767565b915061408982614cb4565b604082019050919050565b60006140a1600f83614767565b91506140ac82614d03565b602082019050919050565b60006140c4600d83614767565b91506140cf82614d2c565b602082019050919050565b60006140e7602283614767565b91506140f282614d55565b604082019050919050565b600061410a601b83614767565b915061411582614da4565b602082019050919050565b600061412d601083614767565b915061413882614dcd565b602082019050919050565b6000614150602083614767565b915061415b82614df6565b602082019050919050565b6000614173602283614767565b915061417e82614e1f565b604082019050919050565b6000614196602083614767565b91506141a182614e6e565b602082019050919050565b60006141b9600d83614767565b91506141c482614e97565b602082019050919050565b60006141dc600e83614767565b91506141e782614ec0565b602082019050919050565b60006141ff601383614767565b915061420a82614ee9565b602082019050919050565b6000614222601f83614767565b915061422d82614f12565b602082019050919050565b6142418161490c565b82525050565b6142508161490c565b82525050565b61425f81614916565b82525050565b60006142718286613ecc565b915061427d8285613ecc565b91506142898284613efd565b9150819050949350505050565b60006142a18261402b565b91506142ad8284613e43565b60208201915081905092915050565b60006020820190506142d16000830184613db8565b92915050565b60006080820190506142ec6000830187613db8565b6142f96020830186613db8565b6143066040830185614247565b81810360608301526143188184613e5a565b905095945050505050565b60006040820190506143386000830185613db8565b6143456020830184614247565b9392505050565b600060208201905081810360008301526143668184613dc7565b905092915050565b60006020820190506143836000830184613e25565b92915050565b600060808201905061439e6000830187613e34565b6143ab6020830186614256565b6143b86040830185613e34565b6143c56060830184613e34565b95945050505050565b600060208201905081810360008301526143e88184613e93565b905092915050565b6000602082019050818103600083015261440981613f7c565b9050919050565b6000602082019050818103600083015261442981613f9f565b9050919050565b6000602082019050818103600083015261444981613fc2565b9050919050565b6000602082019050818103600083015261446981613fe5565b9050919050565b6000602082019050818103600083015261448981614008565b9050919050565b600060208201905081810360008301526144a98161404e565b9050919050565b600060208201905081810360008301526144c981614071565b9050919050565b600060208201905081810360008301526144e981614094565b9050919050565b60006020820190508181036000830152614509816140b7565b9050919050565b60006020820190508181036000830152614529816140da565b9050919050565b60006020820190508181036000830152614549816140fd565b9050919050565b6000602082019050818103600083015261456981614120565b9050919050565b6000602082019050818103600083015261458981614143565b9050919050565b600060208201905081810360008301526145a981614166565b9050919050565b600060208201905081810360008301526145c981614189565b9050919050565b600060208201905081810360008301526145e9816141ac565b9050919050565b60006020820190508181036000830152614609816141cf565b9050919050565b60006020820190508181036000830152614629816141f2565b9050919050565b6000602082019050818103600083015261464981614215565b9050919050565b60006020820190506146656000830184614247565b92915050565b6000614675614686565b90506146818282614997565b919050565b6000604051905090565b600067ffffffffffffffff8211156146ab576146aa614b37565b5b6146b482614b84565b9050602081019050919050565b600067ffffffffffffffff8211156146dc576146db614b37565b5b6146e582614b84565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061478e8261490c565b91506147998361490c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147ce576147cd614a4c565b5b828201905092915050565b60006147e48261490c565b91506147ef8361490c565b9250826147ff576147fe614a7b565b5b828204905092915050565b60006148158261490c565b91506148208361490c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561485957614858614a4c565b5b828202905092915050565b600061486f8261490c565b915061487a8361490c565b92508282101561488d5761488c614a4c565b5b828203905092915050565b60006148a3826148ec565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614950578082015181840152602081019050614935565b8381111561495f576000848401525b50505050565b6000600282049050600182168061497d57607f821691505b6020821081141561499157614990614ad9565b5b50919050565b6149a082614b84565b810181811067ffffffffffffffff821117156149bf576149be614b37565b5b80604052505050565b60006149d38261490c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a0657614a05614a4c565b5b600182019050919050565b6000819050919050565b6000614a268261490c565b9150614a318361490c565b925082614a4157614a40614a7b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f53414c455f49535f4e4f545f4143544956450000000000000000000000000000600082015250565b7f4e4f545f454e4f5547485f4d494e54535f415641494c41424c45000000000000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d4553534147455f494e56414c49440000000000000000000000000000000000600082015250565b7f494e56414c49445f505249434500000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f5349474e41545552455f56414c49444154494f4e5f4641494c45440000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4e45575f53544154455f4944454e544943414c5f544f5f4f4c445f5354415445600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d494e545f544f4f5f4d55434800000000000000000000000000000000000000600082015250565b7f4d494e545f544f4f5f4c41524745000000000000000000000000000000000000600082015250565b7f494e56414c49445f4d494e545f414d4f554e5400000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b614f4481614898565b8114614f4f57600080fd5b50565b614f5b816148aa565b8114614f6657600080fd5b50565b614f72816148b6565b8114614f7d57600080fd5b50565b614f89816148c0565b8114614f9457600080fd5b50565b614fa08161490c565b8114614fab57600080fd5b5056fea2646970667358221220d96791781d43eb5384a0fcc0b6dfbd32f5800119ae7b697547c844f0712f5e3264736f6c63430008070033
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.