Overview
TokenID
4
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NFT
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-08-31 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } pragma solidity ^0.8.0; /** * @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; } 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); } pragma solidity ^0.8.0; /** * @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); } 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; // solhint-disable-next-line no-inline-assembly 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } 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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } pragma solidity ^0.8.0; /** * @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; } } pragma solidity ^0.8.0; /** * @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}. Empty by default, can be overriden * in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { // solhint-disable-next-line no-inline-assembly 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` 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 { } } pragma solidity ^0.8.0; /** * @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); } pragma solidity ^0.8.0; /** * @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(); } } pragma solidity ^0.8.0; /** * @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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } pragma solidity ^0.8.0; interface INFT { function addToAllowList(address[] calldata addresses) external; function onAllowList(address addr) external returns (bool); function removeFromAllowList(address[] calldata addresses) external; function allowListClaimedBy(address owner) external returns (uint256); function purchase(uint256 numberOfTokens) external payable; function purchaseAllowList(uint256 numberOfTokens) external payable; function gift(address[] calldata to) external; function setIsActive(bool isActive) external; function setIsAllowListActive(bool isAllowListActive) external; function setAllowListMaxMint(uint256 maxMint) external; function setProof(string memory proofString) external; function withdraw() external; } pragma solidity ^0.8.0; interface INFTMetadata { function setContractURI(string calldata URI) external; function setBaseURI(string calldata URI) external; function setRevealedBaseURI(string calldata revealedBaseURI) external; function contractURI() external view returns(string memory); } pragma solidity ^0.8.0; contract NFT is ERC721Enumerable, Ownable, INFT, INFTMetadata, ReentrancyGuard { using Strings for uint256; uint256 public giftSupply; uint256 public publicSupply; uint256 public maxSupply; uint256 public constant PURCHASE_LIMIT = 7; uint256 public constant PRICE = 0.04 ether; bool public isActive = false; bool public isAllowListActive = false; string public proof; uint256 public allowListMaxMint = 2; /// @dev We will use these to be able to calculate remaining correctly. uint256 public totalGiftSupply; uint256 public totalPublicSupply; mapping(address => bool) private _allowList; mapping(address => uint256) private _allowListClaimed; string private _contractURI = ''; string private _tokenBaseURI = ''; string private _tokenRevealedBaseURI = ''; constructor( string memory name, string memory symbol, uint _publicSupply, uint _giftSupply, string memory _uri ) ERC721(name, symbol) { publicSupply = _publicSupply; giftSupply = _giftSupply; maxSupply = giftSupply + publicSupply; _tokenBaseURI = _uri; _tokenRevealedBaseURI = _uri; } function addToAllowList(address[] calldata addresses) external override onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { require(addresses[i] != address(0), "Can't add the null address"); _allowList[addresses[i]] = true; /** * @dev We don't want to reset _allowListClaimed count * if we try to add someone more than once. */ _allowListClaimed[addresses[i]] > 0 ? _allowListClaimed[addresses[i]] : 0; } } function onAllowList(address addr) external view override returns (bool) { return _allowList[addr]; } function removeFromAllowList(address[] calldata addresses) external override onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { require(addresses[i] != address(0), "Can't add the null address"); /// @dev We don't want to reset possible _allowListClaimed numbers. _allowList[addresses[i]] = false; } } /** * @dev We want to be able to distinguish tokens bought during isAllowListActive * and tokens bought outside of isAllowListActive */ function allowListClaimedBy(address owner) external view override returns (uint256) { require(owner != address(0), 'Zero address not on Allow List'); return _allowListClaimed[owner]; } function purchase(uint256 numberOfTokens) external override payable nonReentrant { require(isActive, 'Contract is not active'); require(!isAllowListActive, 'Only allowing from Allow List'); require(totalSupply() < maxSupply, 'All tokens have been minted'); require(numberOfTokens <= PURCHASE_LIMIT, 'Would exceed PURCHASE_LIMIT'); /** * @dev The last person to purchase might pay too much. * This way however they can't get sniped. * If this happens, we'll refund the Eth for the unavailable tokens. */ require(totalPublicSupply < publicSupply, 'Purchase would exceed PUBLIC'); require(PRICE * numberOfTokens <= msg.value, 'ETH amount is not sufficient'); for (uint256 i = 0; i < numberOfTokens; i++) { /** * @dev Since they can get here while exceeding the MAX, * we have to make sure to not mint any additional tokens. */ if (totalPublicSupply < publicSupply) { /** * @dev Public token numbering starts after GIFT. * And we don't want our tokens to start at 0 but at 1. */ totalPublicSupply += 1; uint256 tokenId = totalSupply() + 1; _safeMint(msg.sender, tokenId); } } } function purchaseAllowList(uint256 numberOfTokens) external override payable nonReentrant { require(isActive, 'Contract is not active'); require(isAllowListActive, 'Allow List is not active'); require(_allowList[msg.sender], 'You are not on the Allow List'); require(totalSupply() < maxSupply, 'All tokens have been minted'); require(numberOfTokens <= allowListMaxMint, 'Cannot purchase this many tokens'); require(totalPublicSupply + numberOfTokens <= publicSupply, 'Purchase would exceed PUBLIC'); require(_allowListClaimed[msg.sender] + numberOfTokens <= allowListMaxMint, 'Purchase exceeds max allowed'); require(PRICE * numberOfTokens <= msg.value, 'ETH amount is not sufficient'); for (uint256 i = 0; i < numberOfTokens; i++) { /** * @dev Public token numbering starts after GIFT. * We don't want our tokens to start at 0 but at 1. */ totalPublicSupply += 1; _allowListClaimed[msg.sender] += 1; uint256 tokenId = totalSupply() + 1; _safeMint(msg.sender, tokenId); } } function gift(address[] calldata to) external override onlyOwner nonReentrant{ require(totalSupply() < maxSupply, 'All tokens have been minted'); require(totalGiftSupply + to.length <= giftSupply, 'Not enough tokens left to gift'); for(uint256 i = 0; i < to.length; i++) { /// @dev We don't want our tokens to start at 0 but at 1. uint256 tokenId = totalSupply() + 1; totalGiftSupply += 1; _safeMint(to[i], tokenId); } } function setIsActive(bool _isActive) external override onlyOwner { isActive = _isActive; } function setIsAllowListActive(bool _isAllowListActive) external override onlyOwner { isAllowListActive = _isAllowListActive; } function setAllowListMaxMint(uint256 maxMint) external override onlyOwner { allowListMaxMint = maxMint; } function setProof(string calldata proofString) external override onlyOwner { proof = proofString; } function withdraw() external override onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function setContractURI(string calldata URI) external override onlyOwner { _contractURI = URI; } function setBaseURI(string calldata URI) external override onlyOwner { _tokenBaseURI = URI; } function setRevealedBaseURI(string calldata revealedBaseURI) external override onlyOwner { _tokenRevealedBaseURI = revealedBaseURI; } function contractURI() public view override returns (string memory) { return _contractURI; } function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) { require(_exists(tokenId), 'Token does not exist'); /// @dev Convert string to bytes so we can check if it's empty or not. string memory revealedBaseURI = _tokenRevealedBaseURI; return (bytes(revealedBaseURI).length > 0) ? string(abi.encodePacked(revealedBaseURI, tokenId.toString())) : _tokenBaseURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"_publicSupply","type":"uint256"},{"internalType":"uint256","name":"_giftSupply","type":"uint256"},{"internalType":"string","name":"_uri","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":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"allowListClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"giftSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"onAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"proof","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchaseAllowList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setAllowListMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isAllowListActive","type":"bool"}],"name":"setIsAllowListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"proofString","type":"string"}],"name":"setProof","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"revealedBaseURI","type":"string"}],"name":"setRevealedBaseURI","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":"totalGiftSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPublicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
600f805461ffff19169055600260115560a06040819052600060808190526200002b9160169162000189565b506040805160208101918290526000908190526200004c9160179162000189565b506040805160208101918290526000908190526200006d9160189162000189565b503480156200007b57600080fd5b5060405162004544380380620045448339810160408190526200009e91620002e6565b845185908590620000b790600090602085019062000189565b508051620000cd90600190602084019062000189565b5050506000620000e26200018560201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001600b55600d839055600c8290556200014b83836200038b565b600e5580516200016390601790602084019062000189565b5080516200017990601890602084019062000189565b50505050505062000405565b3390565b8280546200019790620003b2565b90600052602060002090601f016020900481019282620001bb576000855562000206565b82601f10620001d657805160ff191683800117855562000206565b8280016001018555821562000206579182015b8281111562000206578251825591602001919060010190620001e9565b506200021492915062000218565b5090565b5b8082111562000214576000815560010162000219565b600082601f8301126200024157600080fd5b81516001600160401b03808211156200025e576200025e620003ef565b604051601f8301601f19908116603f01168101908282118183101715620002895762000289620003ef565b81604052838152602092508683858801011115620002a657600080fd5b600091505b83821015620002ca5785820183015181830184015290820190620002ab565b83821115620002dc5760008385830101525b9695505050505050565b600080600080600060a08688031215620002ff57600080fd5b85516001600160401b03808211156200031757600080fd5b6200032589838a016200022f565b965060208801519150808211156200033c57600080fd5b6200034a89838a016200022f565b9550604088015194506060880151935060808801519150808211156200036f57600080fd5b506200037e888289016200022f565b9150509295509295909350565b60008219821115620003ad57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620003c757607f821691505b60208210811415620003e957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61412f80620004156000396000f3fe6080604052600436106102fc5760003560e01c8063715018a61161018f578063b88d4fde116100e1578063e8a3d4851161008a578063f23347f511610064578063f23347f51461087d578063f2fde38b14610890578063faf924cf146108b057600080fd5b8063e8a3d485146107ff578063e985e9c514610814578063efef39a11461086a57600080fd5b8063d6f407c7116100bb578063d6f407c7146107be578063d75e6110146107d4578063e6a5931e146107e957600080fd5b8063b88d4fde14610768578063c87b56dd14610788578063d5abeb01146107a857600080fd5b80638d859f3e1161014357806395d89b411161011d57806395d89b4114610713578063a22cb46514610728578063a51312c81461074857600080fd5b80638d859f3e146106ad5780638da5cb5b146106c8578063938e3d7b146106f357600080fd5b80637263cfe2116101745780637263cfe2146106575780637a6685f1146106775780637f44ab2f1461069757600080fd5b8063715018a614610622578063718bc4af1461063757600080fd5b80632750fc78116102535780634f6ccce7116101fc5780636352211e116101d65780636352211e146105c25780636e83843a146105e257806370a082311461060257600080fd5b80634f6ccce71461056c57806355f804b31461058c5780635e84d723146105ac57600080fd5b80633a0658921161022d5780633a065892146104f15780633ccfd60b1461053757806342842e0e1461054c57600080fd5b80632750fc781461049257806329fc6bae146104b25780632f745c59146104d157600080fd5b806315336f80116102b55780632254b0151161028f5780632254b0151461044257806322f3e2d41461045857806323b872dd1461047257600080fd5b806315336f80146103ed578063163e1e611461040d57806318160ddd1461042d57600080fd5b806306fdde03116102e657806306fdde0314610364578063081812fc14610386578063095ea7b3146103cb57600080fd5b806208ffdd1461030157806301ffc9a714610334575b600080fd5b34801561030d57600080fd5b5061032161031c366004613aa0565b6108c5565b6040519081526020015b60405180910390f35b34801561034057600080fd5b5061035461034f366004613d08565b610972565b604051901515815260200161032b565b34801561037057600080fd5b506103796109ce565b60405161032b9190613e7d565b34801561039257600080fd5b506103a66103a1366004613da2565b610a60565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161032b565b3480156103d757600080fd5b506103eb6103e6366004613c4e565b610b3a565b005b3480156103f957600080fd5b506103eb610408366004613d42565b610cc7565b34801561041957600080fd5b506103eb610428366004613c78565b610d54565b34801561043957600080fd5b50600854610321565b34801561044e57600080fd5b50610321600c5481565b34801561046457600080fd5b50600f546103549060ff1681565b34801561047e57600080fd5b506103eb61048d366004613aee565b610fb6565b34801561049e57600080fd5b506103eb6104ad366004613ced565b611057565b3480156104be57600080fd5b50600f5461035490610100900460ff1681565b3480156104dd57600080fd5b506103216104ec366004613c4e565b611109565b3480156104fd57600080fd5b5061035461050c366004613aa0565b73ffffffffffffffffffffffffffffffffffffffff1660009081526014602052604090205460ff1690565b34801561054357600080fd5b506103eb6111d8565b34801561055857600080fd5b506103eb610567366004613aee565b61128c565b34801561057857600080fd5b50610321610587366004613da2565b6112a7565b34801561059857600080fd5b506103eb6105a7366004613d42565b611365565b3480156105b857600080fd5b50610321600d5481565b3480156105ce57600080fd5b506103a66105dd366004613da2565b6113f2565b3480156105ee57600080fd5b506103eb6105fd366004613d42565b6114a4565b34801561060e57600080fd5b5061032161061d366004613aa0565b611531565b34801561062e57600080fd5b506103eb6115ff565b34801561064357600080fd5b506103eb610652366004613ced565b6116ef565b34801561066357600080fd5b506103eb610672366004613c78565b6117a7565b34801561068357600080fd5b506103eb610692366004613da2565b611a48565b3480156106a357600080fd5b5061032160115481565b3480156106b957600080fd5b50610321668e1bc9bf04000081565b3480156106d457600080fd5b50600a5473ffffffffffffffffffffffffffffffffffffffff166103a6565b3480156106ff57600080fd5b506103eb61070e366004613d42565b611ace565b34801561071f57600080fd5b50610379611b5b565b34801561073457600080fd5b506103eb610743366004613c24565b611b6a565b34801561075457600080fd5b506103eb610763366004613c78565b611c81565b34801561077457600080fd5b506103eb610783366004613b2a565b611e46565b34801561079457600080fd5b506103796107a3366004613da2565b611eee565b3480156107b457600080fd5b50610321600e5481565b3480156107ca57600080fd5b5061032160125481565b3480156107e057600080fd5b50610321600781565b3480156107f557600080fd5b5061032160135481565b34801561080b57600080fd5b506103796120d6565b34801561082057600080fd5b5061035461082f366004613abb565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b6103eb610878366004613da2565b6120e5565b6103eb61088b366004613da2565b61245d565b34801561089c57600080fd5b506103eb6108ab366004613aa0565b6128ef565b3480156108bc57600080fd5b50610379612aa1565b600073ffffffffffffffffffffffffffffffffffffffff8216610949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c697374000060448201526064015b60405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526015602052604090205490565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806109c857506109c882612b2f565b92915050565b6060600080546109dd90613f3c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0990613f3c565b8015610a565780601f10610a2b57610100808354040283529160200191610a56565b820191906000526020600020905b815481529060010190602001808311610a3957829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16610b11576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610940565b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610b45826113f2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c03576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610940565b3373ffffffffffffffffffffffffffffffffffffffff82161480610c2c5750610c2c813361082f565b610cb8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610940565b610cc28383612c12565b505050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610d48576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610940565b610cc2601083836139b0565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610dd5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610940565b6002600b541415610e42576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610940565b6002600b55600e5460085410610eb4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006044820152606401610940565b600c54601254610ec5908390613e90565b1115610f2d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f4e6f7420656e6f75676820746f6b656e73206c65667420746f206769667400006044820152606401610940565b60005b81811015610fac576000610f4360085490565b610f4e906001613e90565b9050600160126000828254610f639190613e90565b90915550610f999050848484818110610f7e57610f7e61406a565b9050602002016020810190610f939190613aa0565b82612cb2565b5080610fa481613f90565b915050610f30565b50506001600b5550565b610fc03382612ccc565b61104c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610940565b610cc2838383612e3c565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146110d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610940565b600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600061111483611531565b82106111a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610940565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600660209081526040808320938352929052205490565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610940565b6040514790339082156108fc029083906000818181858888f19350505050158015611288573d6000803e3d6000fd5b5050565b610cc283838360405180602001604052806000815250611e46565b60006112b260085490565b8210611340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610940565b600882815481106113535761135361406a565b90600052602060002001549050919050565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146113e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610940565b610cc2601783836139b0565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16806109c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610940565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610940565b610cc2601883836139b0565b600073ffffffffffffffffffffffffffffffffffffffff82166115d6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610940565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610940565b600a5460405160009173ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610940565b600f8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610940565b60005b81811015610cc25760008383838181106118475761184761406a565b905060200201602081019061185c9190613aa0565b73ffffffffffffffffffffffffffffffffffffffff1614156118da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f43616e27742061646420746865206e756c6c20616464726573730000000000006044820152606401610940565b6001601460008585858181106118f2576118f261406a565b90506020020160208101906119079190613aa0565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600090812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016921515929092179091556015818585858181106119725761197261406a565b90506020020160208101906119879190613aa0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116119ce576000611a35565b601560008484848181106119e4576119e461406a565b90506020020160208101906119f99190613aa0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b5080611a4081613f90565b91505061182b565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611ac9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610940565b601155565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611b4f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610940565b610cc2601683836139b0565b6060600180546109dd90613f3c565b73ffffffffffffffffffffffffffffffffffffffff8216331415611bea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610940565b33600081815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611d02576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610940565b60005b81811015610cc2576000838383818110611d2157611d2161406a565b9050602002016020810190611d369190613aa0565b73ffffffffffffffffffffffffffffffffffffffff161415611db4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f43616e27742061646420746865206e756c6c20616464726573730000000000006044820152606401610940565b600060146000858585818110611dcc57611dcc61406a565b9050602002016020810190611de19190613aa0565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580611e3e81613f90565b915050611d05565b611e503383612ccc565b611edc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610940565b611ee8848484846130ae565b50505050565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16611f7c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f546f6b656e20646f6573206e6f742065786973740000000000000000000000006044820152606401610940565b600060188054611f8b90613f3c565b80601f0160208091040260200160405190810160405280929190818152602001828054611fb790613f3c565b80156120045780601f10611fd957610100808354040283529160200191612004565b820191906000526020600020905b815481529060010190602001808311611fe757829003601f168201915b5050505050905060008151116120a4576017805461202190613f3c565b80601f016020809104026020016040519081016040528092919081815260200182805461204d90613f3c565b801561209a5780601f1061206f5761010080835404028352916020019161209a565b820191906000526020600020905b81548152906001019060200180831161207d57829003601f168201915b50505050506120cf565b806120ae84613151565b6040516020016120bf929190613e05565b6040516020818303038152906040525b9392505050565b6060601680546109dd90613f3c565b6002600b541415612152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610940565b6002600b55600f5460ff166121c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f436f6e7472616374206973206e6f7420616374697665000000000000000000006044820152606401610940565b600f54610100900460ff1615612235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4f6e6c7920616c6c6f77696e672066726f6d20416c6c6f77204c6973740000006044820152606401610940565b600e54600854106122a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006044820152606401610940565b600781111561230d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f576f756c64206578636565642050555243484153455f4c494d495400000000006044820152606401610940565b600d546013541061237a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f507572636861736520776f756c6420657863656564205055424c4943000000006044820152606401610940565b3461238c82668e1bc9bf040000613ebc565b11156123f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e74000000006044820152606401610940565b60005b8181101561245457600d5460135410156124425760016013600082825461241e9190613e90565b9091555050600854600090612434906001613e90565b90506124403382612cb2565b505b8061244c81613f90565b9150506123f7565b50506001600b55565b6002600b5414156124ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610940565b6002600b55600f5460ff1661253b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f436f6e7472616374206973206e6f7420616374697665000000000000000000006044820152606401610940565b600f54610100900460ff166125ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f416c6c6f77204c697374206973206e6f742061637469766500000000000000006044820152606401610940565b3360009081526014602052604090205460ff16612625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f596f7520617265206e6f74206f6e2074686520416c6c6f77204c6973740000006044820152606401610940565b600e5460085410612692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006044820152606401610940565b6011548111156126fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736044820152606401610940565b600d548160135461270f9190613e90565b1115612777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f507572636861736520776f756c6420657863656564205055424c4943000000006044820152606401610940565b60115433600090815260156020526040902054612795908390613e90565b11156127fd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f50757263686173652065786365656473206d617820616c6c6f776564000000006044820152606401610940565b3461280f82668e1bc9bf040000613ebc565b1115612877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e74000000006044820152606401610940565b60005b81811015612454576001601360008282546128959190613e90565b90915550503360009081526015602052604081208054600192906128ba908490613e90565b90915550506008546000906128d0906001613e90565b90506128dc3382612cb2565b50806128e781613f90565b91505061287a565b600a5473ffffffffffffffffffffffffffffffffffffffff163314612970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610940565b73ffffffffffffffffffffffffffffffffffffffff8116612a13576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610940565b600a5460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60108054612aae90613f3c565b80601f0160208091040260200160405190810160405280929190818152602001828054612ada90613f3c565b8015612b275780601f10612afc57610100808354040283529160200191612b27565b820191906000526020600020905b815481529060010190602001808311612b0a57829003601f168201915b505050505081565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480612bc257507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109c857507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146109c8565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190612c6c826113f2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611288828260405180602001604052806000815250613283565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16612d7d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610940565b6000612d88836113f2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612df757508373ffffffffffffffffffffffffffffffffffffffff16612ddf84610a60565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e34575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16612e5c826113f2565b73ffffffffffffffffffffffffffffffffffffffff1614612eff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610940565b73ffffffffffffffffffffffffffffffffffffffff8216612fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610940565b612fac838383613326565b612fb7600082612c12565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600360205260408120805460019290612fed908490613ef9565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290613028908490613e90565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6130b9848484612e3c565b6130c58484848461342c565b611ee8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610940565b60608161319157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156131bb57806131a581613f90565b91506131b49050600a83613ea8565b9150613195565b60008167ffffffffffffffff8111156131d6576131d6614099565b6040519080825280601f01601f191660200182016040528015613200576020820181803683370190505b5090505b8415612e3457613215600183613ef9565b9150613222600a86613fc9565b61322d906030613e90565b60f81b8183815181106132425761324261406a565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061327c600a86613ea8565b9450613204565b61328d838361362b565b61329a600084848461342c565b610cc2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610940565b73ffffffffffffffffffffffffffffffffffffffff831661338e5761338981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6133cb565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146133cb576133cb83826137f9565b73ffffffffffffffffffffffffffffffffffffffff82166133ef57610cc2816138b0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610cc257610cc2828261395f565b600073ffffffffffffffffffffffffffffffffffffffff84163b15613620576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906134a3903390899088908890600401613e34565b602060405180830381600087803b1580156134bd57600080fd5b505af192505050801561350b575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261350891810190613d25565b60015b6135d5573d808015613539576040519150601f19603f3d011682016040523d82523d6000602084013e61353e565b606091505b5080516135cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610940565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612e34565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff82166136a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610940565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff1615613734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610940565b61374060008383613326565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290613776908490613e90565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161380684611531565b6138109190613ef9565b6000838152600760205260409020549091508082146138705773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b50600091825260076020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600681528383209183525290812055565b6008546000906138c290600190613ef9565b600083815260096020526040812054600880549394509092849081106138ea576138ea61406a565b90600052602060002001549050806008838154811061390b5761390b61406a565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806139435761394361403b565b6001900381819060005260206000200160009055905550505050565b600061396a83611531565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546139bc90613f3c565b90600052602060002090601f0160209004810192826139de5760008555613a42565b82601f10613a15578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555613a42565b82800160010185558215613a42579182015b82811115613a42578235825591602001919060010190613a27565b50613a4e929150613a52565b5090565b5b80821115613a4e5760008155600101613a53565b803573ffffffffffffffffffffffffffffffffffffffff81168114613a8b57600080fd5b919050565b80358015158114613a8b57600080fd5b600060208284031215613ab257600080fd5b6120cf82613a67565b60008060408385031215613ace57600080fd5b613ad783613a67565b9150613ae560208401613a67565b90509250929050565b600080600060608486031215613b0357600080fd5b613b0c84613a67565b9250613b1a60208501613a67565b9150604084013590509250925092565b60008060008060808587031215613b4057600080fd5b613b4985613a67565b9350613b5760208601613a67565b925060408501359150606085013567ffffffffffffffff80821115613b7b57600080fd5b818701915087601f830112613b8f57600080fd5b813581811115613ba157613ba1614099565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908382118183101715613be757613be7614099565b816040528281528a6020848701011115613c0057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215613c3757600080fd5b613c4083613a67565b9150613ae560208401613a90565b60008060408385031215613c6157600080fd5b613c6a83613a67565b946020939093013593505050565b60008060208385031215613c8b57600080fd5b823567ffffffffffffffff80821115613ca357600080fd5b818501915085601f830112613cb757600080fd5b813581811115613cc657600080fd5b8660208260051b8501011115613cdb57600080fd5b60209290920196919550909350505050565b600060208284031215613cff57600080fd5b6120cf82613a90565b600060208284031215613d1a57600080fd5b81356120cf816140c8565b600060208284031215613d3757600080fd5b81516120cf816140c8565b60008060208385031215613d5557600080fd5b823567ffffffffffffffff80821115613d6d57600080fd5b818501915085601f830112613d8157600080fd5b813581811115613d9057600080fd5b866020828501011115613cdb57600080fd5b600060208284031215613db457600080fd5b5035919050565b60008151808452613dd3816020860160208601613f10565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008351613e17818460208801613f10565b835190830190613e2b818360208801613f10565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152613e736080830184613dbb565b9695505050505050565b6020815260006120cf6020830184613dbb565b60008219821115613ea357613ea3613fdd565b500190565b600082613eb757613eb761400c565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ef457613ef4613fdd565b500290565b600082821015613f0b57613f0b613fdd565b500390565b60005b83811015613f2b578181015183820152602001613f13565b83811115611ee85750506000910152565b600181811c90821680613f5057607f821691505b60208210811415613f8a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fc257613fc2613fdd565b5060010190565b600082613fd857613fd861400c565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff00000000000000000000000000000000000000000000000000000000811681146140f657600080fd5b5056fea2646970667358221220c5b8e501fb525c621a2696b5272bcc006635f26dcf4e110170860fa4e7d1b90e64736f6c6343000806003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000264800000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000a436f6f6c20506565707300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000343505300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022687474703a2f2f6170692e636f6f6c70656570732e66756e2f6d657461646174612f000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102fc5760003560e01c8063715018a61161018f578063b88d4fde116100e1578063e8a3d4851161008a578063f23347f511610064578063f23347f51461087d578063f2fde38b14610890578063faf924cf146108b057600080fd5b8063e8a3d485146107ff578063e985e9c514610814578063efef39a11461086a57600080fd5b8063d6f407c7116100bb578063d6f407c7146107be578063d75e6110146107d4578063e6a5931e146107e957600080fd5b8063b88d4fde14610768578063c87b56dd14610788578063d5abeb01146107a857600080fd5b80638d859f3e1161014357806395d89b411161011d57806395d89b4114610713578063a22cb46514610728578063a51312c81461074857600080fd5b80638d859f3e146106ad5780638da5cb5b146106c8578063938e3d7b146106f357600080fd5b80637263cfe2116101745780637263cfe2146106575780637a6685f1146106775780637f44ab2f1461069757600080fd5b8063715018a614610622578063718bc4af1461063757600080fd5b80632750fc78116102535780634f6ccce7116101fc5780636352211e116101d65780636352211e146105c25780636e83843a146105e257806370a082311461060257600080fd5b80634f6ccce71461056c57806355f804b31461058c5780635e84d723146105ac57600080fd5b80633a0658921161022d5780633a065892146104f15780633ccfd60b1461053757806342842e0e1461054c57600080fd5b80632750fc781461049257806329fc6bae146104b25780632f745c59146104d157600080fd5b806315336f80116102b55780632254b0151161028f5780632254b0151461044257806322f3e2d41461045857806323b872dd1461047257600080fd5b806315336f80146103ed578063163e1e611461040d57806318160ddd1461042d57600080fd5b806306fdde03116102e657806306fdde0314610364578063081812fc14610386578063095ea7b3146103cb57600080fd5b806208ffdd1461030157806301ffc9a714610334575b600080fd5b34801561030d57600080fd5b5061032161031c366004613aa0565b6108c5565b6040519081526020015b60405180910390f35b34801561034057600080fd5b5061035461034f366004613d08565b610972565b604051901515815260200161032b565b34801561037057600080fd5b506103796109ce565b60405161032b9190613e7d565b34801561039257600080fd5b506103a66103a1366004613da2565b610a60565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161032b565b3480156103d757600080fd5b506103eb6103e6366004613c4e565b610b3a565b005b3480156103f957600080fd5b506103eb610408366004613d42565b610cc7565b34801561041957600080fd5b506103eb610428366004613c78565b610d54565b34801561043957600080fd5b50600854610321565b34801561044e57600080fd5b50610321600c5481565b34801561046457600080fd5b50600f546103549060ff1681565b34801561047e57600080fd5b506103eb61048d366004613aee565b610fb6565b34801561049e57600080fd5b506103eb6104ad366004613ced565b611057565b3480156104be57600080fd5b50600f5461035490610100900460ff1681565b3480156104dd57600080fd5b506103216104ec366004613c4e565b611109565b3480156104fd57600080fd5b5061035461050c366004613aa0565b73ffffffffffffffffffffffffffffffffffffffff1660009081526014602052604090205460ff1690565b34801561054357600080fd5b506103eb6111d8565b34801561055857600080fd5b506103eb610567366004613aee565b61128c565b34801561057857600080fd5b50610321610587366004613da2565b6112a7565b34801561059857600080fd5b506103eb6105a7366004613d42565b611365565b3480156105b857600080fd5b50610321600d5481565b3480156105ce57600080fd5b506103a66105dd366004613da2565b6113f2565b3480156105ee57600080fd5b506103eb6105fd366004613d42565b6114a4565b34801561060e57600080fd5b5061032161061d366004613aa0565b611531565b34801561062e57600080fd5b506103eb6115ff565b34801561064357600080fd5b506103eb610652366004613ced565b6116ef565b34801561066357600080fd5b506103eb610672366004613c78565b6117a7565b34801561068357600080fd5b506103eb610692366004613da2565b611a48565b3480156106a357600080fd5b5061032160115481565b3480156106b957600080fd5b50610321668e1bc9bf04000081565b3480156106d457600080fd5b50600a5473ffffffffffffffffffffffffffffffffffffffff166103a6565b3480156106ff57600080fd5b506103eb61070e366004613d42565b611ace565b34801561071f57600080fd5b50610379611b5b565b34801561073457600080fd5b506103eb610743366004613c24565b611b6a565b34801561075457600080fd5b506103eb610763366004613c78565b611c81565b34801561077457600080fd5b506103eb610783366004613b2a565b611e46565b34801561079457600080fd5b506103796107a3366004613da2565b611eee565b3480156107b457600080fd5b50610321600e5481565b3480156107ca57600080fd5b5061032160125481565b3480156107e057600080fd5b50610321600781565b3480156107f557600080fd5b5061032160135481565b34801561080b57600080fd5b506103796120d6565b34801561082057600080fd5b5061035461082f366004613abb565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b6103eb610878366004613da2565b6120e5565b6103eb61088b366004613da2565b61245d565b34801561089c57600080fd5b506103eb6108ab366004613aa0565b6128ef565b3480156108bc57600080fd5b50610379612aa1565b600073ffffffffffffffffffffffffffffffffffffffff8216610949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c697374000060448201526064015b60405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526015602052604090205490565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806109c857506109c882612b2f565b92915050565b6060600080546109dd90613f3c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0990613f3c565b8015610a565780601f10610a2b57610100808354040283529160200191610a56565b820191906000526020600020905b815481529060010190602001808311610a3957829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16610b11576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610940565b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610b45826113f2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c03576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610940565b3373ffffffffffffffffffffffffffffffffffffffff82161480610c2c5750610c2c813361082f565b610cb8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610940565b610cc28383612c12565b505050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610d48576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610940565b610cc2601083836139b0565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610dd5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610940565b6002600b541415610e42576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610940565b6002600b55600e5460085410610eb4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006044820152606401610940565b600c54601254610ec5908390613e90565b1115610f2d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f4e6f7420656e6f75676820746f6b656e73206c65667420746f206769667400006044820152606401610940565b60005b81811015610fac576000610f4360085490565b610f4e906001613e90565b9050600160126000828254610f639190613e90565b90915550610f999050848484818110610f7e57610f7e61406a565b9050602002016020810190610f939190613aa0565b82612cb2565b5080610fa481613f90565b915050610f30565b50506001600b5550565b610fc03382612ccc565b61104c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610940565b610cc2838383612e3c565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146110d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610940565b600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600061111483611531565b82106111a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610940565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600660209081526040808320938352929052205490565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610940565b6040514790339082156108fc029083906000818181858888f19350505050158015611288573d6000803e3d6000fd5b5050565b610cc283838360405180602001604052806000815250611e46565b60006112b260085490565b8210611340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610940565b600882815481106113535761135361406a565b90600052602060002001549050919050565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146113e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610940565b610cc2601783836139b0565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16806109c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610940565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610940565b610cc2601883836139b0565b600073ffffffffffffffffffffffffffffffffffffffff82166115d6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610940565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610940565b600a5460405160009173ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610940565b600f8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610940565b60005b81811015610cc25760008383838181106118475761184761406a565b905060200201602081019061185c9190613aa0565b73ffffffffffffffffffffffffffffffffffffffff1614156118da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f43616e27742061646420746865206e756c6c20616464726573730000000000006044820152606401610940565b6001601460008585858181106118f2576118f261406a565b90506020020160208101906119079190613aa0565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600090812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016921515929092179091556015818585858181106119725761197261406a565b90506020020160208101906119879190613aa0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116119ce576000611a35565b601560008484848181106119e4576119e461406a565b90506020020160208101906119f99190613aa0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b5080611a4081613f90565b91505061182b565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611ac9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610940565b601155565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611b4f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610940565b610cc2601683836139b0565b6060600180546109dd90613f3c565b73ffffffffffffffffffffffffffffffffffffffff8216331415611bea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610940565b33600081815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611d02576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610940565b60005b81811015610cc2576000838383818110611d2157611d2161406a565b9050602002016020810190611d369190613aa0565b73ffffffffffffffffffffffffffffffffffffffff161415611db4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f43616e27742061646420746865206e756c6c20616464726573730000000000006044820152606401610940565b600060146000858585818110611dcc57611dcc61406a565b9050602002016020810190611de19190613aa0565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580611e3e81613f90565b915050611d05565b611e503383612ccc565b611edc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610940565b611ee8848484846130ae565b50505050565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16611f7c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f546f6b656e20646f6573206e6f742065786973740000000000000000000000006044820152606401610940565b600060188054611f8b90613f3c565b80601f0160208091040260200160405190810160405280929190818152602001828054611fb790613f3c565b80156120045780601f10611fd957610100808354040283529160200191612004565b820191906000526020600020905b815481529060010190602001808311611fe757829003601f168201915b5050505050905060008151116120a4576017805461202190613f3c565b80601f016020809104026020016040519081016040528092919081815260200182805461204d90613f3c565b801561209a5780601f1061206f5761010080835404028352916020019161209a565b820191906000526020600020905b81548152906001019060200180831161207d57829003601f168201915b50505050506120cf565b806120ae84613151565b6040516020016120bf929190613e05565b6040516020818303038152906040525b9392505050565b6060601680546109dd90613f3c565b6002600b541415612152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610940565b6002600b55600f5460ff166121c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f436f6e7472616374206973206e6f7420616374697665000000000000000000006044820152606401610940565b600f54610100900460ff1615612235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4f6e6c7920616c6c6f77696e672066726f6d20416c6c6f77204c6973740000006044820152606401610940565b600e54600854106122a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006044820152606401610940565b600781111561230d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f576f756c64206578636565642050555243484153455f4c494d495400000000006044820152606401610940565b600d546013541061237a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f507572636861736520776f756c6420657863656564205055424c4943000000006044820152606401610940565b3461238c82668e1bc9bf040000613ebc565b11156123f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e74000000006044820152606401610940565b60005b8181101561245457600d5460135410156124425760016013600082825461241e9190613e90565b9091555050600854600090612434906001613e90565b90506124403382612cb2565b505b8061244c81613f90565b9150506123f7565b50506001600b55565b6002600b5414156124ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610940565b6002600b55600f5460ff1661253b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f436f6e7472616374206973206e6f7420616374697665000000000000000000006044820152606401610940565b600f54610100900460ff166125ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f416c6c6f77204c697374206973206e6f742061637469766500000000000000006044820152606401610940565b3360009081526014602052604090205460ff16612625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f596f7520617265206e6f74206f6e2074686520416c6c6f77204c6973740000006044820152606401610940565b600e5460085410612692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006044820152606401610940565b6011548111156126fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736044820152606401610940565b600d548160135461270f9190613e90565b1115612777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f507572636861736520776f756c6420657863656564205055424c4943000000006044820152606401610940565b60115433600090815260156020526040902054612795908390613e90565b11156127fd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f50757263686173652065786365656473206d617820616c6c6f776564000000006044820152606401610940565b3461280f82668e1bc9bf040000613ebc565b1115612877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e74000000006044820152606401610940565b60005b81811015612454576001601360008282546128959190613e90565b90915550503360009081526015602052604081208054600192906128ba908490613e90565b90915550506008546000906128d0906001613e90565b90506128dc3382612cb2565b50806128e781613f90565b91505061287a565b600a5473ffffffffffffffffffffffffffffffffffffffff163314612970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610940565b73ffffffffffffffffffffffffffffffffffffffff8116612a13576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610940565b600a5460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60108054612aae90613f3c565b80601f0160208091040260200160405190810160405280929190818152602001828054612ada90613f3c565b8015612b275780601f10612afc57610100808354040283529160200191612b27565b820191906000526020600020905b815481529060010190602001808311612b0a57829003601f168201915b505050505081565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480612bc257507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109c857507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146109c8565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190612c6c826113f2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611288828260405180602001604052806000815250613283565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16612d7d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610940565b6000612d88836113f2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612df757508373ffffffffffffffffffffffffffffffffffffffff16612ddf84610a60565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e34575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16612e5c826113f2565b73ffffffffffffffffffffffffffffffffffffffff1614612eff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610940565b73ffffffffffffffffffffffffffffffffffffffff8216612fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610940565b612fac838383613326565b612fb7600082612c12565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600360205260408120805460019290612fed908490613ef9565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290613028908490613e90565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6130b9848484612e3c565b6130c58484848461342c565b611ee8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610940565b60608161319157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156131bb57806131a581613f90565b91506131b49050600a83613ea8565b9150613195565b60008167ffffffffffffffff8111156131d6576131d6614099565b6040519080825280601f01601f191660200182016040528015613200576020820181803683370190505b5090505b8415612e3457613215600183613ef9565b9150613222600a86613fc9565b61322d906030613e90565b60f81b8183815181106132425761324261406a565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061327c600a86613ea8565b9450613204565b61328d838361362b565b61329a600084848461342c565b610cc2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610940565b73ffffffffffffffffffffffffffffffffffffffff831661338e5761338981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6133cb565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146133cb576133cb83826137f9565b73ffffffffffffffffffffffffffffffffffffffff82166133ef57610cc2816138b0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610cc257610cc2828261395f565b600073ffffffffffffffffffffffffffffffffffffffff84163b15613620576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906134a3903390899088908890600401613e34565b602060405180830381600087803b1580156134bd57600080fd5b505af192505050801561350b575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261350891810190613d25565b60015b6135d5573d808015613539576040519150601f19603f3d011682016040523d82523d6000602084013e61353e565b606091505b5080516135cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610940565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612e34565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff82166136a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610940565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff1615613734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610940565b61374060008383613326565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290613776908490613e90565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161380684611531565b6138109190613ef9565b6000838152600760205260409020549091508082146138705773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b50600091825260076020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600681528383209183525290812055565b6008546000906138c290600190613ef9565b600083815260096020526040812054600880549394509092849081106138ea576138ea61406a565b90600052602060002001549050806008838154811061390b5761390b61406a565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806139435761394361403b565b6001900381819060005260206000200160009055905550505050565b600061396a83611531565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546139bc90613f3c565b90600052602060002090601f0160209004810192826139de5760008555613a42565b82601f10613a15578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555613a42565b82800160010185558215613a42579182015b82811115613a42578235825591602001919060010190613a27565b50613a4e929150613a52565b5090565b5b80821115613a4e5760008155600101613a53565b803573ffffffffffffffffffffffffffffffffffffffff81168114613a8b57600080fd5b919050565b80358015158114613a8b57600080fd5b600060208284031215613ab257600080fd5b6120cf82613a67565b60008060408385031215613ace57600080fd5b613ad783613a67565b9150613ae560208401613a67565b90509250929050565b600080600060608486031215613b0357600080fd5b613b0c84613a67565b9250613b1a60208501613a67565b9150604084013590509250925092565b60008060008060808587031215613b4057600080fd5b613b4985613a67565b9350613b5760208601613a67565b925060408501359150606085013567ffffffffffffffff80821115613b7b57600080fd5b818701915087601f830112613b8f57600080fd5b813581811115613ba157613ba1614099565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908382118183101715613be757613be7614099565b816040528281528a6020848701011115613c0057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215613c3757600080fd5b613c4083613a67565b9150613ae560208401613a90565b60008060408385031215613c6157600080fd5b613c6a83613a67565b946020939093013593505050565b60008060208385031215613c8b57600080fd5b823567ffffffffffffffff80821115613ca357600080fd5b818501915085601f830112613cb757600080fd5b813581811115613cc657600080fd5b8660208260051b8501011115613cdb57600080fd5b60209290920196919550909350505050565b600060208284031215613cff57600080fd5b6120cf82613a90565b600060208284031215613d1a57600080fd5b81356120cf816140c8565b600060208284031215613d3757600080fd5b81516120cf816140c8565b60008060208385031215613d5557600080fd5b823567ffffffffffffffff80821115613d6d57600080fd5b818501915085601f830112613d8157600080fd5b813581811115613d9057600080fd5b866020828501011115613cdb57600080fd5b600060208284031215613db457600080fd5b5035919050565b60008151808452613dd3816020860160208601613f10565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008351613e17818460208801613f10565b835190830190613e2b818360208801613f10565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152613e736080830184613dbb565b9695505050505050565b6020815260006120cf6020830184613dbb565b60008219821115613ea357613ea3613fdd565b500190565b600082613eb757613eb761400c565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ef457613ef4613fdd565b500290565b600082821015613f0b57613f0b613fdd565b500390565b60005b83811015613f2b578181015183820152602001613f13565b83811115611ee85750506000910152565b600181811c90821680613f5057607f821691505b60208210811415613f8a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fc257613fc2613fdd565b5060010190565b600082613fd857613fd861400c565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff00000000000000000000000000000000000000000000000000000000811681146140f657600080fd5b5056fea2646970667358221220c5b8e501fb525c621a2696b5272bcc006635f26dcf4e110170860fa4e7d1b90e64736f6c63430008060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000264800000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000a436f6f6c20506565707300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000343505300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022687474703a2f2f6170692e636f6f6c70656570732e66756e2f6d657461646174612f000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Cool Peeps
Arg [1] : symbol (string): CPS
Arg [2] : _publicSupply (uint256): 9800
Arg [3] : _giftSupply (uint256): 200
Arg [4] : _uri (string): http://api.coolpeeps.fun/metadata/
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000002648
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 436f6f6c20506565707300000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 4350530000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000022
Arg [10] : 687474703a2f2f6170692e636f6f6c70656570732e66756e2f6d657461646174
Arg [11] : 612f000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
45711:7427:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48168:209;;;;;;;;;;-1:-1:-1;48168:209:0;;;;;:::i;:::-;;:::i;:::-;;;19222:25:1;;;19210:2;19195:18;48168:209:0;;;;;;;;33546:237;;;;;;;;;;-1:-1:-1;33546:237:0;;;;;:::i;:::-;;:::i;:::-;;;6688:14:1;;6681:22;6663:41;;6651:2;6636:18;33546:237:0;6618:92:1;20922:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22382:221::-;;;;;;;;;;-1:-1:-1;22382:221:0;;;;;:::i;:::-;;:::i;:::-;;;5952:42:1;5940:55;;;5922:74;;5910:2;5895:18;22382:221:0;5877:125:1;21919:397:0;;;;;;;;;;-1:-1:-1;21919:397:0;;;;;:::i;:::-;;:::i;:::-;;51885:113;;;;;;;;;;-1:-1:-1;51885:113:0;;;;;:::i;:::-;;:::i;50973:517::-;;;;;;;;;;-1:-1:-1;50973:517:0;;;;;:::i;:::-;;:::i;34199:113::-;;;;;;;;;;-1:-1:-1;34287:10:0;:17;34199:113;;45831:25;;;;;;;;;;;;;;;;46028:28;;;;;;;;;;-1:-1:-1;46028:28:0;;;;;;;;23272:305;;;;;;;;;;-1:-1:-1;23272:305:0;;;;;:::i;:::-;;:::i;51498:104::-;;;;;;;;;;-1:-1:-1;51498:104:0;;;;;:::i;:::-;;:::i;46063:37::-;;;;;;;;;;-1:-1:-1;46063:37:0;;;;;;;;;;;33867:256;;;;;;;;;;-1:-1:-1;33867:256:0;;;;;:::i;:::-;;:::i;47507:115::-;;;;;;;;;;-1:-1:-1;47507:115:0;;;;;:::i;:::-;47598:16;;47574:4;47598:16;;;:10;:16;;;;;;;;;47507:115;52006:156;;;;;;;;;;;;;:::i;23648:151::-;;;;;;;;;;-1:-1:-1;23648:151:0;;;;;:::i;:::-;;:::i;34389:233::-;;;;;;;;;;-1:-1:-1;34389:233:0;;;;;:::i;:::-;;:::i;52288:107::-;;;;;;;;;;-1:-1:-1;52288:107:0;;;;;:::i;:::-;;:::i;45863:27::-;;;;;;;;;;;;;;;;20616:239;;;;;;;;;;-1:-1:-1;20616:239:0;;;;;:::i;:::-;;:::i;52403:147::-;;;;;;;;;;-1:-1:-1;52403:147:0;;;;;:::i;:::-;;:::i;20346:208::-;;;;;;;;;;-1:-1:-1;20346:208:0;;;;;:::i;:::-;;:::i;41361:148::-;;;;;;;;;;;;;:::i;51610:140::-;;;;;;;;;;-1:-1:-1;51610:140:0;;;;;:::i;:::-;;:::i;46968:531::-;;;;;;;;;;-1:-1:-1;46968:531:0;;;;;:::i;:::-;;:::i;51758:119::-;;;;;;;;;;-1:-1:-1;51758:119:0;;;;;:::i;:::-;;:::i;46135:35::-;;;;;;;;;;;;;;;;45977:42;;;;;;;;;;;;46009:10;45977:42;;40710:87;;;;;;;;;;-1:-1:-1;40783:6:0;;;;40710:87;;52170:110;;;;;;;;;;-1:-1:-1;52170:110:0;;;;;:::i;:::-;;:::i;21091:104::-;;;;;;;;;;;;;:::i;22675:295::-;;;;;;;;;;-1:-1:-1;22675:295:0;;;;;:::i;:::-;;:::i;47630:374::-;;;;;;;;;;-1:-1:-1;47630:374:0;;;;;:::i;:::-;;:::i;23870:285::-;;;;;;;;;;-1:-1:-1;23870:285:0;;;;;:::i;:::-;;:::i;52672:463::-;;;;;;;;;;-1:-1:-1;52672:463:0;;;;;:::i;:::-;;:::i;45897:24::-;;;;;;;;;;;;;;;;46256:30;;;;;;;;;;;;;;;;45928:42;;;;;;;;;;;;45969:1;45928:42;;46293:32;;;;;;;;;;;;;;;;52558:106;;;;;;;;;;;;;:::i;23041:164::-;;;;;;;;;;-1:-1:-1;23041:164:0;;;;;:::i;:::-;23162:25;;;;23138:4;23162:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23041:164;48385:1396;;;;;;:::i;:::-;;:::i;49789:1176::-;;;;;;:::i;:::-;;:::i;41664:244::-;;;;;;;;;;-1:-1:-1;41664:244:0;;;;;:::i;:::-;;:::i;46107:19::-;;;;;;;;;;;;;:::i;48168:209::-;48243:7;48271:19;;;48263:62;;;;;;;15128:2:1;48263:62:0;;;15110:21:1;15167:2;15147:18;;;15140:30;15206:32;15186:18;;;15179:60;15256:18;;48263:62:0;;;;;;;;;-1:-1:-1;48345:24:0;;;;;;:17;:24;;;;;;;48168:209::o;33546:237::-;33648:4;33672:50;;;33687:35;33672:50;;:103;;;33739:36;33763:11;33739:23;:36::i;:::-;33665:110;33546:237;-1:-1:-1;;33546:237:0:o;20922:100::-;20976:13;21009:5;21002:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20922:100;:::o;22382:221::-;22458:7;25711:16;;;:7;:16;;;;;;:30;:16;22478:73;;;;;;;14354:2:1;22478:73:0;;;14336:21:1;14393:2;14373:18;;;14366:30;14432:34;14412:18;;;14405:62;14503:14;14483:18;;;14476:42;14535:19;;22478:73:0;14326:234:1;22478:73:0;-1:-1:-1;22571:24:0;;;;:15;:24;;;;;;;;;22382:221::o;21919:397::-;22000:13;22016:23;22031:7;22016:14;:23::i;:::-;22000:39;;22064:5;22058:11;;:2;:11;;;;22050:57;;;;;;;16611:2:1;22050:57:0;;;16593:21:1;16650:2;16630:18;;;16623:30;16689:34;16669:18;;;16662:62;16760:3;16740:18;;;16733:31;16781:19;;22050:57:0;16583:223:1;22050:57:0;15561:10;22128:21;;;;;:62;;-1:-1:-1;22153:37:0;22170:5;15561:10;23041:164;:::i;22153:37::-;22120:154;;;;;;;12396:2:1;22120:154:0;;;12378:21:1;12435:2;12415:18;;;12408:30;12474:34;12454:18;;;12447:62;12545:26;12525:18;;;12518:54;12589:19;;22120:154:0;12368:246:1;22120:154:0;22287:21;22296:2;22300:7;22287:8;:21::i;:::-;21989:327;21919:397;;:::o;51885:113::-;40783:6;;40930:23;40783:6;15561:10;40930:23;40922:68;;;;;;;14767:2:1;40922:68:0;;;14749:21:1;;;14786:18;;;14779:30;14845:34;14825:18;;;14818:62;14897:18;;40922:68:0;14739:182:1;40922:68:0;51971:19:::1;:5;51979:11:::0;;51971:19:::1;:::i;50973:517::-:0;40783:6;;40930:23;40783:6;15561:10;40930:23;40922:68;;;;;;;14767:2:1;40922:68:0;;;14749:21:1;;;14786:18;;;14779:30;14845:34;14825:18;;;14818:62;14897:18;;40922:68:0;14739:182:1;40922:68:0;43595:1:::1;44192:7;;:19;;44184:63;;;::::0;::::1;::::0;;18201:2:1;44184:63:0::1;::::0;::::1;18183:21:1::0;18240:2;18220:18;;;18213:30;18279:33;18259:18;;;18252:61;18330:18;;44184:63:0::1;18173:181:1::0;44184:63:0::1;43595:1;44325:7;:18:::0;51085:9:::2;::::0;34287:10;:17;51069:25:::2;51061:65;;;::::0;::::2;::::0;;18561:2:1;51061:65:0::2;::::0;::::2;18543:21:1::0;18600:2;18580:18;;;18573:30;18639:29;18619:18;;;18612:57;18686:18;;51061:65:0::2;18533:177:1::0;51061:65:0::2;51176:10;::::0;51145:15:::2;::::0;:27:::2;::::0;51163:2;;51145:27:::2;:::i;:::-;:41;;51137:84;;;::::0;::::2;::::0;;16252:2:1;51137:84:0::2;::::0;::::2;16234:21:1::0;16291:2;16271:18;;;16264:30;16330:32;16310:18;;;16303:60;16380:18;;51137:84:0::2;16224:180:1::0;51137:84:0::2;51238:9;51234:249;51253:13:::0;;::::2;51234:249;;;51359:15;51377:13;34287:10:::0;:17;;34199:113;51377:13:::2;:17;::::0;51393:1:::2;51377:17;:::i;:::-;51359:35;;51428:1;51409:15;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;51446:25:0::2;::::0;-1:-1:-1;51456:2:0;;51459:1;51456:5;;::::2;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;51463:7;51446:9;:25::i;:::-;-1:-1:-1::0;51268:3:0;::::2;::::0;::::2;:::i;:::-;;;;51234:249;;;-1:-1:-1::0;;43551:1:0::1;44504:7;:22:::0;-1:-1:-1;50973:517:0:o;23272:305::-;23433:41;15561:10;23466:7;23433:18;:41::i;:::-;23425:103;;;;;;;17013:2:1;23425:103:0;;;16995:21:1;17052:2;17032:18;;;17025:30;17091:34;17071:18;;;17064:62;17162:19;17142:18;;;17135:47;17199:19;;23425:103:0;16985:239:1;23425:103:0;23541:28;23551:4;23557:2;23561:7;23541:9;:28::i;51498:104::-;40783:6;;40930:23;40783:6;15561:10;40930:23;40922:68;;;;;;;14767:2:1;40922:68:0;;;14749:21:1;;;14786:18;;;14779:30;14845:34;14825:18;;;14818:62;14897:18;;40922:68:0;14739:182:1;40922:68:0;51574:8:::1;:20:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;51498:104::o;33867:256::-;33964:7;34000:23;34017:5;34000:16;:23::i;:::-;33992:5;:31;33984:87;;;;;;;7852:2:1;33984:87:0;;;7834:21:1;7891:2;7871:18;;;7864:30;7930:34;7910:18;;;7903:62;8001:13;7981:18;;;7974:41;8032:19;;33984:87:0;7824:233:1;33984:87:0;-1:-1:-1;34089:19:0;;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;33867:256::o;52006:156::-;40783:6;;40930:23;40783:6;15561:10;40930:23;40922:68;;;;;;;14767:2:1;40922:68:0;;;14749:21:1;;;14786:18;;;14779:30;14845:34;14825:18;;;14818:62;14897:18;;40922:68:0;14739:182:1;40922:68:0;52117:37:::1;::::0;52083:21:::1;::::0;52125:10:::1;::::0;52117:37;::::1;;;::::0;52083:21;;52065:15:::1;52117:37:::0;52065:15;52117:37;52083:21;52125:10;52117:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;52054:108;52006:156::o:0;23648:151::-;23752:39;23769:4;23775:2;23779:7;23752:39;;;;;;;;;;;;:16;:39::i;34389:233::-;34464:7;34500:30;34287:10;:17;;34199:113;34500:30;34492:5;:38;34484:95;;;;;;;17431:2:1;34484:95:0;;;17413:21:1;17470:2;17450:18;;;17443:30;17509:34;17489:18;;;17482:62;17580:14;17560:18;;;17553:42;17612:19;;34484:95:0;17403:234:1;34484:95:0;34597:10;34608:5;34597:17;;;;;;;;:::i;:::-;;;;;;;;;34590:24;;34389:233;;;:::o;52288:107::-;40783:6;;40930:23;40783:6;15561:10;40930:23;40922:68;;;;;;;14767:2:1;40922:68:0;;;14749:21:1;;;14786:18;;;14779:30;14845:34;14825:18;;;14818:62;14897:18;;40922:68:0;14739:182:1;40922:68:0;52368:19:::1;:13;52384:3:::0;;52368:19:::1;:::i;20616:239::-:0;20688:7;20724:16;;;:7;:16;;;;;;;;20759:19;20751:73;;;;;;;13232:2:1;20751:73:0;;;13214:21:1;13271:2;13251:18;;;13244:30;13310:34;13290:18;;;13283:62;13381:11;13361:18;;;13354:39;13410:19;;20751:73:0;13204:231:1;52403:147:0;40783:6;;40930:23;40783:6;15561:10;40930:23;40922:68;;;;;;;14767:2:1;40922:68:0;;;14749:21:1;;;14786:18;;;14779:30;14845:34;14825:18;;;14818:62;14897:18;;40922:68:0;14739:182:1;40922:68:0;52503:39:::1;:21;52527:15:::0;;52503:39:::1;:::i;20346:208::-:0;20418:7;20446:19;;;20438:74;;;;;;;12821:2:1;20438:74:0;;;12803:21:1;12860:2;12840:18;;;12833:30;12899:34;12879:18;;;12872:62;12970:12;12950:18;;;12943:40;13000:19;;20438:74:0;12793:232:1;20438:74:0;-1:-1:-1;20530:16:0;;;;;;:9;:16;;;;;;;20346:208::o;41361:148::-;40783:6;;40930:23;40783:6;15561:10;40930:23;40922:68;;;;;;;14767:2:1;40922:68:0;;;14749:21:1;;;14786:18;;;14779:30;14845:34;14825:18;;;14818:62;14897:18;;40922:68:0;14739:182:1;40922:68:0;41452:6:::1;::::0;41431:40:::1;::::0;41468:1:::1;::::0;41431:40:::1;41452:6;::::0;41431:40:::1;::::0;41468:1;;41431:40:::1;41482:6;:19:::0;;;::::1;::::0;;41361:148::o;51610:140::-;40783:6;;40930:23;40783:6;15561:10;40930:23;40922:68;;;;;;;14767:2:1;40922:68:0;;;14749:21:1;;;14786:18;;;14779:30;14845:34;14825:18;;;14818:62;14897:18;;40922:68:0;14739:182:1;40922:68:0;51704:17:::1;:38:::0;;;::::1;;;;::::0;;;::::1;::::0;;;::::1;::::0;;51610:140::o;46968:531::-;40783:6;;40930:23;40783:6;15561:10;40930:23;40922:68;;;;;;;14767:2:1;40922:68:0;;;14749:21:1;;;14786:18;;;14779:30;14845:34;14825:18;;;14818:62;14897:18;;40922:68:0;14739:182:1;40922:68:0;47066:9:::1;47061:431;47081:20:::0;;::::1;47061:431;;;47155:1;47131:9:::0;;47141:1;47131:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;:26;;;;47123:65;;;::::0;::::1;::::0;;15487:2:1;47123:65:0::1;::::0;::::1;15469:21:1::0;15526:2;15506:18;;;15499:30;15565:28;15545:18;;;15538:56;15611:18;;47123:65:0::1;15459:176:1::0;47123:65:0::1;47232:4;47205:10;:24;47216:9;;47226:1;47216:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;47205:24;;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;47205:24:0;;;:31;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;;47407:17:::1;-1:-1:-1::0;47425:9:0;;47435:1;47425:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;47407:31;;;;;;;;;;;;;;;;:35;:73;;47479:1;47407:73;;;47445:17;:31;47463:9;;47473:1;47463:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;47445:31;;;;;;;;;;;;;;;;47407:73;-1:-1:-1::0;47103:3:0;::::1;::::0;::::1;:::i;:::-;;;;47061:431;;51758:119:::0;40783:6;;40930:23;40783:6;15561:10;40930:23;40922:68;;;;;;;14767:2:1;40922:68:0;;;14749:21:1;;;14786:18;;;14779:30;14845:34;14825:18;;;14818:62;14897:18;;40922:68:0;14739:182:1;40922:68:0;51843:16:::1;:26:::0;51758:119::o;52170:110::-;40783:6;;40930:23;40783:6;15561:10;40930:23;40922:68;;;;;;;14767:2:1;40922:68:0;;;14749:21:1;;;14786:18;;;14779:30;14845:34;14825:18;;;14818:62;14897:18;;40922:68:0;14739:182:1;40922:68:0;52254:18:::1;:12;52269:3:::0;;52254:18:::1;:::i;21091:104::-:0;21147:13;21180:7;21173:14;;;;;:::i;22675:295::-;22778:24;;;15561:10;22778:24;;22770:62;;;;;;;10566:2:1;22770:62:0;;;10548:21:1;10605:2;10585:18;;;10578:30;10644:27;10624:18;;;10617:55;10689:18;;22770:62:0;10538:175:1;22770:62:0;15561:10;22845:32;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;22914:48;;6663:41:1;;;22845:42:0;;15561:10;22914:48;;6636:18:1;22914:48:0;;;;;;;22675:295;;:::o;47630:374::-;40783:6;;40930:23;40783:6;15561:10;40930:23;40922:68;;;;;;;14767:2:1;40922:68:0;;;14749:21:1;;;14786:18;;;14779:30;14845:34;14825:18;;;14818:62;14897:18;;40922:68:0;14739:182:1;40922:68:0;47733:9:::1;47728:269;47748:20:::0;;::::1;47728:269;;;47822:1;47798:9:::0;;47808:1;47798:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;:26;;;;47790:65;;;::::0;::::1;::::0;;15487:2:1;47790:65:0::1;::::0;::::1;15469:21:1::0;15526:2;15506:18;;;15499:30;15565:28;15545:18;;;15538:56;15611:18;;47790:65:0::1;15459:176:1::0;47790:65:0::1;47980:5;47953:10;:24;47964:9;;47974:1;47964:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;47953:24;;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;47953:24:0;:32;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;47770:3;::::1;::::0;::::1;:::i;:::-;;;;47728:269;;23870:285:::0;24002:41;15561:10;24035:7;24002:18;:41::i;:::-;23994:103;;;;;;;17013:2:1;23994:103:0;;;16995:21:1;17052:2;17032:18;;;17025:30;17091:34;17071:18;;;17064:62;17162:19;17142:18;;;17135:47;17199:19;;23994:103:0;16985:239:1;23994:103:0;24108:39;24122:4;24128:2;24132:7;24141:5;24108:13;:39::i;:::-;23870:285;;;;:::o;52672:463::-;25687:4;25711:16;;;:7;:16;;;;;;52745:13;;25711:30;:16;52771:49;;;;;;;10920:2:1;52771:49:0;;;10902:21:1;10959:2;10939:18;;;10932:30;10998:22;10978:18;;;10971:50;11038:18;;52771:49:0;10892:170:1;52771:49:0;52913:29;52945:21;52913:53;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53019:1;52993:15;52987:29;:33;52986:141;;53114:13;52986:141;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53061:15;53078:18;:7;:16;:18::i;:::-;53044:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52986:141;52979:148;52672:463;-1:-1:-1;;;52672:463:0:o;52558:106::-;52611:13;52644:12;52637:19;;;;;:::i;48385:1396::-;43595:1;44192:7;;:19;;44184:63;;;;;;;18201:2:1;44184:63:0;;;18183:21:1;18240:2;18220:18;;;18213:30;18279:33;18259:18;;;18252:61;18330:18;;44184:63:0;18173:181:1;44184:63:0;43595:1;44325:7;:18;48485:8:::1;::::0;::::1;;48477:43;;;::::0;::::1;::::0;;14003:2:1;48477:43:0::1;::::0;::::1;13985:21:1::0;14042:2;14022:18;;;14015:30;14081:24;14061:18;;;14054:52;14123:18;;48477:43:0::1;13975:172:1::0;48477:43:0::1;48540:17;::::0;::::1;::::0;::::1;;;48539:18;48531:60;;;::::0;::::1;::::0;;8264:2:1;48531:60:0::1;::::0;::::1;8246:21:1::0;8303:2;8283:18;;;8276:30;8342:31;8322:18;;;8315:59;8391:18;;48531:60:0::1;8236:179:1::0;48531:60:0::1;48626:9;::::0;34287:10;:17;48610:25:::1;48602:65;;;::::0;::::1;::::0;;18561:2:1;48602:65:0::1;::::0;::::1;18543:21:1::0;18600:2;18580:18;;;18573:30;18639:29;18619:18;;;18612:57;18686:18;;48602:65:0::1;18533:177:1::0;48602:65:0::1;45969:1;48686:14;:32;;48678:72;;;::::0;::::1;::::0;;9805:2:1;48678:72:0::1;::::0;::::1;9787:21:1::0;9844:2;9824:18;;;9817:30;9883:29;9863:18;;;9856:57;9930:18;;48678:72:0::1;9777:177:1::0;48678:72:0::1;49006:12;;48986:17;;:32;48978:73;;;::::0;::::1;::::0;;12039:2:1;48978:73:0::1;::::0;::::1;12021:21:1::0;12078:2;12058:18;;;12051:30;12117;12097:18;;;12090:58;12165:18;;48978:73:0::1;12011:178:1::0;48978:73:0::1;49096:9;49070:22;49078:14:::0;46009:10:::1;49070:22;:::i;:::-;:35;;49062:76;;;::::0;::::1;::::0;;11269:2:1;49062:76:0::1;::::0;::::1;11251:21:1::0;11308:2;11288:18;;;11281:30;11347;11327:18;;;11320:58;11395:18;;49062:76:0::1;11241:178:1::0;49062:76:0::1;49156:9;49151:623;49175:14;49171:1;:18;49151:623;;;49408:12;;49388:17;;:32;49384:379;;;49641:1;49620:17;;:22;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;34287:10:0;:17;49661:15:::1;::::0;49679:17:::1;::::0;49695:1:::1;49679:17;:::i;:::-;49661:35;;49717:30;49727:10;49739:7;49717:9;:30::i;:::-;49422:341;49384:379;49191:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49151:623;;;-1:-1:-1::0;;43551:1:0;44504:7;:22;48385:1396::o;49789:1176::-;43595:1;44192:7;;:19;;44184:63;;;;;;;18201:2:1;44184:63:0;;;18183:21:1;18240:2;18220:18;;;18213:30;18279:33;18259:18;;;18252:61;18330:18;;44184:63:0;18173:181:1;44184:63:0;43595:1;44325:7;:18;49898:8:::1;::::0;::::1;;49890:43;;;::::0;::::1;::::0;;14003:2:1;49890:43:0::1;::::0;::::1;13985:21:1::0;14042:2;14022:18;;;14015:30;14081:24;14061:18;;;14054:52;14123:18;;49890:43:0::1;13975:172:1::0;49890:43:0::1;49952:17;::::0;::::1;::::0;::::1;;;49944:54;;;::::0;::::1;::::0;;7141:2:1;49944:54:0::1;::::0;::::1;7123:21:1::0;7180:2;7160:18;;;7153:30;7219:26;7199:18;;;7192:54;7263:18;;49944:54:0::1;7113:174:1::0;49944:54:0::1;50028:10;50017:22;::::0;;;:10:::1;:22;::::0;;;;;::::1;;50009:64;;;::::0;::::1;::::0;;7494:2:1;50009:64:0::1;::::0;::::1;7476:21:1::0;7533:2;7513:18;;;7506:30;7572:31;7552:18;;;7545:59;7621:18;;50009:64:0::1;7466:179:1::0;50009:64:0::1;50108:9;::::0;34287:10;:17;50092:25:::1;50084:65;;;::::0;::::1;::::0;;18561:2:1;50084:65:0::1;::::0;::::1;18543:21:1::0;18600:2;18580:18;;;18573:30;18639:29;18619:18;;;18612:57;18686:18;;50084:65:0::1;18533:177:1::0;50084:65:0::1;50186:16;;50168:14;:34;;50160:79;;;::::0;::::1;::::0;;18917:2:1;50160:79:0::1;::::0;::::1;18899:21:1::0;;;18936:18;;;18929:30;18995:34;18975:18;;;18968:62;19047:18;;50160:79:0::1;18889:182:1::0;50160:79:0::1;50296:12;;50278:14;50258:17;;:34;;;;:::i;:::-;:50;;50250:91;;;::::0;::::1;::::0;;12039:2:1;50250:91:0::1;::::0;::::1;12021:21:1::0;12078:2;12058:18;;;12051:30;12117;12097:18;;;12090:58;12165:18;;50250:91:0::1;12011:178:1::0;50250:91:0::1;50410:16;::::0;50378:10:::1;50360:29;::::0;;;:17:::1;:29;::::0;;;;;:46:::1;::::0;50392:14;;50360:46:::1;:::i;:::-;:66;;50352:107;;;::::0;::::1;::::0;;17844:2:1;50352:107:0::1;::::0;::::1;17826:21:1::0;17883:2;17863:18;;;17856:30;17922;17902:18;;;17895:58;17970:18;;50352:107:0::1;17816:178:1::0;50352:107:0::1;50504:9;50478:22;50486:14:::0;46009:10:::1;50478:22;:::i;:::-;:35;;50470:76;;;::::0;::::1;::::0;;11269:2:1;50470:76:0::1;::::0;::::1;11251:21:1::0;11308:2;11288:18;;;11281:30;11347;11327:18;;;11320:58;11395:18;;50470:76:0::1;11241:178:1::0;50470:76:0::1;50564:9;50559:399;50583:14;50579:1;:18;50559:399;;;50799:1;50778:17;;:22;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;50833:10:0::1;50815:29;::::0;;;:17:::1;:29;::::0;;;;:34;;50848:1:::1;::::0;50815:29;:34:::1;::::0;50848:1;;50815:34:::1;:::i;:::-;::::0;;;-1:-1:-1;;34287:10:0;:17;50864:15:::1;::::0;50882:17:::1;::::0;50898:1:::1;50882:17;:::i;:::-;50864:35;;50916:30;50926:10;50938:7;50916:9;:30::i;:::-;-1:-1:-1::0;50599:3:0;::::1;::::0;::::1;:::i;:::-;;;;50559:399;;41664:244:::0;40783:6;;40930:23;40783:6;15561:10;40930:23;40922:68;;;;;;;14767:2:1;40922:68:0;;;14749:21:1;;;14786:18;;;14779:30;14845:34;14825:18;;;14818:62;14897:18;;40922:68:0;14739:182:1;40922:68:0;41753:22:::1;::::0;::::1;41745:73;;;::::0;::::1;::::0;;9041:2:1;41745:73:0::1;::::0;::::1;9023:21:1::0;9080:2;9060:18;;;9053:30;9119:34;9099:18;;;9092:62;9190:8;9170:18;;;9163:36;9216:19;;41745:73:0::1;9013:228:1::0;41745:73:0::1;41855:6;::::0;41834:38:::1;::::0;::::1;::::0;;::::1;::::0;41855:6:::1;::::0;41834:38:::1;::::0;41855:6:::1;::::0;41834:38:::1;41883:6;:17:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;41664:244::o;46107:19::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19990:292::-;20092:4;20116:40;;;20131:25;20116:40;;:105;;-1:-1:-1;20173:48:0;;;20188:33;20173:48;20116:105;:158;;;-1:-1:-1;18688:25:0;18673:40;;;;20238:36;18564:157;29499:174;29574:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;29628:23;29574:24;29628:14;:23::i;:::-;29619:46;;;;;;;;;;;;29499:174;;:::o;26606:110::-;26682:26;26692:2;26696:7;26682:26;;;;;;;;;;;;:9;:26::i;25916:348::-;26009:4;25711:16;;;:7;:16;;;;;;:30;:16;26026:73;;;;;;;11626:2:1;26026:73:0;;;11608:21:1;11665:2;11645:18;;;11638:30;11704:34;11684:18;;;11677:62;11775:14;11755:18;;;11748:42;11807:19;;26026:73:0;11598:234:1;26026:73:0;26110:13;26126:23;26141:7;26126:14;:23::i;:::-;26110:39;;26179:5;26168:16;;:7;:16;;;:51;;;;26212:7;26188:31;;:20;26200:7;26188:11;:20::i;:::-;:31;;;26168:51;:87;;;-1:-1:-1;23162:25:0;;;;23138:4;23162:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26223:32;26160:96;25916:348;-1:-1:-1;;;;25916:348:0:o;28837:544::-;28962:4;28935:31;;:23;28950:7;28935:14;:23::i;:::-;:31;;;28927:85;;;;;;;15842:2:1;28927:85:0;;;15824:21:1;15881:2;15861:18;;;15854:30;15920:34;15900:18;;;15893:62;15991:11;15971:18;;;15964:39;16020:19;;28927:85:0;15814:231:1;28927:85:0;29031:16;;;29023:65;;;;;;;10161:2:1;29023:65:0;;;10143:21:1;10200:2;10180:18;;;10173:30;10239:34;10219:18;;;10212:62;10310:6;10290:18;;;10283:34;10334:19;;29023:65:0;10133:226:1;29023:65:0;29101:39;29122:4;29128:2;29132:7;29101:20;:39::i;:::-;29205:29;29222:1;29226:7;29205:8;:29::i;:::-;29247:15;;;;;;;:9;:15;;;;;:20;;29266:1;;29247:15;:20;;29266:1;;29247:20;:::i;:::-;;;;-1:-1:-1;;29278:13:0;;;;;;;:9;:13;;;;;:18;;29295:1;;29278:13;:18;;29295:1;;29278:18;:::i;:::-;;;;-1:-1:-1;;29307:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;;29346:27;;29307:16;;29346:27;;;;;;;28837:544;;;:::o;25037:272::-;25151:28;25161:4;25167:2;25171:7;25151:9;:28::i;:::-;25198:48;25221:4;25227:2;25231:7;25240:5;25198:22;:48::i;:::-;25190:111;;;;;;;8622:2:1;25190:111:0;;;8604:21:1;8661:2;8641:18;;;8634:30;8700:34;8680:18;;;8673:62;8771:20;8751:18;;;8744:48;8809:19;;25190:111:0;8594:240:1;16080:723:0;16136:13;16357:10;16353:53;;-1:-1:-1;;16384:10:0;;;;;;;;;;;;;;;;;;16080:723::o;16353:53::-;16431:5;16416:12;16472:78;16479:9;;16472:78;;16505:8;;;;:::i;:::-;;-1:-1:-1;16528:10:0;;-1:-1:-1;16536:2:0;16528:10;;:::i;:::-;;;16472:78;;;16560:19;16592:6;16582:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16582:17:0;;16560:39;;16610:154;16617:10;;16610:154;;16644:11;16654:1;16644:11;;:::i;:::-;;-1:-1:-1;16713:10:0;16721:2;16713:5;:10;:::i;:::-;16700:24;;:2;:24;:::i;:::-;16687:39;;16670:6;16677;16670:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;16741:11:0;16750:2;16741:11;;:::i;:::-;;;16610:154;;26943:250;27039:18;27045:2;27049:7;27039:5;:18::i;:::-;27076:54;27107:1;27111:2;27115:7;27124:5;27076:22;:54::i;:::-;27068:117;;;;;;;8622:2:1;27068:117:0;;;8604:21:1;8661:2;8641:18;;;8634:30;8700:34;8680:18;;;8673:62;8771:20;8751:18;;;8744:48;8809:19;;27068:117:0;8594:240:1;35235:555:0;35407:18;;;35403:187;;35442:40;35474:7;36617:10;:17;;36590:24;;;;:15;:24;;;;;:44;;;36645:24;;;;;;;;;;;;36513:164;35442:40;35403:187;;;35512:2;35504:10;;:4;:10;;;35500:90;;35531:47;35564:4;35570:7;35531:32;:47::i;:::-;35604:16;;;35600:183;;35637:45;35674:7;35637:36;:45::i;35600:183::-;35710:4;35704:10;;:2;:10;;;35700:83;;35731:40;35759:2;35763:7;35731:27;:40::i;30238:843::-;30359:4;30385:13;;;8023:20;8062:8;30381:693;;30421:72;;;;;:36;;;;;;:72;;15561:10;;30472:4;;30478:7;;30487:5;;30421:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30421:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30417:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30667:13:0;;30663:341;;30710:60;;;;;8622:2:1;30710:60:0;;;8604:21:1;8661:2;8641:18;;;8634:30;8700:34;8680:18;;;8673:62;8771:20;8751:18;;;8744:48;8809:19;;30710:60:0;8594:240:1;30663:341:0;30954:6;30948:13;30939:6;30935:2;30931:15;30924:38;30417:602;30544:55;;30554:45;30544:55;;-1:-1:-1;30537:62:0;;30381:693;-1:-1:-1;31058:4:0;30238:843;;;;;;:::o;27529:382::-;27609:16;;;27601:61;;;;;;;13642:2:1;27601:61:0;;;13624:21:1;;;13661:18;;;13654:30;13720:34;13700:18;;;13693:62;13772:18;;27601:61:0;13614:182:1;27601:61:0;25687:4;25711:16;;;:7;:16;;;;;;:30;:16;:30;27673:58;;;;;;;9448:2:1;27673:58:0;;;9430:21:1;9487:2;9467:18;;;9460:30;9526;9506:18;;;9499:58;9574:18;;27673:58:0;9420:178:1;27673:58:0;27744:45;27773:1;27777:2;27781:7;27744:20;:45::i;:::-;27802:13;;;;;;;:9;:13;;;;;:18;;27819:1;;27802:13;:18;;27819:1;;27802:18;:::i;:::-;;;;-1:-1:-1;;27831:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;27870:33;;27831:16;;;27870:33;;27831:16;;27870:33;27529:382;;:::o;37304:988::-;37570:22;37620:1;37595:22;37612:4;37595:16;:22::i;:::-;:26;;;;:::i;:::-;37632:18;37653:26;;;:17;:26;;;;;;37570:51;;-1:-1:-1;37786:28:0;;;37782:328;;37853:18;;;37831:19;37853:18;;;:12;:18;;;;;;;;:34;;;;;;;;;37904:30;;;;;;:44;;;38021:30;;:17;:30;;;;;:43;;;37782:328;-1:-1:-1;38206:26:0;;;;:17;:26;;;;;;;;38199:33;;;38250:18;;;;;;:12;:18;;;;;:34;;;;;;;38243:41;37304:988::o;38587:1079::-;38865:10;:17;38840:22;;38865:21;;38885:1;;38865:21;:::i;:::-;38897:18;38918:24;;;:15;:24;;;;;;39291:10;:26;;38840:46;;-1:-1:-1;38918:24:0;;38840:46;;39291:26;;;;;;:::i;:::-;;;;;;;;;39269:48;;39355:11;39330:10;39341;39330:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;39435:28;;;:15;:28;;;;;;;:41;;;39607:24;;;;;39600:31;39642:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;38658:1008;;;38587:1079;:::o;36091:221::-;36176:14;36193:20;36210:2;36193:16;:20::i;:::-;36224:16;;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;36269:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;36091:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:196:1;82:20;;142:42;131:54;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:160::-;280:20;;336:13;;329:21;319:32;;309:2;;365:1;362;355:12;380:186;439:6;492:2;480:9;471:7;467:23;463:32;460:2;;;508:1;505;498:12;460:2;531:29;550:9;531:29;:::i;571:260::-;639:6;647;700:2;688:9;679:7;675:23;671:32;668:2;;;716:1;713;706:12;668:2;739:29;758:9;739:29;:::i;:::-;729:39;;787:38;821:2;810:9;806:18;787:38;:::i;:::-;777:48;;658:173;;;;;:::o;836:328::-;913:6;921;929;982:2;970:9;961:7;957:23;953:32;950:2;;;998:1;995;988:12;950:2;1021:29;1040:9;1021:29;:::i;:::-;1011:39;;1069:38;1103:2;1092:9;1088:18;1069:38;:::i;:::-;1059:48;;1154:2;1143:9;1139:18;1126:32;1116:42;;940:224;;;;;:::o;1169:1197::-;1264:6;1272;1280;1288;1341:3;1329:9;1320:7;1316:23;1312:33;1309:2;;;1358:1;1355;1348:12;1309:2;1381:29;1400:9;1381:29;:::i;:::-;1371:39;;1429:38;1463:2;1452:9;1448:18;1429:38;:::i;:::-;1419:48;;1514:2;1503:9;1499:18;1486:32;1476:42;;1569:2;1558:9;1554:18;1541:32;1592:18;1633:2;1625:6;1622:14;1619:2;;;1649:1;1646;1639:12;1619:2;1687:6;1676:9;1672:22;1662:32;;1732:7;1725:4;1721:2;1717:13;1713:27;1703:2;;1754:1;1751;1744:12;1703:2;1790;1777:16;1812:2;1808;1805:10;1802:2;;;1818:18;;:::i;:::-;1952:2;1946:9;2014:4;2006:13;;1857:66;2002:22;;;2026:2;1998:31;1994:40;1982:53;;;2050:18;;;2070:22;;;2047:46;2044:2;;;2096:18;;:::i;:::-;2136:10;2132:2;2125:22;2171:2;2163:6;2156:18;2211:7;2206:2;2201;2197;2193:11;2189:20;2186:33;2183:2;;;2232:1;2229;2222:12;2183:2;2288;2283;2279;2275:11;2270:2;2262:6;2258:15;2245:46;2333:1;2328:2;2323;2315:6;2311:15;2307:24;2300:35;2354:6;2344:16;;;;;;;1299:1067;;;;;;;:::o;2371:254::-;2436:6;2444;2497:2;2485:9;2476:7;2472:23;2468:32;2465:2;;;2513:1;2510;2503:12;2465:2;2536:29;2555:9;2536:29;:::i;:::-;2526:39;;2584:35;2615:2;2604:9;2600:18;2584:35;:::i;2630:254::-;2698:6;2706;2759:2;2747:9;2738:7;2734:23;2730:32;2727:2;;;2775:1;2772;2765:12;2727:2;2798:29;2817:9;2798:29;:::i;:::-;2788:39;2874:2;2859:18;;;;2846:32;;-1:-1:-1;;;2717:167:1:o;2889:615::-;2975:6;2983;3036:2;3024:9;3015:7;3011:23;3007:32;3004:2;;;3052:1;3049;3042:12;3004:2;3092:9;3079:23;3121:18;3162:2;3154:6;3151:14;3148:2;;;3178:1;3175;3168:12;3148:2;3216:6;3205:9;3201:22;3191:32;;3261:7;3254:4;3250:2;3246:13;3242:27;3232:2;;3283:1;3280;3273:12;3232:2;3323;3310:16;3349:2;3341:6;3338:14;3335:2;;;3365:1;3362;3355:12;3335:2;3418:7;3413:2;3403:6;3400:1;3396:14;3392:2;3388:23;3384:32;3381:45;3378:2;;;3439:1;3436;3429:12;3378:2;3470;3462:11;;;;;3492:6;;-1:-1:-1;2994:510:1;;-1:-1:-1;;;;2994:510:1:o;3509:180::-;3565:6;3618:2;3606:9;3597:7;3593:23;3589:32;3586:2;;;3634:1;3631;3624:12;3586:2;3657:26;3673:9;3657:26;:::i;3694:245::-;3752:6;3805:2;3793:9;3784:7;3780:23;3776:32;3773:2;;;3821:1;3818;3811:12;3773:2;3860:9;3847:23;3879:30;3903:5;3879:30;:::i;3944:249::-;4013:6;4066:2;4054:9;4045:7;4041:23;4037:32;4034:2;;;4082:1;4079;4072:12;4034:2;4114:9;4108:16;4133:30;4157:5;4133:30;:::i;4198:592::-;4269:6;4277;4330:2;4318:9;4309:7;4305:23;4301:32;4298:2;;;4346:1;4343;4336:12;4298:2;4386:9;4373:23;4415:18;4456:2;4448:6;4445:14;4442:2;;;4472:1;4469;4462:12;4442:2;4510:6;4499:9;4495:22;4485:32;;4555:7;4548:4;4544:2;4540:13;4536:27;4526:2;;4577:1;4574;4567:12;4526:2;4617;4604:16;4643:2;4635:6;4632:14;4629:2;;;4659:1;4656;4649:12;4629:2;4704:7;4699:2;4690:6;4686:2;4682:15;4678:24;4675:37;4672:2;;;4725:1;4722;4715:12;4795:180;4854:6;4907:2;4895:9;4886:7;4882:23;4878:32;4875:2;;;4923:1;4920;4913:12;4875:2;-1:-1:-1;4946:23:1;;4865:110;-1:-1:-1;4865:110:1:o;4980:316::-;5021:3;5059:5;5053:12;5086:6;5081:3;5074:19;5102:63;5158:6;5151:4;5146:3;5142:14;5135:4;5128:5;5124:16;5102:63;:::i;:::-;5210:2;5198:15;5215:66;5194:88;5185:98;;;;5285:4;5181:109;;5029:267;-1:-1:-1;;5029:267:1:o;5301:470::-;5480:3;5518:6;5512:13;5534:53;5580:6;5575:3;5568:4;5560:6;5556:17;5534:53;:::i;:::-;5650:13;;5609:16;;;;5672:57;5650:13;5609:16;5706:4;5694:17;;5672:57;:::i;:::-;5745:20;;5488:283;-1:-1:-1;;;;5488:283:1:o;6007:511::-;6201:4;6230:42;6311:2;6303:6;6299:15;6288:9;6281:34;6363:2;6355:6;6351:15;6346:2;6335:9;6331:18;6324:43;;6403:6;6398:2;6387:9;6383:18;6376:34;6446:3;6441:2;6430:9;6426:18;6419:31;6467:45;6507:3;6496:9;6492:19;6484:6;6467:45;:::i;:::-;6459:53;6210:308;-1:-1:-1;;;;;;6210:308:1:o;6715:219::-;6864:2;6853:9;6846:21;6827:4;6884:44;6924:2;6913:9;6909:18;6901:6;6884:44;:::i;19258:128::-;19298:3;19329:1;19325:6;19322:1;19319:13;19316:2;;;19335:18;;:::i;:::-;-1:-1:-1;19371:9:1;;19306:80::o;19391:120::-;19431:1;19457;19447:2;;19462:18;;:::i;:::-;-1:-1:-1;19496:9:1;;19437:74::o;19516:228::-;19556:7;19682:1;19614:66;19610:74;19607:1;19604:81;19599:1;19592:9;19585:17;19581:105;19578:2;;;19689:18;;:::i;:::-;-1:-1:-1;19729:9:1;;19568:176::o;19749:125::-;19789:4;19817:1;19814;19811:8;19808:2;;;19822:18;;:::i;:::-;-1:-1:-1;19859:9:1;;19798:76::o;19879:258::-;19951:1;19961:113;19975:6;19972:1;19969:13;19961:113;;;20051:11;;;20045:18;20032:11;;;20025:39;19997:2;19990:10;19961:113;;;20092:6;20089:1;20086:13;20083:2;;;-1:-1:-1;;20127:1:1;20109:16;;20102:27;19932:205::o;20142:437::-;20221:1;20217:12;;;;20264;;;20285:2;;20339:4;20331:6;20327:17;20317:27;;20285:2;20392;20384:6;20381:14;20361:18;20358:38;20355:2;;;20429:77;20426:1;20419:88;20530:4;20527:1;20520:15;20558:4;20555:1;20548:15;20355:2;;20197:382;;;:::o;20584:195::-;20623:3;20654:66;20647:5;20644:77;20641:2;;;20724:18;;:::i;:::-;-1:-1:-1;20771:1:1;20760:13;;20631:148::o;20784:112::-;20816:1;20842;20832:2;;20847:18;;:::i;:::-;-1:-1:-1;20881:9:1;;20822:74::o;20901:184::-;20953:77;20950:1;20943:88;21050:4;21047:1;21040:15;21074:4;21071:1;21064:15;21090:184;21142:77;21139:1;21132:88;21239:4;21236:1;21229:15;21263:4;21260:1;21253:15;21279:184;21331:77;21328:1;21321:88;21428:4;21425:1;21418:15;21452:4;21449:1;21442:15;21468:184;21520:77;21517:1;21510:88;21617:4;21614:1;21607:15;21641:4;21638:1;21631:15;21657:184;21709:77;21706:1;21699:88;21806:4;21803:1;21796:15;21830:4;21827:1;21820:15;21846:177;21931:66;21924:5;21920:78;21913:5;21910:89;21900:2;;22013:1;22010;22003:12;21900:2;21890:133;:::o
Swarm Source
ipfs://c5b8e501fb525c621a2696b5272bcc006635f26dcf4e110170860fa4e7d1b90e
Loading...
Loading
Loading...
Loading
[ 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.