ERC-721
Overview
Max Total Supply
460 LBST
Holders
270
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 LBSTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LazyBonesSpaceTrip
Compiler Version
v0.8.9+commit.e5eed63a
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.4.22 <0.9.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract LazyBonesSpaceTrip is ERC721Enumerable, Ownable, AccessControl { using SafeMath for uint256; uint256 public constant PreMintPrice = 0.04 ether; uint256 public constant PublicMintPrice = 0.06 ether; uint256 public constant TOTAL_NUMBER_OF_LAZY_BONES = 10000; uint[TOTAL_NUMBER_OF_LAZY_BONES] internal indices; uint internal nonce = 0; uint256 public giveaway_reserved = 100; uint256 public pre_mint_limit = 3; mapping(address => bool) private _pre_sale_minters; bool public mintIsPaused = true; bool public preMintIsPaused = true; bool public reveal = false; //withdraw addresses address splitter; //initial team address LazyDescartes = 0x8D6d8E912880e2fC9dC174F18b033F9619c0F63A; address LazyGeek = 0x36A59A0B623a4B9EF9d4b4bb11F2aAC40B2dc239; address LazyDraws = 0x0077044aE65E5E43F10101d9432b763AFdCe540D; address LazyFlownee = 0x66318D2E71e1DDbE2cC769bacA169463E54B8519; address LazyElf = 0x5C6b5F156Cb3154442e4B486320A0A5916312C92; address LazyBrah = 0x09E7C871E020f74D1EE1E30034a90082C435Bece; address LazyHoodie = 0x797074BC5051d705DFe4004482783381e1ab1222; //investors address LazyInvestor1 = 0x694461DCC47900B2716E4c10322e76737733F782; address LazyInvestor2 = 0xE8e38EB9C16C17681d26522685B381ea659CAc98; string private _baseUrl = "https://lazybonesspacetrip.s3.eu-north-1.amazonaws.com/"; constructor() ERC721("LazyBonesSpaceTrip", "LBST") { _setupRole(DEFAULT_ADMIN_ROLE, LazyDescartes); } modifier WhenPreMintIsAllowed() { require(!preMintIsPaused, "LazyBones SpaceTrip: Premint is paused!"); _; } modifier WhenMintIsAllowed() { require(!mintIsPaused, "LazyBones SpaceTrip: Mint is paused"); _; } //Checks for preminters function is_pre_mint_allowed(address account) public view returns (bool) { return _pre_sale_minters[account]; } modifier IsPreMintAllowed(address account) { require(is_pre_mint_allowed(account), "LazyBones SpaceTrip: You are not in pre mint list!"); _; } //EVENTS event ReedemedPreMint(address account); //Construction function _baseURI() internal view virtual override returns (string memory) { return _baseUrl; } function getBaseURI() public view returns (string memory) { return _baseUrl; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "LazyBonesSpaceTrip: URI query for nonexistent token"); string memory baseURI = getBaseURI(); return bytes(baseURI).length > 0 ? reveal ? string(abi.encodePacked(baseURI, '/', Strings.toString(tokenId), ".json")) : "https://lazybonesnft.io/api/lazybones.json" : ''; } function ownerOf(uint8 index) public view returns(address) { return ownerOf(uint256(index)-1); } function supportsInterface(bytes4 interfaceId) public view override(ERC721Enumerable, AccessControl) returns (bool) { return super.supportsInterface(interfaceId); } function randomIndex() internal returns (uint256) { // uint256 totalSize = TOTAL_NUMBER_OF_LAZY_BONES - (pre_mint_reserved + giveaway_reserved); uint256 totalSize = TOTAL_NUMBER_OF_LAZY_BONES - totalSupply(); uint256 index = uint(keccak256(abi.encodePacked(nonce, msg.sender, block.difficulty, block.timestamp))) % totalSize; uint256 value = 0; if (indices[index] != 0) { value = indices[index]; } else { value = index; } if (indices[totalSize - 1] == 0) { indices[index] = totalSize - 1; } else { indices[index] = indices[totalSize - 1]; } nonce++; return value.add(1); } fallback() external payable { } receive() external payable { } //Minting function mint(uint256 numberOfTokens) public payable WhenMintIsAllowed() { uint256 supply = totalSupply(); uint256 tokenCount = balanceOf(msg.sender); require(numberOfTokens <= 20, "LazyBonesSpaceTrip: You can mint a maximum of 20 Lazy Bones"); require(tokenCount + numberOfTokens <= 20, "LazyBonesSpaceTrip: You can mint a maximum of 20 Lazy Bones"); require(supply + numberOfTokens <= TOTAL_NUMBER_OF_LAZY_BONES - giveaway_reserved, "LazyBonesSpaceTrip: Exceeds maximum Lazy Bones supply"); require( msg.value >= PublicMintPrice * numberOfTokens, "LazyBonesSpaceTrip: Ether sent is less than PRICE * num" ); for(uint256 i; i < numberOfTokens; i++){ _safeMint( msg.sender, randomIndex() ); } } function preMint(uint256 numberOfTokens) public payable WhenPreMintIsAllowed() IsPreMintAllowed(msg.sender) { uint256 buyerBalance = balanceOf(msg.sender); require(msg.value >= numberOfTokens * PreMintPrice, "LazyBonesSpaceTrip: Ether sent is less than PreMintPrice"); require(numberOfTokens + buyerBalance <= pre_mint_limit, "LazyBonesSpaceTrip: You can mint a maximum of 20 Lazy Bones"); if(buyerBalance + numberOfTokens >= pre_mint_limit) { _pre_sale_minters[msg.sender] = false; } for(uint256 i; i < numberOfTokens; i++){ _safeMint( msg.sender, randomIndex() ); } } //Checks if minter reached limit for public sale function limitReached(address account, uint256 amount) public view returns(bool) { return balanceOf(account) + amount <= 20; } //Checks if minter in white list function preMintAvailable(address account) public view returns(bool) { return _pre_sale_minters[account]; } //Checks if minter in giveaway white list //Only owner function toggleReveal() public onlyOwner { reveal = !reveal; } function addToPreMinters(address[] calldata account) public onlyOwner { for(uint256 i = 0; i < account.length; i++) { _pre_sale_minters[account[i]] = true; } } function unpauseMint() public onlyOwner { mintIsPaused = false; } function pauseMint() public onlyOwner { mintIsPaused = true; } function unpausePreMint() public onlyOwner { preMintIsPaused = false; } function pausePreMint() public onlyOwner { preMintIsPaused = true; } function setBaseURI(string memory baseURI) public onlyOwner { _baseUrl = baseURI; } function withdraw() public onlyOwner { uint balance = address(this).balance; payable(msg.sender).transfer(balance); } function withdrawSplitter() public onlyOwner { uint balance = address(this).balance; //Initial team split payable(LazyGeek).transfer((balance * 10) / 100); payable(LazyDraws).transfer((balance * 5) / 100); payable(LazyFlownee).transfer((balance * 6) / 100); payable(LazyElf).transfer((balance * 3) / 100); payable(LazyBrah).transfer((balance * 3) / 100); payable(LazyHoodie).transfer((balance * 1) / 100); //Investors split payable(LazyInvestor1).transfer((balance * 12) / 100); payable(LazyInvestor2).transfer((balance * 10) / 100); payable(LazyDescartes).transfer(address(this).balance); } function mintToGiftWinners(address[] calldata accounts) public onlyOwner { require(giveaway_reserved > 0, "All giveaway tokens are minted"); for(uint i = 0; i < accounts.length; i++) { _safeMint(accounts[i], randomIndex()); giveaway_reserved--; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT 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); }
// SPDX-License-Identifier: MIT 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 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 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 pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT 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 pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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 virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); 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 virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _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 { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT 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 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "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"},{"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":"ReedemedPreMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PreMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PublicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_NUMBER_OF_LAZY_BONES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"account","type":"address[]"}],"name":"addToPreMinters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giveaway_reserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"is_pre_mint_allowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"limitReached","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintIsPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"mintToGiftWinners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"index","type":"uint8"}],"name":"ownerOf","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":"pauseMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pausePreMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"preMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"preMintAvailable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preMintIsPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pre_mint_limit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","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":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpauseMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpausePreMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawSplitter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600061271c55606461271d55600361271e55600161272060006101000a81548160ff021916908315150217905550600161272060016101000a81548160ff021916908315150217905550600061272060026101000a81548160ff021916908315150217905550738d6d8e912880e2fc9dc174f18b033f9619c0f63a61272160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507336a59a0b623a4b9ef9d4b4bb11f2aac40b2dc23961272260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507277044ae65e5e43f10101d9432b763afdce540d61272360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507366318d2e71e1ddbe2cc769baca169463e54b851961272460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550735c6b5f156cb3154442e4b486320a0a5916312c9261272560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507309e7c871e020f74d1ee1e30034a90082c435bece61272660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073797074bc5051d705dfe4004482783381e1ab122261272760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073694461dcc47900b2716e4c10322e76737733f78261272860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e8e38eb9c16c17681d26522685b381ea659cac9861272960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060600160405280603781526020016200678d6037913961272a9080519060200190620003a1929190620006ef565b50348015620003af57600080fd5b506040518060400160405280601281526020017f4c617a79426f6e657353706163655472697000000000000000000000000000008152506040518060400160405280600481526020017f4c42535400000000000000000000000000000000000000000000000000000000815250816000908051906020019062000434929190620006ef565b5080600190805190602001906200044d929190620006ef565b5050506200047062000464620004ae60201b60201c565b620004b660201b60201c565b620004a86000801b61272160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200057c60201b60201c565b62000804565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200058e82826200059260201b60201c565b5050565b620005a482826200068460201b60201c565b62000680576001600b600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000625620004ae60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000600b600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054620006fd90620007ce565b90600052602060002090601f0160209004810192826200072157600085556200076d565b82601f106200073c57805160ff19168380011785556200076d565b828001600101855582156200076d579182015b828111156200076c5782518255916020019190600101906200074f565b5b5090506200077c919062000780565b5090565b5b808211156200079b57600081600090555060010162000781565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007e757607f821691505b60208210811415620007fe57620007fd6200079f565b5b50919050565b615f7980620008146000396000f3fe6080604052600436106102cd5760003560e01c8063714c539811610175578063a22cb465116100dc578063c97012cc11610095578063e985e9c51161006f578063e985e9c514610aa8578063f2fde38b14610ae5578063fc718bc314610b0e578063ff4171b414610b37576102d4565b8063c97012cc14610a3d578063cd85cdb514610a68578063d547741f14610a7f576102d4565b8063a22cb46514610941578063a40a65ab1461096a578063a475b5dd14610981578063aa38f95a146109ac578063b88d4fde146109d7578063c87b56dd14610a00576102d4565b80638ee0927b1161012e5780638ee0927b1461085257806391d148541461086957806395d89b41146108a6578063994455cc146108d1578063a0712d68146108fa578063a217fddf14610916576102d4565b8063714c53981461074f578063715018a61461077a57806371a5c855146107915780637d28c5b9146107ce5780638ad433ac1461080b5780638da5cb5b14610827576102d4565b80632f2ff15d1161023457806342842e0e116101ed5780635b8ad429116101c75780635b8ad429146106815780636352211e1461069857806363df3433146106d557806370a0823114610712576102d4565b806342842e0e146105f25780634f6ccce71461061b57806355f804b314610658576102d4565b80632f2ff15d1461050a5780632f745c5914610533578063335b7a921461057057806336568abe1461059b5780633ccfd60b146105c45780634186d939146105db576102d4565b806315fefe7f1161028657806315fefe7f1461040c57806318160ddd146104375780631a8bd2da14610462578063224ec2d11461047957806323b872dd146104a4578063248a9ca3146104cd576102d4565b806301ffc9a7146102d6578063024591ff146103135780630339d8fd1461035057806306fdde031461037b578063081812fc146103a6578063095ea7b3146103e3576102d4565b366102d457005b005b3480156102e257600080fd5b506102fd60048036038101906102f89190614194565b610b62565b60405161030a91906141dc565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190614230565b610b74565b604051610347919061429e565b60405180910390f35b34801561035c57600080fd5b50610365610b95565b60405161037291906142d2565b60405180910390f35b34801561038757600080fd5b50610390610b9c565b60405161039d9190614386565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c891906143d4565b610c2e565b6040516103da919061429e565b60405180910390f35b3480156103ef57600080fd5b5061040a6004803603810190610405919061442d565b610cb3565b005b34801561041857600080fd5b50610421610dcb565b60405161042e91906141dc565b60405180910390f35b34801561044357600080fd5b5061044c610ddf565b60405161045991906142d2565b60405180910390f35b34801561046e57600080fd5b50610477610dec565b005b34801561048557600080fd5b5061048e610e86565b60405161049b91906142d2565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c6919061446d565b610e91565b005b3480156104d957600080fd5b506104f460048036038101906104ef91906144f6565b610ef1565b6040516105019190614532565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c919061454d565b610f11565b005b34801561053f57600080fd5b5061055a6004803603810190610555919061442d565b610f3a565b60405161056791906142d2565b60405180910390f35b34801561057c57600080fd5b50610585610fdf565b60405161059291906141dc565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd919061454d565b610ff3565b005b3480156105d057600080fd5b506105d9611076565b005b3480156105e757600080fd5b506105f0611141565b005b3480156105fe57600080fd5b506106196004803603810190610614919061446d565b61163f565b005b34801561062757600080fd5b50610642600480360381019061063d91906143d4565b61165f565b60405161064f91906142d2565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a91906146c2565b6116d0565b005b34801561068d57600080fd5b50610696611767565b005b3480156106a457600080fd5b506106bf60048036038101906106ba91906143d4565b611811565b6040516106cc919061429e565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f7919061442d565b6118c3565b60405161070991906141dc565b60405180910390f35b34801561071e57600080fd5b506107396004803603810190610734919061470b565b6118e5565b60405161074691906142d2565b60405180910390f35b34801561075b57600080fd5b5061076461199d565b6040516107719190614386565b60405180910390f35b34801561078657600080fd5b5061078f611a30565b005b34801561079d57600080fd5b506107b860048036038101906107b3919061470b565b611ab8565b6040516107c591906141dc565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f0919061470b565b611b0f565b60405161080291906141dc565b60405180910390f35b610825600480360381019061082091906143d4565b611b66565b005b34801561083357600080fd5b5061083c611d57565b604051610849919061429e565b60405180910390f35b34801561085e57600080fd5b50610867611d81565b005b34801561087557600080fd5b50610890600480360381019061088b919061454d565b611e1b565b60405161089d91906141dc565b60405180910390f35b3480156108b257600080fd5b506108bb611e86565b6040516108c89190614386565b60405180910390f35b3480156108dd57600080fd5b506108f860048036038101906108f39190614798565b611f18565b005b610914600480360381019061090f91906143d4565b612051565b005b34801561092257600080fd5b5061092b612236565b6040516109389190614532565b60405180910390f35b34801561094d57600080fd5b5061096860048036038101906109639190614811565b61223d565b005b34801561097657600080fd5b5061097f6123be565b005b34801561098d57600080fd5b50610996612458565b6040516109a391906141dc565b60405180910390f35b3480156109b857600080fd5b506109c161246c565b6040516109ce91906142d2565b60405180910390f35b3480156109e357600080fd5b506109fe60048036038101906109f991906148f2565b612472565b005b348015610a0c57600080fd5b50610a276004803603810190610a2291906143d4565b6124d4565b604051610a349190614386565b60405180910390f35b348015610a4957600080fd5b50610a526125af565b604051610a5f91906142d2565b60405180910390f35b348015610a7457600080fd5b50610a7d6125b6565b005b348015610a8b57600080fd5b50610aa66004803603810190610aa1919061454d565b612650565b005b348015610ab457600080fd5b50610acf6004803603810190610aca9190614975565b612679565b604051610adc91906141dc565b60405180910390f35b348015610af157600080fd5b50610b0c6004803603810190610b07919061470b565b61270d565b005b348015610b1a57600080fd5b50610b356004803603810190610b309190614798565b612805565b005b348015610b4357600080fd5b50610b4c612927565b604051610b5991906142d2565b60405180910390f35b6000610b6d82612932565b9050919050565b6000610b8e60018360ff16610b8991906149e4565b611811565b9050919050565b61271d5481565b606060008054610bab90614a47565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd790614a47565b8015610c245780601f10610bf957610100808354040283529160200191610c24565b820191906000526020600020905b815481529060010190602001808311610c0757829003601f168201915b5050505050905090565b6000610c39826129ac565b610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f90614aeb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cbe82611811565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2690614b7d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d4e612a18565b73ffffffffffffffffffffffffffffffffffffffff161480610d7d5750610d7c81610d77612a18565b612679565b5b610dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db390614c0f565b60405180910390fd5b610dc68383612a20565b505050565b61272060009054906101000a900460ff1681565b6000600880549050905090565b610df4612a18565b73ffffffffffffffffffffffffffffffffffffffff16610e12611d57565b73ffffffffffffffffffffffffffffffffffffffff1614610e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5f90614c7b565b60405180910390fd5b600061272060006101000a81548160ff021916908315150217905550565b668e1bc9bf04000081565b610ea2610e9c612a18565b82612ad9565b610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed890614d0d565b60405180910390fd5b610eec838383612bb7565b505050565b6000600b6000838152602001908152602001600020600101549050919050565b610f1a82610ef1565b610f2b81610f26612a18565b612e13565b610f358383612eb0565b505050565b6000610f45836118e5565b8210610f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7d90614d9f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61272060019054906101000a900460ff1681565b610ffb612a18565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f90614e31565b60405180910390fd5b6110728282612f91565b5050565b61107e612a18565b73ffffffffffffffffffffffffffffffffffffffff1661109c611d57565b73ffffffffffffffffffffffffffffffffffffffff16146110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e990614c7b565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561113d573d6000803e3d6000fd5b5050565b611149612a18565b73ffffffffffffffffffffffffffffffffffffffff16611167611d57565b73ffffffffffffffffffffffffffffffffffffffff16146111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b490614c7b565b60405180910390fd5b600047905061272260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600a8461120e9190614e51565b6112189190614eda565b9081150290604051600060405180830381858888f19350505050158015611243573d6000803e3d6000fd5b5061272360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646005846112909190614e51565b61129a9190614eda565b9081150290604051600060405180830381858888f193505050501580156112c5573d6000803e3d6000fd5b5061272460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646006846113129190614e51565b61131c9190614eda565b9081150290604051600060405180830381858888f19350505050158015611347573d6000803e3d6000fd5b5061272560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646003846113949190614e51565b61139e9190614eda565b9081150290604051600060405180830381858888f193505050501580156113c9573d6000803e3d6000fd5b5061272660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646003846114169190614e51565b6114209190614eda565b9081150290604051600060405180830381858888f1935050505015801561144b573d6000803e3d6000fd5b5061272760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646001846114989190614e51565b6114a29190614eda565b9081150290604051600060405180830381858888f193505050501580156114cd573d6000803e3d6000fd5b5061272860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600c8461151a9190614e51565b6115249190614eda565b9081150290604051600060405180830381858888f1935050505015801561154f573d6000803e3d6000fd5b5061272960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600a8461159c9190614e51565b6115a69190614eda565b9081150290604051600060405180830381858888f193505050501580156115d1573d6000803e3d6000fd5b5061272160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561163b573d6000803e3d6000fd5b5050565b61165a83838360405180602001604052806000815250612472565b505050565b6000611669610ddf565b82106116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a190614f7d565b60405180910390fd5b600882815481106116be576116bd614f9d565b5b90600052602060002001549050919050565b6116d8612a18565b73ffffffffffffffffffffffffffffffffffffffff166116f6611d57565b73ffffffffffffffffffffffffffffffffffffffff161461174c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174390614c7b565b60405180910390fd5b8061272a9080519060200190611763929190614085565b5050565b61176f612a18565b73ffffffffffffffffffffffffffffffffffffffff1661178d611d57565b73ffffffffffffffffffffffffffffffffffffffff16146117e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117da90614c7b565b60405180910390fd5b61272060029054906101000a900460ff161561272060026101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b19061503e565b60405180910390fd5b80915050919050565b60006014826118d1856118e5565b6118db919061505e565b1115905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d90615126565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606061272a80546119ad90614a47565b80601f01602080910402602001604051908101604052809291908181526020018280546119d990614a47565b8015611a265780601f106119fb57610100808354040283529160200191611a26565b820191906000526020600020905b815481529060010190602001808311611a0957829003601f168201915b5050505050905090565b611a38612a18565b73ffffffffffffffffffffffffffffffffffffffff16611a56611d57565b73ffffffffffffffffffffffffffffffffffffffff1614611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa390614c7b565b60405180910390fd5b611ab66000613073565b565b600061271f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600061271f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61272060019054906101000a900460ff1615611bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bae906151b8565b60405180910390fd5b33611bc181611b0f565b611c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf79061524a565b60405180910390fd5b6000611c0b336118e5565b9050668e1bc9bf04000083611c209190614e51565b341015611c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c59906152dc565b60405180910390fd5b61271e548184611c72919061505e565b1115611cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caa9061536e565b60405180910390fd5b61271e548382611cc3919061505e565b10611d2257600061271f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b60005b83811015611d5157611d3e33611d39613139565b6132a0565b8080611d499061538e565b915050611d25565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611d89612a18565b73ffffffffffffffffffffffffffffffffffffffff16611da7611d57565b73ffffffffffffffffffffffffffffffffffffffff1614611dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df490614c7b565b60405180910390fd5b600061272060016101000a81548160ff021916908315150217905550565b6000600b600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054611e9590614a47565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec190614a47565b8015611f0e5780601f10611ee357610100808354040283529160200191611f0e565b820191906000526020600020905b815481529060010190602001808311611ef157829003601f168201915b5050505050905090565b611f20612a18565b73ffffffffffffffffffffffffffffffffffffffff16611f3e611d57565b73ffffffffffffffffffffffffffffffffffffffff1614611f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8b90614c7b565b60405180910390fd5b600061271d5411611fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd190615423565b60405180910390fd5b60005b8282905081101561204c57612020838383818110611ffe57611ffd614f9d565b5b9050602002016020810190612013919061470b565b61201b613139565b6132a0565b61271d600081548092919061203490615443565b919050555080806120449061538e565b915050611fdd565b505050565b61272060009054906101000a900460ff16156120a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612099906154df565b60405180910390fd5b60006120ac610ddf565b905060006120b9336118e5565b905060148311156120ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f69061536e565b60405180910390fd5b6014838261210d919061505e565b111561214e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121459061536e565b60405180910390fd5b61271d5461271061215f91906149e4565b838361216b919061505e565b11156121ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a390615571565b60405180910390fd5b8266d529ae9e8600006121bf9190614e51565b341015612201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f890615603565b60405180910390fd5b60005b838110156122305761221d33612218613139565b6132a0565b80806122289061538e565b915050612204565b50505050565b6000801b81565b612245612a18565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122aa9061566f565b60405180910390fd5b80600560006122c0612a18565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661236d612a18565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123b291906141dc565b60405180910390a35050565b6123c6612a18565b73ffffffffffffffffffffffffffffffffffffffff166123e4611d57565b73ffffffffffffffffffffffffffffffffffffffff161461243a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243190614c7b565b60405180910390fd5b600161272060016101000a81548160ff021916908315150217905550565b61272060029054906101000a900460ff1681565b61271081565b61248361247d612a18565b83612ad9565b6124c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b990614d0d565b60405180910390fd5b6124ce848484846132be565b50505050565b60606124df826129ac565b61251e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251590615701565b60405180910390fd5b600061252861199d565b9050600081511161254857604051806020016040528060008152506125a7565b61272060029054906101000a900460ff1661257b576040518060600160405280602a8152602001615f1a602a91396125a6565b806125858461331a565b6040516020016125969291906157f5565b6040516020818303038152906040525b5b915050919050565b61271e5481565b6125be612a18565b73ffffffffffffffffffffffffffffffffffffffff166125dc611d57565b73ffffffffffffffffffffffffffffffffffffffff1614612632576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262990614c7b565b60405180910390fd5b600161272060006101000a81548160ff021916908315150217905550565b61265982610ef1565b61266a81612665612a18565b612e13565b6126748383612f91565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612715612a18565b73ffffffffffffffffffffffffffffffffffffffff16612733611d57565b73ffffffffffffffffffffffffffffffffffffffff1614612789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278090614c7b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f0906158a1565b60405180910390fd5b61280281613073565b50565b61280d612a18565b73ffffffffffffffffffffffffffffffffffffffff1661282b611d57565b73ffffffffffffffffffffffffffffffffffffffff1614612881576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287890614c7b565b60405180910390fd5b60005b8282905081101561292257600161271f60008585858181106128a9576128a8614f9d565b5b90506020020160208101906128be919061470b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061291a9061538e565b915050612884565b505050565b66d529ae9e86000081565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129a557506129a48261347b565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612a9383611811565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612ae4826129ac565b612b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1a90615933565b60405180910390fd5b6000612b2e83611811565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b9d57508373ffffffffffffffffffffffffffffffffffffffff16612b8584610c2e565b73ffffffffffffffffffffffffffffffffffffffff16145b80612bae5750612bad8185612679565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612bd782611811565b73ffffffffffffffffffffffffffffffffffffffff1614612c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c24906159c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9490615a57565b60405180910390fd5b612ca88383836134f5565b612cb3600082612a20565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d0391906149e4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d5a919061505e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612e1d8282611e1b565b612eac57612e428173ffffffffffffffffffffffffffffffffffffffff166014613609565b612e508360001c6020613609565b604051602001612e61929190615b0f565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea39190614386565b60405180910390fd5b5050565b612eba8282611e1b565b612f8d576001600b600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612f32612a18565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b612f9b8282611e1b565b1561306f576000600b600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550613014612a18565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080613144610ddf565b61271061315191906149e4565b905060008161271c543344426040516020016131709493929190615bb2565b6040516020818303038152906040528051906020012060001c6131939190615c00565b9050600080600c8361271081106131ad576131ac614f9d565b5b0154146131d257600c8261271081106131c9576131c8614f9d565b5b015490506131d6565b8190505b6000600c6001856131e791906149e4565b61271081106131f9576131f8614f9d565b5b0154141561322d5760018361320e91906149e4565b600c83612710811061322357613222614f9d565b5b018190555061326b565b600c60018461323c91906149e4565b612710811061324e5761324d614f9d565b5b0154600c83612710811061326557613264614f9d565b5b01819055505b61271c600081548092919061327f9061538e565b919050555061329860018261384590919063ffffffff16565b935050505090565b6132ba82826040518060200160405280600081525061385b565b5050565b6132c9848484612bb7565b6132d5848484846138b6565b613314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330b90615ca3565b60405180910390fd5b50505050565b60606000821415613362576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613476565b600082905060005b6000821461339457808061337d9061538e565b915050600a8261338d9190614eda565b915061336a565b60008167ffffffffffffffff8111156133b0576133af614597565b5b6040519080825280601f01601f1916602001820160405280156133e25781602001600182028036833780820191505090505b5090505b6000851461346f576001826133fb91906149e4565b9150600a8561340a9190615c00565b6030613416919061505e565b60f81b81838151811061342c5761342b614f9d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134689190614eda565b94506133e6565b8093505050505b919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806134ee57506134ed82613a4d565b5b9050919050565b613500838383613b2f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156135435761353e81613b34565b613582565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613581576135808382613b7d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135c5576135c081613cea565b613604565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613603576136028282613dbb565b5b5b505050565b60606000600283600261361c9190614e51565b613626919061505e565b67ffffffffffffffff81111561363f5761363e614597565b5b6040519080825280601f01601f1916602001820160405280156136715781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106136a9576136a8614f9d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061370d5761370c614f9d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261374d9190614e51565b613757919061505e565b90505b60018111156137f7577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061379957613798614f9d565b5b1a60f81b8282815181106137b0576137af614f9d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806137f090615443565b905061375a565b506000841461383b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383290615d0f565b60405180910390fd5b8091505092915050565b60008183613853919061505e565b905092915050565b6138658383613e3a565b61387260008484846138b6565b6138b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138a890615ca3565b60405180910390fd5b505050565b60006138d78473ffffffffffffffffffffffffffffffffffffffff16614008565b15613a40578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613900612a18565b8786866040518563ffffffff1660e01b81526004016139229493929190615d84565b602060405180830381600087803b15801561393c57600080fd5b505af192505050801561396d57506040513d601f19601f8201168201806040525081019061396a9190615de5565b60015b6139f0573d806000811461399d576040519150601f19603f3d011682016040523d82523d6000602084013e6139a2565b606091505b506000815114156139e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139df90615ca3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613a45565b600190505b949350505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480613b1857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80613b285750613b278261401b565b5b9050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613b8a846118e5565b613b9491906149e4565b9050600060076000848152602001908152602001600020549050818114613c79576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613cfe91906149e4565b9050600060096000848152602001908152602001600020549050600060088381548110613d2e57613d2d614f9d565b5b906000526020600020015490508060088381548110613d5057613d4f614f9d565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613d9f57613d9e615e12565b5b6001900381819060005260206000200160009055905550505050565b6000613dc6836118e5565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ea190615e8d565b60405180910390fd5b613eb3816129ac565b15613ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613eea90615ef9565b60405180910390fd5b613eff600083836134f5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613f4f919061505e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b82805461409190614a47565b90600052602060002090601f0160209004810192826140b357600085556140fa565b82601f106140cc57805160ff19168380011785556140fa565b828001600101855582156140fa579182015b828111156140f95782518255916020019190600101906140de565b5b509050614107919061410b565b5090565b5b8082111561412457600081600090555060010161410c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6141718161413c565b811461417c57600080fd5b50565b60008135905061418e81614168565b92915050565b6000602082840312156141aa576141a9614132565b5b60006141b88482850161417f565b91505092915050565b60008115159050919050565b6141d6816141c1565b82525050565b60006020820190506141f160008301846141cd565b92915050565b600060ff82169050919050565b61420d816141f7565b811461421857600080fd5b50565b60008135905061422a81614204565b92915050565b60006020828403121561424657614245614132565b5b60006142548482850161421b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006142888261425d565b9050919050565b6142988161427d565b82525050565b60006020820190506142b3600083018461428f565b92915050565b6000819050919050565b6142cc816142b9565b82525050565b60006020820190506142e760008301846142c3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561432757808201518184015260208101905061430c565b83811115614336576000848401525b50505050565b6000601f19601f8301169050919050565b6000614358826142ed565b61436281856142f8565b9350614372818560208601614309565b61437b8161433c565b840191505092915050565b600060208201905081810360008301526143a0818461434d565b905092915050565b6143b1816142b9565b81146143bc57600080fd5b50565b6000813590506143ce816143a8565b92915050565b6000602082840312156143ea576143e9614132565b5b60006143f8848285016143bf565b91505092915050565b61440a8161427d565b811461441557600080fd5b50565b60008135905061442781614401565b92915050565b6000806040838503121561444457614443614132565b5b600061445285828601614418565b9250506020614463858286016143bf565b9150509250929050565b60008060006060848603121561448657614485614132565b5b600061449486828701614418565b93505060206144a586828701614418565b92505060406144b6868287016143bf565b9150509250925092565b6000819050919050565b6144d3816144c0565b81146144de57600080fd5b50565b6000813590506144f0816144ca565b92915050565b60006020828403121561450c5761450b614132565b5b600061451a848285016144e1565b91505092915050565b61452c816144c0565b82525050565b60006020820190506145476000830184614523565b92915050565b6000806040838503121561456457614563614132565b5b6000614572858286016144e1565b925050602061458385828601614418565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6145cf8261433c565b810181811067ffffffffffffffff821117156145ee576145ed614597565b5b80604052505050565b6000614601614128565b905061460d82826145c6565b919050565b600067ffffffffffffffff82111561462d5761462c614597565b5b6146368261433c565b9050602081019050919050565b82818337600083830152505050565b600061466561466084614612565b6145f7565b90508281526020810184848401111561468157614680614592565b5b61468c848285614643565b509392505050565b600082601f8301126146a9576146a861458d565b5b81356146b9848260208601614652565b91505092915050565b6000602082840312156146d8576146d7614132565b5b600082013567ffffffffffffffff8111156146f6576146f5614137565b5b61470284828501614694565b91505092915050565b60006020828403121561472157614720614132565b5b600061472f84828501614418565b91505092915050565b600080fd5b600080fd5b60008083601f8401126147585761475761458d565b5b8235905067ffffffffffffffff81111561477557614774614738565b5b6020830191508360208202830111156147915761479061473d565b5b9250929050565b600080602083850312156147af576147ae614132565b5b600083013567ffffffffffffffff8111156147cd576147cc614137565b5b6147d985828601614742565b92509250509250929050565b6147ee816141c1565b81146147f957600080fd5b50565b60008135905061480b816147e5565b92915050565b6000806040838503121561482857614827614132565b5b600061483685828601614418565b9250506020614847858286016147fc565b9150509250929050565b600067ffffffffffffffff82111561486c5761486b614597565b5b6148758261433c565b9050602081019050919050565b600061489561489084614851565b6145f7565b9050828152602081018484840111156148b1576148b0614592565b5b6148bc848285614643565b509392505050565b600082601f8301126148d9576148d861458d565b5b81356148e9848260208601614882565b91505092915050565b6000806000806080858703121561490c5761490b614132565b5b600061491a87828801614418565b945050602061492b87828801614418565b935050604061493c878288016143bf565b925050606085013567ffffffffffffffff81111561495d5761495c614137565b5b614969878288016148c4565b91505092959194509250565b6000806040838503121561498c5761498b614132565b5b600061499a85828601614418565b92505060206149ab85828601614418565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149ef826142b9565b91506149fa836142b9565b925082821015614a0d57614a0c6149b5565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614a5f57607f821691505b60208210811415614a7357614a72614a18565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614ad5602c836142f8565b9150614ae082614a79565b604082019050919050565b60006020820190508181036000830152614b0481614ac8565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b676021836142f8565b9150614b7282614b0b565b604082019050919050565b60006020820190508181036000830152614b9681614b5a565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614bf96038836142f8565b9150614c0482614b9d565b604082019050919050565b60006020820190508181036000830152614c2881614bec565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614c656020836142f8565b9150614c7082614c2f565b602082019050919050565b60006020820190508181036000830152614c9481614c58565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614cf76031836142f8565b9150614d0282614c9b565b604082019050919050565b60006020820190508181036000830152614d2681614cea565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614d89602b836142f8565b9150614d9482614d2d565b604082019050919050565b60006020820190508181036000830152614db881614d7c565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000614e1b602f836142f8565b9150614e2682614dbf565b604082019050919050565b60006020820190508181036000830152614e4a81614e0e565b9050919050565b6000614e5c826142b9565b9150614e67836142b9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ea057614e9f6149b5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ee5826142b9565b9150614ef0836142b9565b925082614f0057614eff614eab565b5b828204905092915050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614f67602c836142f8565b9150614f7282614f0b565b604082019050919050565b60006020820190508181036000830152614f9681614f5a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006150286029836142f8565b915061503382614fcc565b604082019050919050565b600060208201905081810360008301526150578161501b565b9050919050565b6000615069826142b9565b9150615074836142b9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156150a9576150a86149b5565b5b828201905092915050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000615110602a836142f8565b915061511b826150b4565b604082019050919050565b6000602082019050818103600083015261513f81615103565b9050919050565b7f4c617a79426f6e6573205370616365547269703a205072656d696e742069732060008201527f7061757365642100000000000000000000000000000000000000000000000000602082015250565b60006151a26027836142f8565b91506151ad82615146565b604082019050919050565b600060208201905081810360008301526151d181615195565b9050919050565b7f4c617a79426f6e6573205370616365547269703a20596f7520617265206e6f7460008201527f20696e20707265206d696e74206c697374210000000000000000000000000000602082015250565b60006152346032836142f8565b915061523f826151d8565b604082019050919050565b6000602082019050818103600083015261526381615227565b9050919050565b7f4c617a79426f6e65735370616365547269703a2045746865722073656e74206960008201527f73206c657373207468616e205072654d696e7450726963650000000000000000602082015250565b60006152c66038836142f8565b91506152d18261526a565b604082019050919050565b600060208201905081810360008301526152f5816152b9565b9050919050565b7f4c617a79426f6e65735370616365547269703a20596f752063616e206d696e7460008201527f2061206d6178696d756d206f66203230204c617a7920426f6e65730000000000602082015250565b6000615358603b836142f8565b9150615363826152fc565b604082019050919050565b600060208201905081810360008301526153878161534b565b9050919050565b6000615399826142b9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153cc576153cb6149b5565b5b600182019050919050565b7f416c6c20676976656177617920746f6b656e7320617265206d696e7465640000600082015250565b600061540d601e836142f8565b9150615418826153d7565b602082019050919050565b6000602082019050818103600083015261543c81615400565b9050919050565b600061544e826142b9565b91506000821415615462576154616149b5565b5b600182039050919050565b7f4c617a79426f6e6573205370616365547269703a204d696e742069732070617560008201527f7365640000000000000000000000000000000000000000000000000000000000602082015250565b60006154c96023836142f8565b91506154d48261546d565b604082019050919050565b600060208201905081810360008301526154f8816154bc565b9050919050565b7f4c617a79426f6e65735370616365547269703a2045786365656473206d61786960008201527f6d756d204c617a7920426f6e657320737570706c790000000000000000000000602082015250565b600061555b6035836142f8565b9150615566826154ff565b604082019050919050565b6000602082019050818103600083015261558a8161554e565b9050919050565b7f4c617a79426f6e65735370616365547269703a2045746865722073656e74206960008201527f73206c657373207468616e205052494345202a206e756d000000000000000000602082015250565b60006155ed6037836142f8565b91506155f882615591565b604082019050919050565b6000602082019050818103600083015261561c816155e0565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006156596019836142f8565b915061566482615623565b602082019050919050565b600060208201905081810360008301526156888161564c565b9050919050565b7f4c617a79426f6e65735370616365547269703a2055524920717565727920666f60008201527f72206e6f6e6578697374656e7420746f6b656e00000000000000000000000000602082015250565b60006156eb6033836142f8565b91506156f68261568f565b604082019050919050565b6000602082019050818103600083015261571a816156de565b9050919050565b600081905092915050565b6000615737826142ed565b6157418185615721565b9350615751818560208601614309565b80840191505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000615793600183615721565b915061579e8261575d565b600182019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006157df600583615721565b91506157ea826157a9565b600582019050919050565b6000615801828561572c565b915061580c82615786565b9150615818828461572c565b9150615823826157d2565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061588b6026836142f8565b91506158968261582f565b604082019050919050565b600060208201905081810360008301526158ba8161587e565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061591d602c836142f8565b9150615928826158c1565b604082019050919050565b6000602082019050818103600083015261594c81615910565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006159af6029836142f8565b91506159ba82615953565b604082019050919050565b600060208201905081810360008301526159de816159a2565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615a416024836142f8565b9150615a4c826159e5565b604082019050919050565b60006020820190508181036000830152615a7081615a34565b9050919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000615aad601783615721565b9150615ab882615a77565b601782019050919050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000615af9601183615721565b9150615b0482615ac3565b601182019050919050565b6000615b1a82615aa0565b9150615b26828561572c565b9150615b3182615aec565b9150615b3d828461572c565b91508190509392505050565b6000819050919050565b615b64615b5f826142b9565b615b49565b82525050565b60008160601b9050919050565b6000615b8282615b6a565b9050919050565b6000615b9482615b77565b9050919050565b615bac615ba78261427d565b615b89565b82525050565b6000615bbe8287615b53565b602082019150615bce8286615b9b565b601482019150615bde8285615b53565b602082019150615bee8284615b53565b60208201915081905095945050505050565b6000615c0b826142b9565b9150615c16836142b9565b925082615c2657615c25614eab565b5b828206905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615c8d6032836142f8565b9150615c9882615c31565b604082019050919050565b60006020820190508181036000830152615cbc81615c80565b9050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000615cf96020836142f8565b9150615d0482615cc3565b602082019050919050565b60006020820190508181036000830152615d2881615cec565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615d5682615d2f565b615d608185615d3a565b9350615d70818560208601614309565b615d798161433c565b840191505092915050565b6000608082019050615d99600083018761428f565b615da6602083018661428f565b615db360408301856142c3565b8181036060830152615dc58184615d4b565b905095945050505050565b600081519050615ddf81614168565b92915050565b600060208284031215615dfb57615dfa614132565b5b6000615e0984828501615dd0565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615e776020836142f8565b9150615e8282615e41565b602082019050919050565b60006020820190508181036000830152615ea681615e6a565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615ee3601c836142f8565b9150615eee82615ead565b602082019050919050565b60006020820190508181036000830152615f1281615ed6565b905091905056fe68747470733a2f2f6c617a79626f6e65736e66742e696f2f6170692f6c617a79626f6e65732e6a736f6ea2646970667358221220fb14c756d7b3782a7cd90619c2b210ee88b2a33cf4a3d0768732699c9f9eefc264736f6c6343000809003368747470733a2f2f6c617a79626f6e65737370616365747269702e73332e65752d6e6f7274682d312e616d617a6f6e6177732e636f6d2f
Deployed Bytecode
0x6080604052600436106102cd5760003560e01c8063714c539811610175578063a22cb465116100dc578063c97012cc11610095578063e985e9c51161006f578063e985e9c514610aa8578063f2fde38b14610ae5578063fc718bc314610b0e578063ff4171b414610b37576102d4565b8063c97012cc14610a3d578063cd85cdb514610a68578063d547741f14610a7f576102d4565b8063a22cb46514610941578063a40a65ab1461096a578063a475b5dd14610981578063aa38f95a146109ac578063b88d4fde146109d7578063c87b56dd14610a00576102d4565b80638ee0927b1161012e5780638ee0927b1461085257806391d148541461086957806395d89b41146108a6578063994455cc146108d1578063a0712d68146108fa578063a217fddf14610916576102d4565b8063714c53981461074f578063715018a61461077a57806371a5c855146107915780637d28c5b9146107ce5780638ad433ac1461080b5780638da5cb5b14610827576102d4565b80632f2ff15d1161023457806342842e0e116101ed5780635b8ad429116101c75780635b8ad429146106815780636352211e1461069857806363df3433146106d557806370a0823114610712576102d4565b806342842e0e146105f25780634f6ccce71461061b57806355f804b314610658576102d4565b80632f2ff15d1461050a5780632f745c5914610533578063335b7a921461057057806336568abe1461059b5780633ccfd60b146105c45780634186d939146105db576102d4565b806315fefe7f1161028657806315fefe7f1461040c57806318160ddd146104375780631a8bd2da14610462578063224ec2d11461047957806323b872dd146104a4578063248a9ca3146104cd576102d4565b806301ffc9a7146102d6578063024591ff146103135780630339d8fd1461035057806306fdde031461037b578063081812fc146103a6578063095ea7b3146103e3576102d4565b366102d457005b005b3480156102e257600080fd5b506102fd60048036038101906102f89190614194565b610b62565b60405161030a91906141dc565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190614230565b610b74565b604051610347919061429e565b60405180910390f35b34801561035c57600080fd5b50610365610b95565b60405161037291906142d2565b60405180910390f35b34801561038757600080fd5b50610390610b9c565b60405161039d9190614386565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c891906143d4565b610c2e565b6040516103da919061429e565b60405180910390f35b3480156103ef57600080fd5b5061040a6004803603810190610405919061442d565b610cb3565b005b34801561041857600080fd5b50610421610dcb565b60405161042e91906141dc565b60405180910390f35b34801561044357600080fd5b5061044c610ddf565b60405161045991906142d2565b60405180910390f35b34801561046e57600080fd5b50610477610dec565b005b34801561048557600080fd5b5061048e610e86565b60405161049b91906142d2565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c6919061446d565b610e91565b005b3480156104d957600080fd5b506104f460048036038101906104ef91906144f6565b610ef1565b6040516105019190614532565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c919061454d565b610f11565b005b34801561053f57600080fd5b5061055a6004803603810190610555919061442d565b610f3a565b60405161056791906142d2565b60405180910390f35b34801561057c57600080fd5b50610585610fdf565b60405161059291906141dc565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd919061454d565b610ff3565b005b3480156105d057600080fd5b506105d9611076565b005b3480156105e757600080fd5b506105f0611141565b005b3480156105fe57600080fd5b506106196004803603810190610614919061446d565b61163f565b005b34801561062757600080fd5b50610642600480360381019061063d91906143d4565b61165f565b60405161064f91906142d2565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a91906146c2565b6116d0565b005b34801561068d57600080fd5b50610696611767565b005b3480156106a457600080fd5b506106bf60048036038101906106ba91906143d4565b611811565b6040516106cc919061429e565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f7919061442d565b6118c3565b60405161070991906141dc565b60405180910390f35b34801561071e57600080fd5b506107396004803603810190610734919061470b565b6118e5565b60405161074691906142d2565b60405180910390f35b34801561075b57600080fd5b5061076461199d565b6040516107719190614386565b60405180910390f35b34801561078657600080fd5b5061078f611a30565b005b34801561079d57600080fd5b506107b860048036038101906107b3919061470b565b611ab8565b6040516107c591906141dc565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f0919061470b565b611b0f565b60405161080291906141dc565b60405180910390f35b610825600480360381019061082091906143d4565b611b66565b005b34801561083357600080fd5b5061083c611d57565b604051610849919061429e565b60405180910390f35b34801561085e57600080fd5b50610867611d81565b005b34801561087557600080fd5b50610890600480360381019061088b919061454d565b611e1b565b60405161089d91906141dc565b60405180910390f35b3480156108b257600080fd5b506108bb611e86565b6040516108c89190614386565b60405180910390f35b3480156108dd57600080fd5b506108f860048036038101906108f39190614798565b611f18565b005b610914600480360381019061090f91906143d4565b612051565b005b34801561092257600080fd5b5061092b612236565b6040516109389190614532565b60405180910390f35b34801561094d57600080fd5b5061096860048036038101906109639190614811565b61223d565b005b34801561097657600080fd5b5061097f6123be565b005b34801561098d57600080fd5b50610996612458565b6040516109a391906141dc565b60405180910390f35b3480156109b857600080fd5b506109c161246c565b6040516109ce91906142d2565b60405180910390f35b3480156109e357600080fd5b506109fe60048036038101906109f991906148f2565b612472565b005b348015610a0c57600080fd5b50610a276004803603810190610a2291906143d4565b6124d4565b604051610a349190614386565b60405180910390f35b348015610a4957600080fd5b50610a526125af565b604051610a5f91906142d2565b60405180910390f35b348015610a7457600080fd5b50610a7d6125b6565b005b348015610a8b57600080fd5b50610aa66004803603810190610aa1919061454d565b612650565b005b348015610ab457600080fd5b50610acf6004803603810190610aca9190614975565b612679565b604051610adc91906141dc565b60405180910390f35b348015610af157600080fd5b50610b0c6004803603810190610b07919061470b565b61270d565b005b348015610b1a57600080fd5b50610b356004803603810190610b309190614798565b612805565b005b348015610b4357600080fd5b50610b4c612927565b604051610b5991906142d2565b60405180910390f35b6000610b6d82612932565b9050919050565b6000610b8e60018360ff16610b8991906149e4565b611811565b9050919050565b61271d5481565b606060008054610bab90614a47565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd790614a47565b8015610c245780601f10610bf957610100808354040283529160200191610c24565b820191906000526020600020905b815481529060010190602001808311610c0757829003601f168201915b5050505050905090565b6000610c39826129ac565b610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f90614aeb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cbe82611811565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2690614b7d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d4e612a18565b73ffffffffffffffffffffffffffffffffffffffff161480610d7d5750610d7c81610d77612a18565b612679565b5b610dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db390614c0f565b60405180910390fd5b610dc68383612a20565b505050565b61272060009054906101000a900460ff1681565b6000600880549050905090565b610df4612a18565b73ffffffffffffffffffffffffffffffffffffffff16610e12611d57565b73ffffffffffffffffffffffffffffffffffffffff1614610e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5f90614c7b565b60405180910390fd5b600061272060006101000a81548160ff021916908315150217905550565b668e1bc9bf04000081565b610ea2610e9c612a18565b82612ad9565b610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed890614d0d565b60405180910390fd5b610eec838383612bb7565b505050565b6000600b6000838152602001908152602001600020600101549050919050565b610f1a82610ef1565b610f2b81610f26612a18565b612e13565b610f358383612eb0565b505050565b6000610f45836118e5565b8210610f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7d90614d9f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61272060019054906101000a900460ff1681565b610ffb612a18565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f90614e31565b60405180910390fd5b6110728282612f91565b5050565b61107e612a18565b73ffffffffffffffffffffffffffffffffffffffff1661109c611d57565b73ffffffffffffffffffffffffffffffffffffffff16146110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e990614c7b565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561113d573d6000803e3d6000fd5b5050565b611149612a18565b73ffffffffffffffffffffffffffffffffffffffff16611167611d57565b73ffffffffffffffffffffffffffffffffffffffff16146111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b490614c7b565b60405180910390fd5b600047905061272260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600a8461120e9190614e51565b6112189190614eda565b9081150290604051600060405180830381858888f19350505050158015611243573d6000803e3d6000fd5b5061272360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646005846112909190614e51565b61129a9190614eda565b9081150290604051600060405180830381858888f193505050501580156112c5573d6000803e3d6000fd5b5061272460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646006846113129190614e51565b61131c9190614eda565b9081150290604051600060405180830381858888f19350505050158015611347573d6000803e3d6000fd5b5061272560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646003846113949190614e51565b61139e9190614eda565b9081150290604051600060405180830381858888f193505050501580156113c9573d6000803e3d6000fd5b5061272660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646003846114169190614e51565b6114209190614eda565b9081150290604051600060405180830381858888f1935050505015801561144b573d6000803e3d6000fd5b5061272760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646001846114989190614e51565b6114a29190614eda565b9081150290604051600060405180830381858888f193505050501580156114cd573d6000803e3d6000fd5b5061272860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600c8461151a9190614e51565b6115249190614eda565b9081150290604051600060405180830381858888f1935050505015801561154f573d6000803e3d6000fd5b5061272960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600a8461159c9190614e51565b6115a69190614eda565b9081150290604051600060405180830381858888f193505050501580156115d1573d6000803e3d6000fd5b5061272160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561163b573d6000803e3d6000fd5b5050565b61165a83838360405180602001604052806000815250612472565b505050565b6000611669610ddf565b82106116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a190614f7d565b60405180910390fd5b600882815481106116be576116bd614f9d565b5b90600052602060002001549050919050565b6116d8612a18565b73ffffffffffffffffffffffffffffffffffffffff166116f6611d57565b73ffffffffffffffffffffffffffffffffffffffff161461174c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174390614c7b565b60405180910390fd5b8061272a9080519060200190611763929190614085565b5050565b61176f612a18565b73ffffffffffffffffffffffffffffffffffffffff1661178d611d57565b73ffffffffffffffffffffffffffffffffffffffff16146117e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117da90614c7b565b60405180910390fd5b61272060029054906101000a900460ff161561272060026101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b19061503e565b60405180910390fd5b80915050919050565b60006014826118d1856118e5565b6118db919061505e565b1115905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d90615126565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606061272a80546119ad90614a47565b80601f01602080910402602001604051908101604052809291908181526020018280546119d990614a47565b8015611a265780601f106119fb57610100808354040283529160200191611a26565b820191906000526020600020905b815481529060010190602001808311611a0957829003601f168201915b5050505050905090565b611a38612a18565b73ffffffffffffffffffffffffffffffffffffffff16611a56611d57565b73ffffffffffffffffffffffffffffffffffffffff1614611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa390614c7b565b60405180910390fd5b611ab66000613073565b565b600061271f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600061271f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61272060019054906101000a900460ff1615611bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bae906151b8565b60405180910390fd5b33611bc181611b0f565b611c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf79061524a565b60405180910390fd5b6000611c0b336118e5565b9050668e1bc9bf04000083611c209190614e51565b341015611c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c59906152dc565b60405180910390fd5b61271e548184611c72919061505e565b1115611cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caa9061536e565b60405180910390fd5b61271e548382611cc3919061505e565b10611d2257600061271f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b60005b83811015611d5157611d3e33611d39613139565b6132a0565b8080611d499061538e565b915050611d25565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611d89612a18565b73ffffffffffffffffffffffffffffffffffffffff16611da7611d57565b73ffffffffffffffffffffffffffffffffffffffff1614611dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df490614c7b565b60405180910390fd5b600061272060016101000a81548160ff021916908315150217905550565b6000600b600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054611e9590614a47565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec190614a47565b8015611f0e5780601f10611ee357610100808354040283529160200191611f0e565b820191906000526020600020905b815481529060010190602001808311611ef157829003601f168201915b5050505050905090565b611f20612a18565b73ffffffffffffffffffffffffffffffffffffffff16611f3e611d57565b73ffffffffffffffffffffffffffffffffffffffff1614611f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8b90614c7b565b60405180910390fd5b600061271d5411611fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd190615423565b60405180910390fd5b60005b8282905081101561204c57612020838383818110611ffe57611ffd614f9d565b5b9050602002016020810190612013919061470b565b61201b613139565b6132a0565b61271d600081548092919061203490615443565b919050555080806120449061538e565b915050611fdd565b505050565b61272060009054906101000a900460ff16156120a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612099906154df565b60405180910390fd5b60006120ac610ddf565b905060006120b9336118e5565b905060148311156120ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f69061536e565b60405180910390fd5b6014838261210d919061505e565b111561214e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121459061536e565b60405180910390fd5b61271d5461271061215f91906149e4565b838361216b919061505e565b11156121ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a390615571565b60405180910390fd5b8266d529ae9e8600006121bf9190614e51565b341015612201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f890615603565b60405180910390fd5b60005b838110156122305761221d33612218613139565b6132a0565b80806122289061538e565b915050612204565b50505050565b6000801b81565b612245612a18565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122aa9061566f565b60405180910390fd5b80600560006122c0612a18565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661236d612a18565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123b291906141dc565b60405180910390a35050565b6123c6612a18565b73ffffffffffffffffffffffffffffffffffffffff166123e4611d57565b73ffffffffffffffffffffffffffffffffffffffff161461243a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243190614c7b565b60405180910390fd5b600161272060016101000a81548160ff021916908315150217905550565b61272060029054906101000a900460ff1681565b61271081565b61248361247d612a18565b83612ad9565b6124c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b990614d0d565b60405180910390fd5b6124ce848484846132be565b50505050565b60606124df826129ac565b61251e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251590615701565b60405180910390fd5b600061252861199d565b9050600081511161254857604051806020016040528060008152506125a7565b61272060029054906101000a900460ff1661257b576040518060600160405280602a8152602001615f1a602a91396125a6565b806125858461331a565b6040516020016125969291906157f5565b6040516020818303038152906040525b5b915050919050565b61271e5481565b6125be612a18565b73ffffffffffffffffffffffffffffffffffffffff166125dc611d57565b73ffffffffffffffffffffffffffffffffffffffff1614612632576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262990614c7b565b60405180910390fd5b600161272060006101000a81548160ff021916908315150217905550565b61265982610ef1565b61266a81612665612a18565b612e13565b6126748383612f91565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612715612a18565b73ffffffffffffffffffffffffffffffffffffffff16612733611d57565b73ffffffffffffffffffffffffffffffffffffffff1614612789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278090614c7b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f0906158a1565b60405180910390fd5b61280281613073565b50565b61280d612a18565b73ffffffffffffffffffffffffffffffffffffffff1661282b611d57565b73ffffffffffffffffffffffffffffffffffffffff1614612881576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287890614c7b565b60405180910390fd5b60005b8282905081101561292257600161271f60008585858181106128a9576128a8614f9d565b5b90506020020160208101906128be919061470b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061291a9061538e565b915050612884565b505050565b66d529ae9e86000081565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129a557506129a48261347b565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612a9383611811565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612ae4826129ac565b612b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1a90615933565b60405180910390fd5b6000612b2e83611811565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b9d57508373ffffffffffffffffffffffffffffffffffffffff16612b8584610c2e565b73ffffffffffffffffffffffffffffffffffffffff16145b80612bae5750612bad8185612679565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612bd782611811565b73ffffffffffffffffffffffffffffffffffffffff1614612c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c24906159c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9490615a57565b60405180910390fd5b612ca88383836134f5565b612cb3600082612a20565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d0391906149e4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d5a919061505e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612e1d8282611e1b565b612eac57612e428173ffffffffffffffffffffffffffffffffffffffff166014613609565b612e508360001c6020613609565b604051602001612e61929190615b0f565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea39190614386565b60405180910390fd5b5050565b612eba8282611e1b565b612f8d576001600b600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612f32612a18565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b612f9b8282611e1b565b1561306f576000600b600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550613014612a18565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080613144610ddf565b61271061315191906149e4565b905060008161271c543344426040516020016131709493929190615bb2565b6040516020818303038152906040528051906020012060001c6131939190615c00565b9050600080600c8361271081106131ad576131ac614f9d565b5b0154146131d257600c8261271081106131c9576131c8614f9d565b5b015490506131d6565b8190505b6000600c6001856131e791906149e4565b61271081106131f9576131f8614f9d565b5b0154141561322d5760018361320e91906149e4565b600c83612710811061322357613222614f9d565b5b018190555061326b565b600c60018461323c91906149e4565b612710811061324e5761324d614f9d565b5b0154600c83612710811061326557613264614f9d565b5b01819055505b61271c600081548092919061327f9061538e565b919050555061329860018261384590919063ffffffff16565b935050505090565b6132ba82826040518060200160405280600081525061385b565b5050565b6132c9848484612bb7565b6132d5848484846138b6565b613314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330b90615ca3565b60405180910390fd5b50505050565b60606000821415613362576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613476565b600082905060005b6000821461339457808061337d9061538e565b915050600a8261338d9190614eda565b915061336a565b60008167ffffffffffffffff8111156133b0576133af614597565b5b6040519080825280601f01601f1916602001820160405280156133e25781602001600182028036833780820191505090505b5090505b6000851461346f576001826133fb91906149e4565b9150600a8561340a9190615c00565b6030613416919061505e565b60f81b81838151811061342c5761342b614f9d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134689190614eda565b94506133e6565b8093505050505b919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806134ee57506134ed82613a4d565b5b9050919050565b613500838383613b2f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156135435761353e81613b34565b613582565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613581576135808382613b7d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135c5576135c081613cea565b613604565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613603576136028282613dbb565b5b5b505050565b60606000600283600261361c9190614e51565b613626919061505e565b67ffffffffffffffff81111561363f5761363e614597565b5b6040519080825280601f01601f1916602001820160405280156136715781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106136a9576136a8614f9d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061370d5761370c614f9d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261374d9190614e51565b613757919061505e565b90505b60018111156137f7577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061379957613798614f9d565b5b1a60f81b8282815181106137b0576137af614f9d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806137f090615443565b905061375a565b506000841461383b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383290615d0f565b60405180910390fd5b8091505092915050565b60008183613853919061505e565b905092915050565b6138658383613e3a565b61387260008484846138b6565b6138b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138a890615ca3565b60405180910390fd5b505050565b60006138d78473ffffffffffffffffffffffffffffffffffffffff16614008565b15613a40578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613900612a18565b8786866040518563ffffffff1660e01b81526004016139229493929190615d84565b602060405180830381600087803b15801561393c57600080fd5b505af192505050801561396d57506040513d601f19601f8201168201806040525081019061396a9190615de5565b60015b6139f0573d806000811461399d576040519150601f19603f3d011682016040523d82523d6000602084013e6139a2565b606091505b506000815114156139e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139df90615ca3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613a45565b600190505b949350505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480613b1857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80613b285750613b278261401b565b5b9050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613b8a846118e5565b613b9491906149e4565b9050600060076000848152602001908152602001600020549050818114613c79576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613cfe91906149e4565b9050600060096000848152602001908152602001600020549050600060088381548110613d2e57613d2d614f9d565b5b906000526020600020015490508060088381548110613d5057613d4f614f9d565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613d9f57613d9e615e12565b5b6001900381819060005260206000200160009055905550505050565b6000613dc6836118e5565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ea190615e8d565b60405180910390fd5b613eb3816129ac565b15613ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613eea90615ef9565b60405180910390fd5b613eff600083836134f5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613f4f919061505e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b82805461409190614a47565b90600052602060002090601f0160209004810192826140b357600085556140fa565b82601f106140cc57805160ff19168380011785556140fa565b828001600101855582156140fa579182015b828111156140f95782518255916020019190600101906140de565b5b509050614107919061410b565b5090565b5b8082111561412457600081600090555060010161410c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6141718161413c565b811461417c57600080fd5b50565b60008135905061418e81614168565b92915050565b6000602082840312156141aa576141a9614132565b5b60006141b88482850161417f565b91505092915050565b60008115159050919050565b6141d6816141c1565b82525050565b60006020820190506141f160008301846141cd565b92915050565b600060ff82169050919050565b61420d816141f7565b811461421857600080fd5b50565b60008135905061422a81614204565b92915050565b60006020828403121561424657614245614132565b5b60006142548482850161421b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006142888261425d565b9050919050565b6142988161427d565b82525050565b60006020820190506142b3600083018461428f565b92915050565b6000819050919050565b6142cc816142b9565b82525050565b60006020820190506142e760008301846142c3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561432757808201518184015260208101905061430c565b83811115614336576000848401525b50505050565b6000601f19601f8301169050919050565b6000614358826142ed565b61436281856142f8565b9350614372818560208601614309565b61437b8161433c565b840191505092915050565b600060208201905081810360008301526143a0818461434d565b905092915050565b6143b1816142b9565b81146143bc57600080fd5b50565b6000813590506143ce816143a8565b92915050565b6000602082840312156143ea576143e9614132565b5b60006143f8848285016143bf565b91505092915050565b61440a8161427d565b811461441557600080fd5b50565b60008135905061442781614401565b92915050565b6000806040838503121561444457614443614132565b5b600061445285828601614418565b9250506020614463858286016143bf565b9150509250929050565b60008060006060848603121561448657614485614132565b5b600061449486828701614418565b93505060206144a586828701614418565b92505060406144b6868287016143bf565b9150509250925092565b6000819050919050565b6144d3816144c0565b81146144de57600080fd5b50565b6000813590506144f0816144ca565b92915050565b60006020828403121561450c5761450b614132565b5b600061451a848285016144e1565b91505092915050565b61452c816144c0565b82525050565b60006020820190506145476000830184614523565b92915050565b6000806040838503121561456457614563614132565b5b6000614572858286016144e1565b925050602061458385828601614418565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6145cf8261433c565b810181811067ffffffffffffffff821117156145ee576145ed614597565b5b80604052505050565b6000614601614128565b905061460d82826145c6565b919050565b600067ffffffffffffffff82111561462d5761462c614597565b5b6146368261433c565b9050602081019050919050565b82818337600083830152505050565b600061466561466084614612565b6145f7565b90508281526020810184848401111561468157614680614592565b5b61468c848285614643565b509392505050565b600082601f8301126146a9576146a861458d565b5b81356146b9848260208601614652565b91505092915050565b6000602082840312156146d8576146d7614132565b5b600082013567ffffffffffffffff8111156146f6576146f5614137565b5b61470284828501614694565b91505092915050565b60006020828403121561472157614720614132565b5b600061472f84828501614418565b91505092915050565b600080fd5b600080fd5b60008083601f8401126147585761475761458d565b5b8235905067ffffffffffffffff81111561477557614774614738565b5b6020830191508360208202830111156147915761479061473d565b5b9250929050565b600080602083850312156147af576147ae614132565b5b600083013567ffffffffffffffff8111156147cd576147cc614137565b5b6147d985828601614742565b92509250509250929050565b6147ee816141c1565b81146147f957600080fd5b50565b60008135905061480b816147e5565b92915050565b6000806040838503121561482857614827614132565b5b600061483685828601614418565b9250506020614847858286016147fc565b9150509250929050565b600067ffffffffffffffff82111561486c5761486b614597565b5b6148758261433c565b9050602081019050919050565b600061489561489084614851565b6145f7565b9050828152602081018484840111156148b1576148b0614592565b5b6148bc848285614643565b509392505050565b600082601f8301126148d9576148d861458d565b5b81356148e9848260208601614882565b91505092915050565b6000806000806080858703121561490c5761490b614132565b5b600061491a87828801614418565b945050602061492b87828801614418565b935050604061493c878288016143bf565b925050606085013567ffffffffffffffff81111561495d5761495c614137565b5b614969878288016148c4565b91505092959194509250565b6000806040838503121561498c5761498b614132565b5b600061499a85828601614418565b92505060206149ab85828601614418565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149ef826142b9565b91506149fa836142b9565b925082821015614a0d57614a0c6149b5565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614a5f57607f821691505b60208210811415614a7357614a72614a18565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614ad5602c836142f8565b9150614ae082614a79565b604082019050919050565b60006020820190508181036000830152614b0481614ac8565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b676021836142f8565b9150614b7282614b0b565b604082019050919050565b60006020820190508181036000830152614b9681614b5a565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614bf96038836142f8565b9150614c0482614b9d565b604082019050919050565b60006020820190508181036000830152614c2881614bec565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614c656020836142f8565b9150614c7082614c2f565b602082019050919050565b60006020820190508181036000830152614c9481614c58565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614cf76031836142f8565b9150614d0282614c9b565b604082019050919050565b60006020820190508181036000830152614d2681614cea565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614d89602b836142f8565b9150614d9482614d2d565b604082019050919050565b60006020820190508181036000830152614db881614d7c565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000614e1b602f836142f8565b9150614e2682614dbf565b604082019050919050565b60006020820190508181036000830152614e4a81614e0e565b9050919050565b6000614e5c826142b9565b9150614e67836142b9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ea057614e9f6149b5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ee5826142b9565b9150614ef0836142b9565b925082614f0057614eff614eab565b5b828204905092915050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614f67602c836142f8565b9150614f7282614f0b565b604082019050919050565b60006020820190508181036000830152614f9681614f5a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006150286029836142f8565b915061503382614fcc565b604082019050919050565b600060208201905081810360008301526150578161501b565b9050919050565b6000615069826142b9565b9150615074836142b9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156150a9576150a86149b5565b5b828201905092915050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000615110602a836142f8565b915061511b826150b4565b604082019050919050565b6000602082019050818103600083015261513f81615103565b9050919050565b7f4c617a79426f6e6573205370616365547269703a205072656d696e742069732060008201527f7061757365642100000000000000000000000000000000000000000000000000602082015250565b60006151a26027836142f8565b91506151ad82615146565b604082019050919050565b600060208201905081810360008301526151d181615195565b9050919050565b7f4c617a79426f6e6573205370616365547269703a20596f7520617265206e6f7460008201527f20696e20707265206d696e74206c697374210000000000000000000000000000602082015250565b60006152346032836142f8565b915061523f826151d8565b604082019050919050565b6000602082019050818103600083015261526381615227565b9050919050565b7f4c617a79426f6e65735370616365547269703a2045746865722073656e74206960008201527f73206c657373207468616e205072654d696e7450726963650000000000000000602082015250565b60006152c66038836142f8565b91506152d18261526a565b604082019050919050565b600060208201905081810360008301526152f5816152b9565b9050919050565b7f4c617a79426f6e65735370616365547269703a20596f752063616e206d696e7460008201527f2061206d6178696d756d206f66203230204c617a7920426f6e65730000000000602082015250565b6000615358603b836142f8565b9150615363826152fc565b604082019050919050565b600060208201905081810360008301526153878161534b565b9050919050565b6000615399826142b9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153cc576153cb6149b5565b5b600182019050919050565b7f416c6c20676976656177617920746f6b656e7320617265206d696e7465640000600082015250565b600061540d601e836142f8565b9150615418826153d7565b602082019050919050565b6000602082019050818103600083015261543c81615400565b9050919050565b600061544e826142b9565b91506000821415615462576154616149b5565b5b600182039050919050565b7f4c617a79426f6e6573205370616365547269703a204d696e742069732070617560008201527f7365640000000000000000000000000000000000000000000000000000000000602082015250565b60006154c96023836142f8565b91506154d48261546d565b604082019050919050565b600060208201905081810360008301526154f8816154bc565b9050919050565b7f4c617a79426f6e65735370616365547269703a2045786365656473206d61786960008201527f6d756d204c617a7920426f6e657320737570706c790000000000000000000000602082015250565b600061555b6035836142f8565b9150615566826154ff565b604082019050919050565b6000602082019050818103600083015261558a8161554e565b9050919050565b7f4c617a79426f6e65735370616365547269703a2045746865722073656e74206960008201527f73206c657373207468616e205052494345202a206e756d000000000000000000602082015250565b60006155ed6037836142f8565b91506155f882615591565b604082019050919050565b6000602082019050818103600083015261561c816155e0565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006156596019836142f8565b915061566482615623565b602082019050919050565b600060208201905081810360008301526156888161564c565b9050919050565b7f4c617a79426f6e65735370616365547269703a2055524920717565727920666f60008201527f72206e6f6e6578697374656e7420746f6b656e00000000000000000000000000602082015250565b60006156eb6033836142f8565b91506156f68261568f565b604082019050919050565b6000602082019050818103600083015261571a816156de565b9050919050565b600081905092915050565b6000615737826142ed565b6157418185615721565b9350615751818560208601614309565b80840191505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000615793600183615721565b915061579e8261575d565b600182019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006157df600583615721565b91506157ea826157a9565b600582019050919050565b6000615801828561572c565b915061580c82615786565b9150615818828461572c565b9150615823826157d2565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061588b6026836142f8565b91506158968261582f565b604082019050919050565b600060208201905081810360008301526158ba8161587e565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061591d602c836142f8565b9150615928826158c1565b604082019050919050565b6000602082019050818103600083015261594c81615910565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006159af6029836142f8565b91506159ba82615953565b604082019050919050565b600060208201905081810360008301526159de816159a2565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615a416024836142f8565b9150615a4c826159e5565b604082019050919050565b60006020820190508181036000830152615a7081615a34565b9050919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000615aad601783615721565b9150615ab882615a77565b601782019050919050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000615af9601183615721565b9150615b0482615ac3565b601182019050919050565b6000615b1a82615aa0565b9150615b26828561572c565b9150615b3182615aec565b9150615b3d828461572c565b91508190509392505050565b6000819050919050565b615b64615b5f826142b9565b615b49565b82525050565b60008160601b9050919050565b6000615b8282615b6a565b9050919050565b6000615b9482615b77565b9050919050565b615bac615ba78261427d565b615b89565b82525050565b6000615bbe8287615b53565b602082019150615bce8286615b9b565b601482019150615bde8285615b53565b602082019150615bee8284615b53565b60208201915081905095945050505050565b6000615c0b826142b9565b9150615c16836142b9565b925082615c2657615c25614eab565b5b828206905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615c8d6032836142f8565b9150615c9882615c31565b604082019050919050565b60006020820190508181036000830152615cbc81615c80565b9050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000615cf96020836142f8565b9150615d0482615cc3565b602082019050919050565b60006020820190508181036000830152615d2881615cec565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615d5682615d2f565b615d608185615d3a565b9350615d70818560208601614309565b615d798161433c565b840191505092915050565b6000608082019050615d99600083018761428f565b615da6602083018661428f565b615db360408301856142c3565b8181036060830152615dc58184615d4b565b905095945050505050565b600081519050615ddf81614168565b92915050565b600060208284031215615dfb57615dfa614132565b5b6000615e0984828501615dd0565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615e776020836142f8565b9150615e8282615e41565b602082019050919050565b60006020820190508181036000830152615ea681615e6a565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615ee3601c836142f8565b9150615eee82615ead565b602082019050919050565b60006020820190508181036000830152615f1281615ed6565b905091905056fe68747470733a2f2f6c617a79626f6e65736e66742e696f2f6170692f6c617a79626f6e65732e6a736f6ea2646970667358221220fb14c756d7b3782a7cd90619c2b210ee88b2a33cf4a3d0768732699c9f9eefc264736f6c63430008090033
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.