ERC-721
Overview
Max Total Supply
10,000 CASTLE KID
Holders
4,418
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 CASTLE KIDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CastleKidCollection
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
No with 200 runs
Other Settings:
petersburg EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // _________ __ .__ ____ __.__ .___ // \_ ___ \_____ _______/ |_| | ____ | |/ _|__| __| _/ // / \ \/\__ \ / ___/\ __\ | _/ __ \ | < | |/ __ | // \ \____/ __ \_\___ \ | | | |_\ ___/ | | \| / /_/ | // \______ (____ /____ > |__| |____/\___ > |____|__ \__\____ | // \/ \/ \/ \/ \/ \/ import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; /** * @title CastleKid contract * @dev Extends ERC721 Non-Fungible Token Standard basic implementation */ contract CastleKidCollection is ERC721, ERC721Enumerable, Ownable { string public CASTLE_PROVENANCE = ""; bool public saleIsActive = false; bool public isWhiteListActive = false; string _baseTokenURI; constructor(string memory baseURI) ERC721("Castle Kid", "CASTLE KID") { _baseTokenURI = baseURI; } function reserve(address[] calldata to) public onlyOwner { for (uint256 i = 0; i < to.length; i++) { uint256 ts = totalSupply(); _safeMint(to[i], ts + 1); } } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } /* * Reservation List Sale */ function setIsWhiteListActive() external onlyOwner { isWhiteListActive = !isWhiteListActive; } function mintWhiteList(uint8 numberOfTokens) external payable { require(isWhiteListActive, "Allow list is not active"); require(balanceOf(msg.sender) + numberOfTokens <= 2, "Limit is 2 tokens per wallet, sale not allowed"); require(msg.sender == tx.origin, "No transaction from smart contracts!"); require(totalSupply() + numberOfTokens <= 10000, "Purchase would exceed max supply of CastleKids"); require(0.08 ether * numberOfTokens <= msg.value, "Ether value sent is not correct"); for (uint256 i = 0; i < numberOfTokens; i++) { uint256 ts = totalSupply(); _safeMint(msg.sender, ts + 1); } } /* * Set provenance once it's calculated */ function setProvenanceHash(string memory provenanceHash) public onlyOwner { CASTLE_PROVENANCE = provenanceHash; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } /* * Pause sale if active, make active if paused */ function flipSaleState() public onlyOwner { saleIsActive = !saleIsActive; } /** * Mint CastleKids */ function mintCastleKid(uint numberOfTokens) public payable { require(saleIsActive, "Sale must be active to mint Castle Kid"); require(msg.sender == tx.origin, "No transaction from smart contracts!"); require(numberOfTokens <= 5, "Can only mint 5 tokens at a time"); require(totalSupply() + numberOfTokens <= 10000, "Purchase would exceed max supply of CastleKids"); require(0.100 ether * numberOfTokens <= msg.value, "Ether value sent is not correct"); for(uint i = 0; i < numberOfTokens; i++) { uint mintIndex = totalSupply(); if (totalSupply() < 10000) { _safeMint(msg.sender, mintIndex + 1); } } } /* * Withdraw Contract Balance */ // withdraw addresses address t1 = 0xEa122118c3F3B29EF5Ab0aec93De1A4Ff10dB557; //CastleKid address t2 = 0x2206168CdE2b3652E2488d9a1283531A4d200aea; //Kev address t3 = 0x6a38D9c83bF780aCF34E90047D44e692221C6Aa7; //Sifu function withdraw() public onlyOwner { require(payable(msg.sender).send(address(this).balance)); } function withdrawAll() public payable onlyOwner { uint256 _core = address(this).balance * 92/100; uint256 _kevy = address(this).balance * 4/100; uint256 _sifu = address(this).balance * 4/100; require(payable(t1).send(_core)); require(payable(t2).send(_kevy)); require(payable(t3).send(_sifu)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 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 // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol) 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 // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol) 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 { _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @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 // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "petersburg", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CASTLE_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhiteListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintCastleKid","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"}],"name":"mintWhiteList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"}],"name":"reserve","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"setIsWhiteListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600b90805190602001906200002b92919062000342565b506000600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff02191690831515021790555073ea122118c3f3b29ef5ab0aec93de1a4ff10db557600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550732206168cde2b3652e2488d9a1283531a4d200aea600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550736a38d9c83bf780acf34e90047d44e692221c6aa7601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200016e57600080fd5b5060405162004d3d38038062004d3d833981810160405281019062000194919062000464565b6040518060400160405280600a81526020017f436173746c65204b6964000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f434153544c45204b49440000000000000000000000000000000000000000000081525081600090805190602001906200021892919062000342565b5080600190805190602001906200023192919062000342565b50505062000254620002486200027460201b60201c565b6200027c60201b60201c565b80600d90805190602001906200026c92919062000342565b5050620005da565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003509062000546565b90600052602060002090601f016020900481019282620003745760008555620003c0565b82601f106200038f57805160ff1916838001178555620003c0565b82800160010185558215620003c0579182015b82811115620003bf578251825591602001919060010190620003a2565b5b509050620003cf9190620003d3565b5090565b5b80821115620003ee576000816000905550600101620003d4565b5090565b6000620004096200040384620004dd565b620004a9565b9050828152602081018484840111156200042257600080fd5b6200042f84828562000510565b509392505050565b600082601f8301126200044957600080fd5b81516200045b848260208601620003f2565b91505092915050565b6000602082840312156200047757600080fd5b600082015167ffffffffffffffff8111156200049257600080fd5b620004a08482850162000437565b91505092915050565b6000604051905081810181811067ffffffffffffffff82111715620004d357620004d2620005ab565b5b8060405250919050565b600067ffffffffffffffff821115620004fb57620004fa620005ab565b5b601f19601f8301169050602081019050919050565b60005b838110156200053057808201518184015260208101905062000513565b8381111562000540576000848401525b50505050565b600060028204905060018216806200055f57607f821691505b602082108114156200057657620005756200057c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61475380620005ea6000396000f3fe6080604052600436106101d85760003560e01c80636352211e11610102578063b499315211610095578063d682ed8611610064578063d682ed8614610647578063e985e9c514610670578063eb8d2444146106ad578063f2fde38b146106d8576101d8565b8063b4993152146105ae578063b88d4fde146105ca578063c1430ffa146105f3578063c87b56dd1461060a576101d8565b80638da5cb5b116100d15780638da5cb5b1461050457806395d89b411461052f578063a22cb4651461055a578063b3f6272514610583576101d8565b80636352211e1461046957806370a08231146104a6578063715018a6146104e3578063853828b6146104fa576101d8565b80632f745c591161017a57806342842e0e1161014957806342842e0e146103af5780634f6ccce7146103d857806355f804b314610415578063573f5dae1461043e576101d8565b80632f745c591461032857806334918dfd146103655780633ccfd60b1461037c5780633e4b245514610393576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806310969523146102ab57806318160ddd146102d457806323b872dd146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff919061338b565b610701565b6040516102119190613eb7565b60405180910390f35b34801561022657600080fd5b5061022f610713565b60405161023c9190613ed2565b60405180910390f35b34801561025157600080fd5b5061026c6004803603810190610267919061341e565b6107a5565b6040516102799190613e50565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a4919061330a565b61082a565b005b3480156102b757600080fd5b506102d260048036038101906102cd91906133dd565b610942565b005b3480156102e057600080fd5b506102e96109d8565b6040516102f69190614214565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190613204565b6109e5565b005b34801561033457600080fd5b5061034f600480360381019061034a919061330a565b610a45565b60405161035c9190614214565b60405180910390f35b34801561037157600080fd5b5061037a610aea565b005b34801561038857600080fd5b50610391610b92565b005b6103ad60048036038101906103a8919061341e565b610c65565b005b3480156103bb57600080fd5b506103d660048036038101906103d19190613204565b610e6a565b005b3480156103e457600080fd5b506103ff60048036038101906103fa919061341e565b610e8a565b60405161040c9190614214565b60405180910390f35b34801561042157600080fd5b5061043c600480360381019061043791906133dd565b610f21565b005b34801561044a57600080fd5b50610453610fb7565b6040516104609190613eb7565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b919061341e565b610fca565b60405161049d9190613e50565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c8919061319f565b61107c565b6040516104da9190614214565b60405180910390f35b3480156104ef57600080fd5b506104f8611134565b005b6105026111bc565b005b34801561051057600080fd5b506105196113f9565b6040516105269190613e50565b60405180910390f35b34801561053b57600080fd5b50610544611423565b6040516105519190613ed2565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c91906132ce565b6114b5565b005b34801561058f57600080fd5b506105986114cb565b6040516105a59190613ed2565b60405180910390f35b6105c860048036038101906105c39190613447565b611559565b005b3480156105d657600080fd5b506105f160048036038101906105ec9190613253565b611775565b005b3480156105ff57600080fd5b506106086117d7565b005b34801561061657600080fd5b50610631600480360381019061062c919061341e565b61187f565b60405161063e9190613ed2565b60405180910390f35b34801561065357600080fd5b5061066e60048036038101906106699190613346565b611926565b005b34801561067c57600080fd5b50610697600480360381019061069291906131c8565b611a38565b6040516106a49190613eb7565b60405180910390f35b3480156106b957600080fd5b506106c2611acc565b6040516106cf9190613eb7565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa919061319f565b611adf565b005b600061070c82611bd7565b9050919050565b60606000805461072290614531565b80601f016020809104026020016040519081016040528092919081815260200182805461074e90614531565b801561079b5780601f106107705761010080835404028352916020019161079b565b820191906000526020600020905b81548152906001019060200180831161077e57829003601f168201915b5050505050905090565b60006107b082611c51565b6107ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e6906140b4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083582610fca565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089d90614174565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108c5611cbd565b73ffffffffffffffffffffffffffffffffffffffff1614806108f457506108f3816108ee611cbd565b611a38565b5b610933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092a90614034565b60405180910390fd5b61093d8383611cc5565b505050565b61094a611cbd565b73ffffffffffffffffffffffffffffffffffffffff166109686113f9565b73ffffffffffffffffffffffffffffffffffffffff16146109be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b5906140d4565b60405180910390fd5b80600b90805190602001906109d4929190612f64565b5050565b6000600880549050905090565b6109f66109f0611cbd565b82611d7e565b610a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2c90614194565b60405180910390fd5b610a40838383611e5c565b505050565b6000610a508361107c565b8210610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8890613f34565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610af2611cbd565b73ffffffffffffffffffffffffffffffffffffffff16610b106113f9565b73ffffffffffffffffffffffffffffffffffffffff1614610b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5d906140d4565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b610b9a611cbd565b73ffffffffffffffffffffffffffffffffffffffff16610bb86113f9565b73ffffffffffffffffffffffffffffffffffffffff1614610c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c05906140d4565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050610c6357600080fd5b565b600c60009054906101000a900460ff16610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab906141d4565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1990614154565b60405180910390fd5b6005811115610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d90613f14565b60405180910390fd5b61271081610d726109d8565b610d7c9190614303565b1115610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db490614134565b60405180910390fd5b348167016345785d8a0000610dd2919061438a565b1115610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a90613ff4565b60405180910390fd5b60005b81811015610e66576000610e286109d8565b9050612710610e356109d8565b1015610e5257610e5133600183610e4c9190614303565b6120b8565b5b508080610e5e90614563565b915050610e16565b5050565b610e8583838360405180602001604052806000815250611775565b505050565b6000610e946109d8565b8210610ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecc906141b4565b60405180910390fd5b60088281548110610f0f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610f29611cbd565b73ffffffffffffffffffffffffffffffffffffffff16610f476113f9565b73ffffffffffffffffffffffffffffffffffffffff1614610f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f94906140d4565b60405180910390fd5b80600d9080519060200190610fb3929190612f64565b5050565b600c60019054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106a90614074565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e490614054565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61113c611cbd565b73ffffffffffffffffffffffffffffffffffffffff1661115a6113f9565b73ffffffffffffffffffffffffffffffffffffffff16146111b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a7906140d4565b60405180910390fd5b6111ba60006120d6565b565b6111c4611cbd565b73ffffffffffffffffffffffffffffffffffffffff166111e26113f9565b73ffffffffffffffffffffffffffffffffffffffff1614611238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122f906140d4565b60405180910390fd5b60006064605c3073ffffffffffffffffffffffffffffffffffffffff1631611260919061438a565b61126a9190614359565b90506000606460043073ffffffffffffffffffffffffffffffffffffffff1631611294919061438a565b61129e9190614359565b90506000606460043073ffffffffffffffffffffffffffffffffffffffff16316112c8919061438a565b6112d29190614359565b9050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f1935050505061133457600080fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505061139457600080fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506113f457600080fd5b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461143290614531565b80601f016020809104026020016040519081016040528092919081815260200182805461145e90614531565b80156114ab5780601f10611480576101008083540402835291602001916114ab565b820191906000526020600020905b81548152906001019060200180831161148e57829003601f168201915b5050505050905090565b6114c76114c0611cbd565b838361219c565b5050565b600b80546114d890614531565b80601f016020809104026020016040519081016040528092919081815260200182805461150490614531565b80156115515780601f1061152657610100808354040283529160200191611551565b820191906000526020600020905b81548152906001019060200180831161153457829003601f168201915b505050505081565b600c60019054906101000a900460ff166115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f906141f4565b60405180910390fd5b60028160ff166115b73361107c565b6115c19190614303565b1115611602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f990613ef4565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611670576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166790614154565b60405180910390fd5b6127108160ff1661167f6109d8565b6116899190614303565b11156116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190614134565b60405180910390fd5b348160ff1667011c37937e0800006116e291906143e4565b67ffffffffffffffff16111561172d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172490613ff4565b60405180910390fd5b60005b8160ff168110156117715760006117456109d8565b905061175d336001836117589190614303565b6120b8565b50808061176990614563565b915050611730565b5050565b611786611780611cbd565b83611d7e565b6117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc90614194565b60405180910390fd5b6117d184848484612309565b50505050565b6117df611cbd565b73ffffffffffffffffffffffffffffffffffffffff166117fd6113f9565b73ffffffffffffffffffffffffffffffffffffffff1614611853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184a906140d4565b60405180910390fd5b600c60019054906101000a900460ff1615600c60016101000a81548160ff021916908315150217905550565b606061188a82611c51565b6118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c090614114565b60405180910390fd5b60006118d3612365565b905060008151116118f3576040518060200160405280600081525061191e565b806118fd846123f7565b60405160200161190e929190613e2c565b6040516020818303038152906040525b915050919050565b61192e611cbd565b73ffffffffffffffffffffffffffffffffffffffff1661194c6113f9565b73ffffffffffffffffffffffffffffffffffffffff16146119a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611999906140d4565b60405180910390fd5b60005b82829050811015611a335760006119ba6109d8565b9050611a1f8484848181106119f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611a0d919061319f565b600183611a1a9190614303565b6120b8565b508080611a2b90614563565b9150506119a5565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c60009054906101000a900460ff1681565b611ae7611cbd565b73ffffffffffffffffffffffffffffffffffffffff16611b056113f9565b73ffffffffffffffffffffffffffffffffffffffff1614611b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b52906140d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc290613f74565b60405180910390fd5b611bd4816120d6565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c4a5750611c49826125a4565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d3883610fca565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d8982611c51565b611dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbf90614014565b60405180910390fd5b6000611dd383610fca565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e4257508373ffffffffffffffffffffffffffffffffffffffff16611e2a846107a5565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e535750611e528185611a38565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e7c82610fca565b73ffffffffffffffffffffffffffffffffffffffff1614611ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec9906140f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3990613fb4565b60405180910390fd5b611f4d838383612686565b611f58600082611cc5565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fa89190614426565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fff9190614303565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6120d2828260405180602001604052806000815250612696565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561220b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220290613fd4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122fc9190613eb7565b60405180910390a3505050565b612314848484611e5c565b612320848484846126f1565b61235f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235690613f54565b60405180910390fd5b50505050565b6060600d805461237490614531565b80601f01602080910402602001604051908101604052809291908181526020018280546123a090614531565b80156123ed5780601f106123c2576101008083540402835291602001916123ed565b820191906000526020600020905b8154815290600101906020018083116123d057829003601f168201915b5050505050905090565b6060600082141561243f576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061259f565b600082905060005b6000821461247157808061245a90614563565b915050600a8261246a9190614359565b9150612447565b60008167ffffffffffffffff8111156124b3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124e55781602001600182028036833780820191505090505b5090505b60008514612598576001826124fe9190614426565b9150600a8561250d91906145ac565b60306125199190614303565b60f81b818381518110612555577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125919190614359565b94506124e9565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061266f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061267f575061267e82612888565b5b9050919050565b6126918383836128f2565b505050565b6126a08383612a06565b6126ad60008484846126f1565b6126ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e390613f54565b60405180910390fd5b505050565b60006127128473ffffffffffffffffffffffffffffffffffffffff16612bd4565b1561287b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261273b611cbd565b8786866040518563ffffffff1660e01b815260040161275d9493929190613e6b565b602060405180830381600087803b15801561277757600080fd5b505af19250505080156127a857506040513d601f19601f820116820180604052508101906127a591906133b4565b60015b61282b573d80600081146127d8576040519150601f19603f3d011682016040523d82523d6000602084013e6127dd565b606091505b50600081511415612823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281a90613f54565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612880565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6128fd838383612be7565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129405761293b81612bec565b61297f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461297e5761297d8382612c35565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129c2576129bd81612da2565b612a01565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a00576129ff8282612ee5565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6d90614094565b60405180910390fd5b612a7f81611c51565b15612abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab690613f94565b60405180910390fd5b612acb60008383612686565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b1b9190614303565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612c428461107c565b612c4c9190614426565b9050600060076000848152602001908152602001600020549050818114612d31576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612db69190614426565b9050600060096000848152602001908152602001600020549050600060088381548110612e0c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612e54577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612ec9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612ef08361107c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612f7090614531565b90600052602060002090601f016020900481019282612f925760008555612fd9565b82601f10612fab57805160ff1916838001178555612fd9565b82800160010185558215612fd9579182015b82811115612fd8578251825591602001919060010190612fbd565b5b509050612fe69190612fea565b5090565b5b80821115613003576000816000905550600101612feb565b5090565b600061301a61301584614260565b61422f565b90508281526020810184848401111561303257600080fd5b61303d8482856144ef565b509392505050565b600061305861305384614290565b61422f565b90508281526020810184848401111561307057600080fd5b61307b8482856144ef565b509392505050565b600081359050613092816146aa565b92915050565b60008083601f8401126130aa57600080fd5b8235905067ffffffffffffffff8111156130c357600080fd5b6020830191508360208202830111156130db57600080fd5b9250929050565b6000813590506130f1816146c1565b92915050565b600081359050613106816146d8565b92915050565b60008151905061311b816146d8565b92915050565b600082601f83011261313257600080fd5b8135613142848260208601613007565b91505092915050565b600082601f83011261315c57600080fd5b813561316c848260208601613045565b91505092915050565b600081359050613184816146ef565b92915050565b60008135905061319981614706565b92915050565b6000602082840312156131b157600080fd5b60006131bf84828501613083565b91505092915050565b600080604083850312156131db57600080fd5b60006131e985828601613083565b92505060206131fa85828601613083565b9150509250929050565b60008060006060848603121561321957600080fd5b600061322786828701613083565b935050602061323886828701613083565b925050604061324986828701613175565b9150509250925092565b6000806000806080858703121561326957600080fd5b600061327787828801613083565b945050602061328887828801613083565b935050604061329987828801613175565b925050606085013567ffffffffffffffff8111156132b657600080fd5b6132c287828801613121565b91505092959194509250565b600080604083850312156132e157600080fd5b60006132ef85828601613083565b9250506020613300858286016130e2565b9150509250929050565b6000806040838503121561331d57600080fd5b600061332b85828601613083565b925050602061333c85828601613175565b9150509250929050565b6000806020838503121561335957600080fd5b600083013567ffffffffffffffff81111561337357600080fd5b61337f85828601613098565b92509250509250929050565b60006020828403121561339d57600080fd5b60006133ab848285016130f7565b91505092915050565b6000602082840312156133c657600080fd5b60006133d48482850161310c565b91505092915050565b6000602082840312156133ef57600080fd5b600082013567ffffffffffffffff81111561340957600080fd5b6134158482850161314b565b91505092915050565b60006020828403121561343057600080fd5b600061343e84828501613175565b91505092915050565b60006020828403121561345957600080fd5b60006134678482850161318a565b91505092915050565b6134798161445a565b82525050565b6134888161446c565b82525050565b6000613499826142c0565b6134a381856142d6565b93506134b38185602086016144fe565b6134bc81614699565b840191505092915050565b60006134d2826142cb565b6134dc81856142e7565b93506134ec8185602086016144fe565b6134f581614699565b840191505092915050565b600061350b826142cb565b61351581856142f8565b93506135258185602086016144fe565b80840191505092915050565b600061353e602e836142e7565b91507f4c696d6974206973203220746f6b656e73207065722077616c6c65742c20736160008301527f6c65206e6f7420616c6c6f7765640000000000000000000000000000000000006020830152604082019050919050565b60006135a46020836142e7565b91507f43616e206f6e6c79206d696e74203520746f6b656e7320617420612074696d656000830152602082019050919050565b60006135e4602b836142e7565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b600061364a6032836142e7565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006136b06026836142e7565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613716601c836142e7565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006137566024836142e7565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137bc6019836142e7565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006137fc601f836142e7565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b600061383c602c836142e7565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006138a26038836142e7565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613908602a836142e7565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061396e6029836142e7565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006139d46020836142e7565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613a14602c836142e7565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613a7a6020836142e7565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613aba6029836142e7565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b20602f836142e7565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613b86602e836142e7565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620436173746c654b6964730000000000000000000000000000000000006020830152604082019050919050565b6000613bec6024836142e7565b91507f4e6f207472616e73616374696f6e2066726f6d20736d61727420636f6e74726160008301527f63747321000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c526021836142e7565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cb86031836142e7565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613d1e602c836142e7565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000613d846026836142e7565b91507f53616c65206d7573742062652061637469766520746f206d696e74204361737460008301527f6c65204b696400000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613dea6018836142e7565b91507f416c6c6f77206c697374206973206e6f742061637469766500000000000000006000830152602082019050919050565b613e26816144c4565b82525050565b6000613e388285613500565b9150613e448284613500565b91508190509392505050565b6000602082019050613e656000830184613470565b92915050565b6000608082019050613e806000830187613470565b613e8d6020830186613470565b613e9a6040830185613e1d565b8181036060830152613eac818461348e565b905095945050505050565b6000602082019050613ecc600083018461347f565b92915050565b60006020820190508181036000830152613eec81846134c7565b905092915050565b60006020820190508181036000830152613f0d81613531565b9050919050565b60006020820190508181036000830152613f2d81613597565b9050919050565b60006020820190508181036000830152613f4d816135d7565b9050919050565b60006020820190508181036000830152613f6d8161363d565b9050919050565b60006020820190508181036000830152613f8d816136a3565b9050919050565b60006020820190508181036000830152613fad81613709565b9050919050565b60006020820190508181036000830152613fcd81613749565b9050919050565b60006020820190508181036000830152613fed816137af565b9050919050565b6000602082019050818103600083015261400d816137ef565b9050919050565b6000602082019050818103600083015261402d8161382f565b9050919050565b6000602082019050818103600083015261404d81613895565b9050919050565b6000602082019050818103600083015261406d816138fb565b9050919050565b6000602082019050818103600083015261408d81613961565b9050919050565b600060208201905081810360008301526140ad816139c7565b9050919050565b600060208201905081810360008301526140cd81613a07565b9050919050565b600060208201905081810360008301526140ed81613a6d565b9050919050565b6000602082019050818103600083015261410d81613aad565b9050919050565b6000602082019050818103600083015261412d81613b13565b9050919050565b6000602082019050818103600083015261414d81613b79565b9050919050565b6000602082019050818103600083015261416d81613bdf565b9050919050565b6000602082019050818103600083015261418d81613c45565b9050919050565b600060208201905081810360008301526141ad81613cab565b9050919050565b600060208201905081810360008301526141cd81613d11565b9050919050565b600060208201905081810360008301526141ed81613d77565b9050919050565b6000602082019050818103600083015261420d81613ddd565b9050919050565b60006020820190506142296000830184613e1d565b92915050565b6000604051905081810181811067ffffffffffffffff821117156142565761425561466a565b5b8060405250919050565b600067ffffffffffffffff82111561427b5761427a61466a565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156142ab576142aa61466a565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061430e826144c4565b9150614319836144c4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561434e5761434d6145dd565b5b828201905092915050565b6000614364826144c4565b915061436f836144c4565b92508261437f5761437e61460c565b5b828204905092915050565b6000614395826144c4565b91506143a0836144c4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143d9576143d86145dd565b5b828202905092915050565b60006143ef826144ce565b91506143fa836144ce565b92508167ffffffffffffffff048311821515161561441b5761441a6145dd565b5b828202905092915050565b6000614431826144c4565b915061443c836144c4565b92508282101561444f5761444e6145dd565b5b828203905092915050565b6000614465826144a4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561451c578082015181840152602081019050614501565b8381111561452b576000848401525b50505050565b6000600282049050600182168061454957607f821691505b6020821081141561455d5761455c61463b565b5b50919050565b600061456e826144c4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145a1576145a06145dd565b5b600182019050919050565b60006145b7826144c4565b91506145c2836144c4565b9250826145d2576145d161460c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6146b38161445a565b81146146be57600080fd5b50565b6146ca8161446c565b81146146d557600080fd5b50565b6146e181614478565b81146146ec57600080fd5b50565b6146f8816144c4565b811461470357600080fd5b50565b61470f816144e2565b811461471a57600080fd5b5056fea2646970667358221220729975a1cf26137bc993b932b4ff7b78032987b0e1a1761f2e45942a2a9d1a4364736f6c634300080000330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d53466646614d66573962675a356e7546384c55433732415a375147694d74576e4244413948434632647a63352f000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101d85760003560e01c80636352211e11610102578063b499315211610095578063d682ed8611610064578063d682ed8614610647578063e985e9c514610670578063eb8d2444146106ad578063f2fde38b146106d8576101d8565b8063b4993152146105ae578063b88d4fde146105ca578063c1430ffa146105f3578063c87b56dd1461060a576101d8565b80638da5cb5b116100d15780638da5cb5b1461050457806395d89b411461052f578063a22cb4651461055a578063b3f6272514610583576101d8565b80636352211e1461046957806370a08231146104a6578063715018a6146104e3578063853828b6146104fa576101d8565b80632f745c591161017a57806342842e0e1161014957806342842e0e146103af5780634f6ccce7146103d857806355f804b314610415578063573f5dae1461043e576101d8565b80632f745c591461032857806334918dfd146103655780633ccfd60b1461037c5780633e4b245514610393576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806310969523146102ab57806318160ddd146102d457806323b872dd146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff919061338b565b610701565b6040516102119190613eb7565b60405180910390f35b34801561022657600080fd5b5061022f610713565b60405161023c9190613ed2565b60405180910390f35b34801561025157600080fd5b5061026c6004803603810190610267919061341e565b6107a5565b6040516102799190613e50565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a4919061330a565b61082a565b005b3480156102b757600080fd5b506102d260048036038101906102cd91906133dd565b610942565b005b3480156102e057600080fd5b506102e96109d8565b6040516102f69190614214565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190613204565b6109e5565b005b34801561033457600080fd5b5061034f600480360381019061034a919061330a565b610a45565b60405161035c9190614214565b60405180910390f35b34801561037157600080fd5b5061037a610aea565b005b34801561038857600080fd5b50610391610b92565b005b6103ad60048036038101906103a8919061341e565b610c65565b005b3480156103bb57600080fd5b506103d660048036038101906103d19190613204565b610e6a565b005b3480156103e457600080fd5b506103ff60048036038101906103fa919061341e565b610e8a565b60405161040c9190614214565b60405180910390f35b34801561042157600080fd5b5061043c600480360381019061043791906133dd565b610f21565b005b34801561044a57600080fd5b50610453610fb7565b6040516104609190613eb7565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b919061341e565b610fca565b60405161049d9190613e50565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c8919061319f565b61107c565b6040516104da9190614214565b60405180910390f35b3480156104ef57600080fd5b506104f8611134565b005b6105026111bc565b005b34801561051057600080fd5b506105196113f9565b6040516105269190613e50565b60405180910390f35b34801561053b57600080fd5b50610544611423565b6040516105519190613ed2565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c91906132ce565b6114b5565b005b34801561058f57600080fd5b506105986114cb565b6040516105a59190613ed2565b60405180910390f35b6105c860048036038101906105c39190613447565b611559565b005b3480156105d657600080fd5b506105f160048036038101906105ec9190613253565b611775565b005b3480156105ff57600080fd5b506106086117d7565b005b34801561061657600080fd5b50610631600480360381019061062c919061341e565b61187f565b60405161063e9190613ed2565b60405180910390f35b34801561065357600080fd5b5061066e60048036038101906106699190613346565b611926565b005b34801561067c57600080fd5b50610697600480360381019061069291906131c8565b611a38565b6040516106a49190613eb7565b60405180910390f35b3480156106b957600080fd5b506106c2611acc565b6040516106cf9190613eb7565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa919061319f565b611adf565b005b600061070c82611bd7565b9050919050565b60606000805461072290614531565b80601f016020809104026020016040519081016040528092919081815260200182805461074e90614531565b801561079b5780601f106107705761010080835404028352916020019161079b565b820191906000526020600020905b81548152906001019060200180831161077e57829003601f168201915b5050505050905090565b60006107b082611c51565b6107ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e6906140b4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083582610fca565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089d90614174565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108c5611cbd565b73ffffffffffffffffffffffffffffffffffffffff1614806108f457506108f3816108ee611cbd565b611a38565b5b610933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092a90614034565b60405180910390fd5b61093d8383611cc5565b505050565b61094a611cbd565b73ffffffffffffffffffffffffffffffffffffffff166109686113f9565b73ffffffffffffffffffffffffffffffffffffffff16146109be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b5906140d4565b60405180910390fd5b80600b90805190602001906109d4929190612f64565b5050565b6000600880549050905090565b6109f66109f0611cbd565b82611d7e565b610a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2c90614194565b60405180910390fd5b610a40838383611e5c565b505050565b6000610a508361107c565b8210610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8890613f34565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610af2611cbd565b73ffffffffffffffffffffffffffffffffffffffff16610b106113f9565b73ffffffffffffffffffffffffffffffffffffffff1614610b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5d906140d4565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b610b9a611cbd565b73ffffffffffffffffffffffffffffffffffffffff16610bb86113f9565b73ffffffffffffffffffffffffffffffffffffffff1614610c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c05906140d4565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050610c6357600080fd5b565b600c60009054906101000a900460ff16610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab906141d4565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1990614154565b60405180910390fd5b6005811115610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d90613f14565b60405180910390fd5b61271081610d726109d8565b610d7c9190614303565b1115610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db490614134565b60405180910390fd5b348167016345785d8a0000610dd2919061438a565b1115610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a90613ff4565b60405180910390fd5b60005b81811015610e66576000610e286109d8565b9050612710610e356109d8565b1015610e5257610e5133600183610e4c9190614303565b6120b8565b5b508080610e5e90614563565b915050610e16565b5050565b610e8583838360405180602001604052806000815250611775565b505050565b6000610e946109d8565b8210610ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecc906141b4565b60405180910390fd5b60088281548110610f0f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610f29611cbd565b73ffffffffffffffffffffffffffffffffffffffff16610f476113f9565b73ffffffffffffffffffffffffffffffffffffffff1614610f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f94906140d4565b60405180910390fd5b80600d9080519060200190610fb3929190612f64565b5050565b600c60019054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106a90614074565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e490614054565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61113c611cbd565b73ffffffffffffffffffffffffffffffffffffffff1661115a6113f9565b73ffffffffffffffffffffffffffffffffffffffff16146111b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a7906140d4565b60405180910390fd5b6111ba60006120d6565b565b6111c4611cbd565b73ffffffffffffffffffffffffffffffffffffffff166111e26113f9565b73ffffffffffffffffffffffffffffffffffffffff1614611238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122f906140d4565b60405180910390fd5b60006064605c3073ffffffffffffffffffffffffffffffffffffffff1631611260919061438a565b61126a9190614359565b90506000606460043073ffffffffffffffffffffffffffffffffffffffff1631611294919061438a565b61129e9190614359565b90506000606460043073ffffffffffffffffffffffffffffffffffffffff16316112c8919061438a565b6112d29190614359565b9050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f1935050505061133457600080fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505061139457600080fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506113f457600080fd5b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461143290614531565b80601f016020809104026020016040519081016040528092919081815260200182805461145e90614531565b80156114ab5780601f10611480576101008083540402835291602001916114ab565b820191906000526020600020905b81548152906001019060200180831161148e57829003601f168201915b5050505050905090565b6114c76114c0611cbd565b838361219c565b5050565b600b80546114d890614531565b80601f016020809104026020016040519081016040528092919081815260200182805461150490614531565b80156115515780601f1061152657610100808354040283529160200191611551565b820191906000526020600020905b81548152906001019060200180831161153457829003601f168201915b505050505081565b600c60019054906101000a900460ff166115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f906141f4565b60405180910390fd5b60028160ff166115b73361107c565b6115c19190614303565b1115611602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f990613ef4565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611670576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166790614154565b60405180910390fd5b6127108160ff1661167f6109d8565b6116899190614303565b11156116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190614134565b60405180910390fd5b348160ff1667011c37937e0800006116e291906143e4565b67ffffffffffffffff16111561172d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172490613ff4565b60405180910390fd5b60005b8160ff168110156117715760006117456109d8565b905061175d336001836117589190614303565b6120b8565b50808061176990614563565b915050611730565b5050565b611786611780611cbd565b83611d7e565b6117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc90614194565b60405180910390fd5b6117d184848484612309565b50505050565b6117df611cbd565b73ffffffffffffffffffffffffffffffffffffffff166117fd6113f9565b73ffffffffffffffffffffffffffffffffffffffff1614611853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184a906140d4565b60405180910390fd5b600c60019054906101000a900460ff1615600c60016101000a81548160ff021916908315150217905550565b606061188a82611c51565b6118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c090614114565b60405180910390fd5b60006118d3612365565b905060008151116118f3576040518060200160405280600081525061191e565b806118fd846123f7565b60405160200161190e929190613e2c565b6040516020818303038152906040525b915050919050565b61192e611cbd565b73ffffffffffffffffffffffffffffffffffffffff1661194c6113f9565b73ffffffffffffffffffffffffffffffffffffffff16146119a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611999906140d4565b60405180910390fd5b60005b82829050811015611a335760006119ba6109d8565b9050611a1f8484848181106119f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611a0d919061319f565b600183611a1a9190614303565b6120b8565b508080611a2b90614563565b9150506119a5565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c60009054906101000a900460ff1681565b611ae7611cbd565b73ffffffffffffffffffffffffffffffffffffffff16611b056113f9565b73ffffffffffffffffffffffffffffffffffffffff1614611b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b52906140d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc290613f74565b60405180910390fd5b611bd4816120d6565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c4a5750611c49826125a4565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d3883610fca565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d8982611c51565b611dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbf90614014565b60405180910390fd5b6000611dd383610fca565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e4257508373ffffffffffffffffffffffffffffffffffffffff16611e2a846107a5565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e535750611e528185611a38565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e7c82610fca565b73ffffffffffffffffffffffffffffffffffffffff1614611ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec9906140f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3990613fb4565b60405180910390fd5b611f4d838383612686565b611f58600082611cc5565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fa89190614426565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fff9190614303565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6120d2828260405180602001604052806000815250612696565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561220b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220290613fd4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122fc9190613eb7565b60405180910390a3505050565b612314848484611e5c565b612320848484846126f1565b61235f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235690613f54565b60405180910390fd5b50505050565b6060600d805461237490614531565b80601f01602080910402602001604051908101604052809291908181526020018280546123a090614531565b80156123ed5780601f106123c2576101008083540402835291602001916123ed565b820191906000526020600020905b8154815290600101906020018083116123d057829003601f168201915b5050505050905090565b6060600082141561243f576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061259f565b600082905060005b6000821461247157808061245a90614563565b915050600a8261246a9190614359565b9150612447565b60008167ffffffffffffffff8111156124b3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124e55781602001600182028036833780820191505090505b5090505b60008514612598576001826124fe9190614426565b9150600a8561250d91906145ac565b60306125199190614303565b60f81b818381518110612555577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125919190614359565b94506124e9565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061266f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061267f575061267e82612888565b5b9050919050565b6126918383836128f2565b505050565b6126a08383612a06565b6126ad60008484846126f1565b6126ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e390613f54565b60405180910390fd5b505050565b60006127128473ffffffffffffffffffffffffffffffffffffffff16612bd4565b1561287b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261273b611cbd565b8786866040518563ffffffff1660e01b815260040161275d9493929190613e6b565b602060405180830381600087803b15801561277757600080fd5b505af19250505080156127a857506040513d601f19601f820116820180604052508101906127a591906133b4565b60015b61282b573d80600081146127d8576040519150601f19603f3d011682016040523d82523d6000602084013e6127dd565b606091505b50600081511415612823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281a90613f54565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612880565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6128fd838383612be7565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129405761293b81612bec565b61297f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461297e5761297d8382612c35565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129c2576129bd81612da2565b612a01565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a00576129ff8282612ee5565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6d90614094565b60405180910390fd5b612a7f81611c51565b15612abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab690613f94565b60405180910390fd5b612acb60008383612686565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b1b9190614303565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612c428461107c565b612c4c9190614426565b9050600060076000848152602001908152602001600020549050818114612d31576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612db69190614426565b9050600060096000848152602001908152602001600020549050600060088381548110612e0c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612e54577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612ec9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612ef08361107c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612f7090614531565b90600052602060002090601f016020900481019282612f925760008555612fd9565b82601f10612fab57805160ff1916838001178555612fd9565b82800160010185558215612fd9579182015b82811115612fd8578251825591602001919060010190612fbd565b5b509050612fe69190612fea565b5090565b5b80821115613003576000816000905550600101612feb565b5090565b600061301a61301584614260565b61422f565b90508281526020810184848401111561303257600080fd5b61303d8482856144ef565b509392505050565b600061305861305384614290565b61422f565b90508281526020810184848401111561307057600080fd5b61307b8482856144ef565b509392505050565b600081359050613092816146aa565b92915050565b60008083601f8401126130aa57600080fd5b8235905067ffffffffffffffff8111156130c357600080fd5b6020830191508360208202830111156130db57600080fd5b9250929050565b6000813590506130f1816146c1565b92915050565b600081359050613106816146d8565b92915050565b60008151905061311b816146d8565b92915050565b600082601f83011261313257600080fd5b8135613142848260208601613007565b91505092915050565b600082601f83011261315c57600080fd5b813561316c848260208601613045565b91505092915050565b600081359050613184816146ef565b92915050565b60008135905061319981614706565b92915050565b6000602082840312156131b157600080fd5b60006131bf84828501613083565b91505092915050565b600080604083850312156131db57600080fd5b60006131e985828601613083565b92505060206131fa85828601613083565b9150509250929050565b60008060006060848603121561321957600080fd5b600061322786828701613083565b935050602061323886828701613083565b925050604061324986828701613175565b9150509250925092565b6000806000806080858703121561326957600080fd5b600061327787828801613083565b945050602061328887828801613083565b935050604061329987828801613175565b925050606085013567ffffffffffffffff8111156132b657600080fd5b6132c287828801613121565b91505092959194509250565b600080604083850312156132e157600080fd5b60006132ef85828601613083565b9250506020613300858286016130e2565b9150509250929050565b6000806040838503121561331d57600080fd5b600061332b85828601613083565b925050602061333c85828601613175565b9150509250929050565b6000806020838503121561335957600080fd5b600083013567ffffffffffffffff81111561337357600080fd5b61337f85828601613098565b92509250509250929050565b60006020828403121561339d57600080fd5b60006133ab848285016130f7565b91505092915050565b6000602082840312156133c657600080fd5b60006133d48482850161310c565b91505092915050565b6000602082840312156133ef57600080fd5b600082013567ffffffffffffffff81111561340957600080fd5b6134158482850161314b565b91505092915050565b60006020828403121561343057600080fd5b600061343e84828501613175565b91505092915050565b60006020828403121561345957600080fd5b60006134678482850161318a565b91505092915050565b6134798161445a565b82525050565b6134888161446c565b82525050565b6000613499826142c0565b6134a381856142d6565b93506134b38185602086016144fe565b6134bc81614699565b840191505092915050565b60006134d2826142cb565b6134dc81856142e7565b93506134ec8185602086016144fe565b6134f581614699565b840191505092915050565b600061350b826142cb565b61351581856142f8565b93506135258185602086016144fe565b80840191505092915050565b600061353e602e836142e7565b91507f4c696d6974206973203220746f6b656e73207065722077616c6c65742c20736160008301527f6c65206e6f7420616c6c6f7765640000000000000000000000000000000000006020830152604082019050919050565b60006135a46020836142e7565b91507f43616e206f6e6c79206d696e74203520746f6b656e7320617420612074696d656000830152602082019050919050565b60006135e4602b836142e7565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b600061364a6032836142e7565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006136b06026836142e7565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613716601c836142e7565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006137566024836142e7565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137bc6019836142e7565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006137fc601f836142e7565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b600061383c602c836142e7565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006138a26038836142e7565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613908602a836142e7565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061396e6029836142e7565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006139d46020836142e7565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613a14602c836142e7565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613a7a6020836142e7565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613aba6029836142e7565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b20602f836142e7565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613b86602e836142e7565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620436173746c654b6964730000000000000000000000000000000000006020830152604082019050919050565b6000613bec6024836142e7565b91507f4e6f207472616e73616374696f6e2066726f6d20736d61727420636f6e74726160008301527f63747321000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c526021836142e7565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cb86031836142e7565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613d1e602c836142e7565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000613d846026836142e7565b91507f53616c65206d7573742062652061637469766520746f206d696e74204361737460008301527f6c65204b696400000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613dea6018836142e7565b91507f416c6c6f77206c697374206973206e6f742061637469766500000000000000006000830152602082019050919050565b613e26816144c4565b82525050565b6000613e388285613500565b9150613e448284613500565b91508190509392505050565b6000602082019050613e656000830184613470565b92915050565b6000608082019050613e806000830187613470565b613e8d6020830186613470565b613e9a6040830185613e1d565b8181036060830152613eac818461348e565b905095945050505050565b6000602082019050613ecc600083018461347f565b92915050565b60006020820190508181036000830152613eec81846134c7565b905092915050565b60006020820190508181036000830152613f0d81613531565b9050919050565b60006020820190508181036000830152613f2d81613597565b9050919050565b60006020820190508181036000830152613f4d816135d7565b9050919050565b60006020820190508181036000830152613f6d8161363d565b9050919050565b60006020820190508181036000830152613f8d816136a3565b9050919050565b60006020820190508181036000830152613fad81613709565b9050919050565b60006020820190508181036000830152613fcd81613749565b9050919050565b60006020820190508181036000830152613fed816137af565b9050919050565b6000602082019050818103600083015261400d816137ef565b9050919050565b6000602082019050818103600083015261402d8161382f565b9050919050565b6000602082019050818103600083015261404d81613895565b9050919050565b6000602082019050818103600083015261406d816138fb565b9050919050565b6000602082019050818103600083015261408d81613961565b9050919050565b600060208201905081810360008301526140ad816139c7565b9050919050565b600060208201905081810360008301526140cd81613a07565b9050919050565b600060208201905081810360008301526140ed81613a6d565b9050919050565b6000602082019050818103600083015261410d81613aad565b9050919050565b6000602082019050818103600083015261412d81613b13565b9050919050565b6000602082019050818103600083015261414d81613b79565b9050919050565b6000602082019050818103600083015261416d81613bdf565b9050919050565b6000602082019050818103600083015261418d81613c45565b9050919050565b600060208201905081810360008301526141ad81613cab565b9050919050565b600060208201905081810360008301526141cd81613d11565b9050919050565b600060208201905081810360008301526141ed81613d77565b9050919050565b6000602082019050818103600083015261420d81613ddd565b9050919050565b60006020820190506142296000830184613e1d565b92915050565b6000604051905081810181811067ffffffffffffffff821117156142565761425561466a565b5b8060405250919050565b600067ffffffffffffffff82111561427b5761427a61466a565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156142ab576142aa61466a565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061430e826144c4565b9150614319836144c4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561434e5761434d6145dd565b5b828201905092915050565b6000614364826144c4565b915061436f836144c4565b92508261437f5761437e61460c565b5b828204905092915050565b6000614395826144c4565b91506143a0836144c4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143d9576143d86145dd565b5b828202905092915050565b60006143ef826144ce565b91506143fa836144ce565b92508167ffffffffffffffff048311821515161561441b5761441a6145dd565b5b828202905092915050565b6000614431826144c4565b915061443c836144c4565b92508282101561444f5761444e6145dd565b5b828203905092915050565b6000614465826144a4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561451c578082015181840152602081019050614501565b8381111561452b576000848401525b50505050565b6000600282049050600182168061454957607f821691505b6020821081141561455d5761455c61463b565b5b50919050565b600061456e826144c4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145a1576145a06145dd565b5b600182019050919050565b60006145b7826144c4565b91506145c2836144c4565b9250826145d2576145d161460c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6146b38161445a565b81146146be57600080fd5b50565b6146ca8161446c565b81146146d557600080fd5b50565b6146e181614478565b81146146ec57600080fd5b50565b6146f8816144c4565b811461470357600080fd5b50565b61470f816144e2565b811461471a57600080fd5b5056fea2646970667358221220729975a1cf26137bc993b932b4ff7b78032987b0e1a1761f2e45942a2a9d1a4364736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d53466646614d66573962675a356e7546384c55433732415a375147694d74576e4244413948434632647a63352f000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): https://gateway.pinata.cloud/ipfs/QmSFfFaMfW9bgZ5nuF8LUC72AZ7QGiMtWnBDA9HCF2dzc5/
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d53466646614d66573962675a356e7546384c55433732415a37514769
Arg [4] : 4d74576e4244413948434632647a63352f000000000000000000000000000000
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.