Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
453 GEN
Holders
187
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 GENLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
geneverse
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-28 */ // SPDX-License-Identifier: GPL-3.0 // Thanks to Hashlips! // Modified by astra // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol 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; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol 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); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol 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; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol 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); } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol 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}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol 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(); } } // File: @openzeppelin/contracts/access/Ownable.sol 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity >=0.7.0 <0.9.0; contract geneverse is ERC721Enumerable, Ownable { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; string public notRevealedUri; uint256 public cost = 0.2 ether; uint256 public maxSupply = 888; uint256 public maxMintAmount = 25; uint256 public nftPerAddressLimit = 25; bool public paused = false; bool public revealed = false; bool public onlyWhitelisted = true; address[] public whitelistedAddresses; mapping(address => uint256) public addressMintedBalance; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); mint(25); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(uint256 _mintAmount) public payable { require(!paused, "the contract is paused"); uint256 supply = totalSupply(); require(_mintAmount > 0, "need to mint at least 1 NFT"); require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded"); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); if (msg.sender != owner()) { if(onlyWhitelisted == true) { require(isWhitelisted(msg.sender), "user is not whitelisted"); uint256 ownerMintedCount = addressMintedBalance[msg.sender]; require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded"); } require(msg.value >= cost * _mintAmount, "insufficient funds"); } for (uint256 i = 1; i <= _mintAmount; i++) { addressMintedBalance[msg.sender]++; _safeMint(msg.sender, supply + i); } } function isWhitelisted(address _user) public view returns (bool) { for (uint i = 0; i < whitelistedAddresses.length; i++) { if (whitelistedAddresses[i] == _user) { return true; } } return false; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //only owner function reveal() public onlyOwner() { revealed = true; } function setNftPerAddressLimit(uint256 _limit) public onlyOwner() { nftPerAddressLimit = _limit; } function setCost(uint256 _newCost) public onlyOwner() { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() { maxMintAmount = _newmaxMintAmount; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function pause(bool _state) public onlyOwner { paused = _state; } function setOnlyWhitelisted(bool _state) public onlyOwner { onlyWhitelisted = _state; } function whitelistUsers(address[] calldata _users) public onlyOwner { delete whitelistedAddresses; whitelistedAddresses = _users; } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } }
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":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","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":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000c52565b506702c68af0bb140000600e55610378600f55601960108190556011556012805462ffffff1916620100001790553480156200006357600080fd5b5060405162003a4938038062003a49833981016040819052620000869162000db8565b8351849084906200009f90600090602085019062000c52565b508051620000b590600190602084019062000c52565b505050620000d2620000cc620000fe60201b60201c565b62000102565b620000dd8262000154565b620000e881620001bc565b620000f460196200021c565b5050505062000fd3565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001a35760405162461bcd60e51b8152602060048201819052602482015260008051602062003a2983398151915260448201526064015b60405180910390fd5b8051620001b890600b90602084019062000c52565b5050565b600a546001600160a01b03163314620002075760405162461bcd60e51b8152602060048201819052602482015260008051602062003a2983398151915260448201526064016200019a565b8051620001b890600d90602084019062000c52565b60125460ff1615620002715760405162461bcd60e51b815260206004820152601660248201527f74686520636f6e7472616374206973207061757365640000000000000000000060448201526064016200019a565b60006200027d60085490565b905060008211620002d15760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016200019a565b601054821115620003315760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b60648201526084016200019a565b600f5462000340838362000ec2565b1115620003905760405162461bcd60e51b815260206004820152601660248201527f6d6178204e4654206c696d69742065786365656465640000000000000000000060448201526064016200019a565b600a546001600160a01b03163314620004da5760125462010000900460ff161515600114156200048457620003c53362000539565b620004135760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c697374656400000000000000000060448201526064016200019a565b3360009081526014602052604090205460115462000432848362000ec2565b1115620004825760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016200019a565b505b81600e5462000494919062000edd565b341015620004da5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016200019a565b60015b8281116200053457336000908152601460205260408120805491620005028362000f89565b909155506200051f90503362000519838562000ec2565b620005b7565b806200052b8162000f89565b915050620004dd565b505050565b6000805b601354811015620005ae57826001600160a01b0316601382815481106200057457634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415620005995750600192915050565b80620005a58162000f89565b9150506200053d565b50600092915050565b620001b8828260405180602001604052806000815250620005d960201b60201c565b620005e583836200064c565b620005f46000848484620007a2565b620005345760405162461bcd60e51b8152602060048201526032602482015260008051602062003a0983398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016200019a565b6001600160a01b038216620006a45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016200019a565b6000818152600260205260409020546001600160a01b0316156200070b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016200019a565b62000719600083836200090b565b6001600160a01b03821660009081526003602052604081208054600192906200074490849062000ec2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620007c3846001600160a01b0316620009e760201b620017fa1760201c565b15620008ff57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620007fd90339089908890889060040162000e6c565b602060405180830381600087803b1580156200081857600080fd5b505af19250505080156200084b575060408051601f3d908101601f19168201909252620008489181019062000d87565b60015b620008e4573d8080156200087c576040519150601f19603f3d011682016040523d82523d6000602084013e62000881565b606091505b508051620008dc5760405162461bcd60e51b8152602060048201526032602482015260008051602062003a0983398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016200019a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000903565b5060015b949350505050565b620009238383836200053460201b62000b2d1760201c565b6001600160a01b03831662000981576200097b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b620009a7565b816001600160a01b0316836001600160a01b031614620009a757620009a78382620009ed565b6001600160a01b038216620009c157620005348162000a9a565b826001600160a01b0316826001600160a01b031614620005345762000534828262000b78565b3b151590565b6000600162000a078462000bc960201b62000fa71760201c565b62000a13919062000eff565b60008381526007602052604090205490915080821462000a67576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009062000aae9060019062000eff565b6000838152600960205260408120546008805493945090928490811062000ae557634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811062000b1557634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548062000b5c57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600062000b908362000bc960201b62000fa71760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b03821662000c365760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016200019a565b506001600160a01b031660009081526003602052604090205490565b82805462000c609062000f4c565b90600052602060002090601f01602090048101928262000c84576000855562000ccf565b82601f1062000c9f57805160ff191683800117855562000ccf565b8280016001018555821562000ccf579182015b8281111562000ccf57825182559160200191906001019062000cb2565b5062000cdd92915062000ce1565b5090565b5b8082111562000cdd576000815560010162000ce2565b600082601f83011262000d09578081fd5b81516001600160401b038082111562000d265762000d2662000fbd565b604051601f8301601f19908116603f0116810190828211818310171562000d515762000d5162000fbd565b8160405283815286602085880101111562000d6a578485fd5b62000d7d84602083016020890162000f19565b9695505050505050565b60006020828403121562000d99578081fd5b81516001600160e01b03198116811462000db1578182fd5b9392505050565b6000806000806080858703121562000dce578283fd5b84516001600160401b038082111562000de5578485fd5b62000df38883890162000cf8565b9550602087015191508082111562000e09578485fd5b62000e178883890162000cf8565b9450604087015191508082111562000e2d578384fd5b62000e3b8883890162000cf8565b9350606087015191508082111562000e51578283fd5b5062000e608782880162000cf8565b91505092959194509250565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000eab8160a085016020870162000f19565b601f01601f19169190910160a00195945050505050565b6000821982111562000ed85762000ed862000fa7565b500190565b600081600019048311821515161562000efa5762000efa62000fa7565b500290565b60008282101562000f145762000f1462000fa7565b500390565b60005b8381101562000f3657818101518382015260200162000f1c565b8381111562000f46576000848401525b50505050565b600181811c9082168062000f6157607f821691505b6020821081141562000f8357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000fa05762000fa062000fa7565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b612a268062000fe36000396000f3fe6080604052600436106102725760003560e01c80636352211e1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610717578063da3ef23f1461072d578063e985e9c51461074d578063edec5f2714610796578063f2c4ce1e146107b6578063f2fde38b146107d657600080fd5b8063b88d4fde1461066c578063ba4e5c491461068c578063ba7d2c76146106ac578063c6682862146106c2578063c87b56dd146106d7578063d0eb26b0146106f757600080fd5b80638da5cb5b116101135780638da5cb5b146105d157806395d89b41146105ef5780639c70b51214610604578063a0712d6814610624578063a22cb46514610637578063a475b5dd1461065757600080fd5b80636352211e146105475780636c0360eb1461056757806370a082311461057c578063715018a61461059c5780637f00c7a6146105b157600080fd5b80632f745c59116101e8578063438b6300116101ac578063438b63001461048157806344a0d68a146104ae5780634f6ccce7146104ce57806351830227146104ee57806355f804b31461050d5780635c975abb1461052d57600080fd5b80632f745c59146103f95780633af32abf146104195780633c952764146104395780633ccfd60b1461045957806342842e0e1461046157600080fd5b8063095ea7b31161023a578063095ea7b31461033d57806313faede61461035d57806318160ddd1461038157806318cae26914610396578063239c70ae146103c357806323b872dd146103d957600080fd5b806301ffc9a71461027757806302329a29146102ac57806306fdde03146102ce578063081812fc146102f0578063081c8c4414610328575b600080fd5b34801561028357600080fd5b506102976102923660046125b0565b6107f6565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c7366004612596565b610821565b005b3480156102da57600080fd5b506102e3610867565b6040516102a391906127b5565b3480156102fc57600080fd5b5061031061030b36600461262e565b6108f9565b6040516001600160a01b0390911681526020016102a3565b34801561033457600080fd5b506102e361098e565b34801561034957600080fd5b506102cc6103583660046124fd565b610a1c565b34801561036957600080fd5b50610373600e5481565b6040519081526020016102a3565b34801561038d57600080fd5b50600854610373565b3480156103a257600080fd5b506103736103b13660046123d4565b60146020526000908152604090205481565b3480156103cf57600080fd5b5061037360105481565b3480156103e557600080fd5b506102cc6103f4366004612420565b610b32565b34801561040557600080fd5b506103736104143660046124fd565b610b63565b34801561042557600080fd5b506102976104343660046123d4565b610bf9565b34801561044557600080fd5b506102cc610454366004612596565b610c71565b6102cc610cb7565b34801561046d57600080fd5b506102cc61047c366004612420565b610d39565b34801561048d57600080fd5b506104a161049c3660046123d4565b610d54565b6040516102a39190612771565b3480156104ba57600080fd5b506102cc6104c936600461262e565b610e12565b3480156104da57600080fd5b506103736104e936600461262e565b610e41565b3480156104fa57600080fd5b5060125461029790610100900460ff1681565b34801561051957600080fd5b506102cc6105283660046125e8565b610ee2565b34801561053957600080fd5b506012546102979060ff1681565b34801561055357600080fd5b5061031061056236600461262e565b610f23565b34801561057357600080fd5b506102e3610f9a565b34801561058857600080fd5b506103736105973660046123d4565b610fa7565b3480156105a857600080fd5b506102cc61102e565b3480156105bd57600080fd5b506102cc6105cc36600461262e565b611064565b3480156105dd57600080fd5b50600a546001600160a01b0316610310565b3480156105fb57600080fd5b506102e3611093565b34801561061057600080fd5b506012546102979062010000900460ff1681565b6102cc61063236600461262e565b6110a2565b34801561064357600080fd5b506102cc6106523660046124d4565b611389565b34801561066357600080fd5b506102cc61144e565b34801561067857600080fd5b506102cc61068736600461245b565b611489565b34801561069857600080fd5b506103106106a736600461262e565b6114c1565b3480156106b857600080fd5b5061037360115481565b3480156106ce57600080fd5b506102e36114eb565b3480156106e357600080fd5b506102e36106f236600461262e565b6114f8565b34801561070357600080fd5b506102cc61071236600461262e565b611677565b34801561072357600080fd5b50610373600f5481565b34801561073957600080fd5b506102cc6107483660046125e8565b6116a6565b34801561075957600080fd5b506102976107683660046123ee565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a257600080fd5b506102cc6107b1366004612526565b6116e3565b3480156107c257600080fd5b506102cc6107d13660046125e8565b611725565b3480156107e257600080fd5b506102cc6107f13660046123d4565b611762565b60006001600160e01b0319821663780e9d6360e01b148061081b575061081b82611800565b92915050565b600a546001600160a01b031633146108545760405162461bcd60e51b815260040161084b9061281a565b60405180910390fd5b6012805460ff1916911515919091179055565b6060600080546108769061292e565b80601f01602080910402602001604051908101604052809291908181526020018280546108a29061292e565b80156108ef5780601f106108c4576101008083540402835291602001916108ef565b820191906000526020600020905b8154815290600101906020018083116108d257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084b565b506000908152600460205260409020546001600160a01b031690565b600d805461099b9061292e565b80601f01602080910402602001604051908101604052809291908181526020018280546109c79061292e565b8015610a145780601f106109e957610100808354040283529160200191610a14565b820191906000526020600020905b8154815290600101906020018083116109f757829003601f168201915b505050505081565b6000610a2782610f23565b9050806001600160a01b0316836001600160a01b03161415610a955760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161084b565b336001600160a01b0382161480610ab15750610ab18133610768565b610b235760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161084b565b610b2d8383611850565b505050565b610b3c33826118be565b610b585760405162461bcd60e51b815260040161084b9061284f565b610b2d8383836119b5565b6000610b6e83610fa7565b8210610bd05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161084b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601354811015610c6857826001600160a01b031660138281548110610c3257634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610c565750600192915050565b80610c6081612969565b915050610bfd565b50600092915050565b600a546001600160a01b03163314610c9b5760405162461bcd60e51b815260040161084b9061281a565b60128054911515620100000262ff000019909216919091179055565b600a546001600160a01b03163314610ce15760405162461bcd60e51b815260040161084b9061281a565b604051600090339047908381818185875af1925050503d8060008114610d23576040519150601f19603f3d011682016040523d82523d6000602084013e610d28565b606091505b5050905080610d3657600080fd5b50565b610b2d83838360405180602001604052806000815250611489565b60606000610d6183610fa7565b905060008167ffffffffffffffff811115610d8c57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610db5578160200160208202803683370190505b50905060005b82811015610e0a57610dcd8582610b63565b828281518110610ded57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610e0281612969565b915050610dbb565b509392505050565b600a546001600160a01b03163314610e3c5760405162461bcd60e51b815260040161084b9061281a565b600e55565b6000610e4c60085490565b8210610eaf5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161084b565b60088281548110610ed057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610f0c5760405162461bcd60e51b815260040161084b9061281a565b8051610f1f90600b906020840190612228565b5050565b6000818152600260205260408120546001600160a01b03168061081b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161084b565b600b805461099b9061292e565b60006001600160a01b0382166110125760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161084b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110585760405162461bcd60e51b815260040161084b9061281a565b6110626000611b60565b565b600a546001600160a01b0316331461108e5760405162461bcd60e51b815260040161084b9061281a565b601055565b6060600180546108769061292e565b60125460ff16156110ee5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604482015260640161084b565b60006110f960085490565b90506000821161114b5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640161084b565b6010548211156111a95760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b606482015260840161084b565b600f546111b683836128a0565b11156111fd5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604482015260640161084b565b600a546001600160a01b031633146113395760125462010000900460ff161515600114156112e75761122e33610bf9565b61127a5760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161084b565b3360009081526014602052604090205460115461129784836128a0565b11156112e55760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161084b565b505b81600e546112f591906128cc565b3410156113395760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b604482015260640161084b565b60015b828111610b2d5733600090815260146020526040812080549161135e83612969565b9091555061137790503361137283856128a0565b611bb2565b8061138181612969565b91505061133c565b6001600160a01b0382163314156113e25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161084b565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146114785760405162461bcd60e51b815260040161084b9061281a565b6012805461ff001916610100179055565b61149333836118be565b6114af5760405162461bcd60e51b815260040161084b9061284f565b6114bb84848484611bcc565b50505050565b601381815481106114d157600080fd5b6000918252602090912001546001600160a01b0316905081565b600c805461099b9061292e565b6000818152600260205260409020546060906001600160a01b03166115775760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161084b565b601254610100900460ff1661161857600d80546115939061292e565b80601f01602080910402602001604051908101604052809291908181526020018280546115bf9061292e565b801561160c5780601f106115e15761010080835404028352916020019161160c565b820191906000526020600020905b8154815290600101906020018083116115ef57829003601f168201915b50505050509050919050565b6000611622611bff565b905060008151116116425760405180602001604052806000815250611670565b8061164c84611c0e565b600c60405160200161166093929190612672565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116a15760405162461bcd60e51b815260040161084b9061281a565b601155565b600a546001600160a01b031633146116d05760405162461bcd60e51b815260040161084b9061281a565b8051610f1f90600c906020840190612228565b600a546001600160a01b0316331461170d5760405162461bcd60e51b815260040161084b9061281a565b611719601360006122ac565b610b2d601383836122ca565b600a546001600160a01b0316331461174f5760405162461bcd60e51b815260040161084b9061281a565b8051610f1f90600d906020840190612228565b600a546001600160a01b0316331461178c5760405162461bcd60e51b815260040161084b9061281a565b6001600160a01b0381166117f15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084b565b610d3681611b60565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061183157506001600160e01b03198216635b5e139f60e01b145b8061081b57506301ffc9a760e01b6001600160e01b031983161461081b565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061188582610f23565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119375760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084b565b600061194283610f23565b9050806001600160a01b0316846001600160a01b0316148061197d5750836001600160a01b0316611972846108f9565b6001600160a01b0316145b806119ad57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119c882610f23565b6001600160a01b031614611a305760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161084b565b6001600160a01b038216611a925760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161084b565b611a9d838383611d28565b611aa8600082611850565b6001600160a01b0383166000908152600360205260408120805460019290611ad19084906128eb565b90915550506001600160a01b0382166000908152600360205260408120805460019290611aff9084906128a0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f1f828260405180602001604052806000815250611de0565b611bd78484846119b5565b611be384848484611e13565b6114bb5760405162461bcd60e51b815260040161084b906127c8565b6060600b80546108769061292e565b606081611c325750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c5c5780611c4681612969565b9150611c559050600a836128b8565b9150611c36565b60008167ffffffffffffffff811115611c8557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611caf576020820181803683370190505b5090505b84156119ad57611cc46001836128eb565b9150611cd1600a86612984565b611cdc9060306128a0565b60f81b818381518110611cff57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611d21600a866128b8565b9450611cb3565b6001600160a01b038316611d8357611d7e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611da6565b816001600160a01b0316836001600160a01b031614611da657611da68382611f20565b6001600160a01b038216611dbd57610b2d81611fbd565b826001600160a01b0316826001600160a01b031614610b2d57610b2d8282612096565b611dea83836120da565b611df76000848484611e13565b610b2d5760405162461bcd60e51b815260040161084b906127c8565b60006001600160a01b0384163b15611f1557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e57903390899088908890600401612734565b602060405180830381600087803b158015611e7157600080fd5b505af1925050508015611ea1575060408051601f3d908101601f19168201909252611e9e918101906125cc565b60015b611efb573d808015611ecf576040519150601f19603f3d011682016040523d82523d6000602084013e611ed4565b606091505b508051611ef35760405162461bcd60e51b815260040161084b906127c8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119ad565b506001949350505050565b60006001611f2d84610fa7565b611f3791906128eb565b600083815260076020526040902054909150808214611f8a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611fcf906001906128eb565b6000838152600960205260408120546008805493945090928490811061200557634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061203457634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061207a57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006120a183610fa7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121305760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161084b565b6000818152600260205260409020546001600160a01b0316156121955760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161084b565b6121a160008383611d28565b6001600160a01b03821660009081526003602052604081208054600192906121ca9084906128a0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546122349061292e565b90600052602060002090601f016020900481019282612256576000855561229c565b82601f1061226f57805160ff191683800117855561229c565b8280016001018555821561229c579182015b8281111561229c578251825591602001919060010190612281565b506122a892915061231d565b5090565b5080546000825590600052602060002090810190610d36919061231d565b82805482825590600052602060002090810192821561229c579160200282015b8281111561229c5781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906122ea565b5b808211156122a8576000815560010161231e565b600067ffffffffffffffff8084111561234d5761234d6129c4565b604051601f8501601f19908116603f01168101908282118183101715612375576123756129c4565b8160405280935085815286868601111561238e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123bf57600080fd5b919050565b803580151581146123bf57600080fd5b6000602082840312156123e5578081fd5b611670826123a8565b60008060408385031215612400578081fd5b612409836123a8565b9150612417602084016123a8565b90509250929050565b600080600060608486031215612434578081fd5b61243d846123a8565b925061244b602085016123a8565b9150604084013590509250925092565b60008060008060808587031215612470578081fd5b612479856123a8565b9350612487602086016123a8565b925060408501359150606085013567ffffffffffffffff8111156124a9578182fd5b8501601f810187136124b9578182fd5b6124c887823560208401612332565b91505092959194509250565b600080604083850312156124e6578182fd5b6124ef836123a8565b9150612417602084016123c4565b6000806040838503121561250f578182fd5b612518836123a8565b946020939093013593505050565b60008060208385031215612538578182fd5b823567ffffffffffffffff8082111561254f578384fd5b818501915085601f830112612562578384fd5b813581811115612570578485fd5b8660208260051b8501011115612584578485fd5b60209290920196919550909350505050565b6000602082840312156125a7578081fd5b611670826123c4565b6000602082840312156125c1578081fd5b8135611670816129da565b6000602082840312156125dd578081fd5b8151611670816129da565b6000602082840312156125f9578081fd5b813567ffffffffffffffff81111561260f578182fd5b8201601f8101841361261f578182fd5b6119ad84823560208401612332565b60006020828403121561263f578081fd5b5035919050565b6000815180845261265e816020860160208601612902565b601f01601f19169290920160200192915050565b6000845160206126858285838a01612902565b8551918401916126988184848a01612902565b85549201918390600181811c90808316806126b457607f831692505b8583108114156126d257634e487b7160e01b88526022600452602488fd5b8080156126e657600181146126f757612723565b60ff19851688528388019550612723565b60008b815260209020895b8581101561271b5781548a820152908401908801612702565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061276790830184612646565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127a95783518352928401929184019160010161278d565b50909695505050505050565b6020815260006116706020830184612646565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156128b3576128b3612998565b500190565b6000826128c7576128c76129ae565b500490565b60008160001904831182151516156128e6576128e6612998565b500290565b6000828210156128fd576128fd612998565b500390565b60005b8381101561291d578181015183820152602001612905565b838111156114bb5750506000910152565b600181811c9082168061294257607f821691505b6020821081141561296357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561297d5761297d612998565b5060010190565b600082612993576129936129ae565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d3657600080fdfea2646970667358221220606a12f9f5bfa4ceb2aa0b981d866bae754329431183d9340b5e752cf9b63d7664736f6c634300080400334552433732313a207472616e7366657220746f206e6f6e2045524337323152654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000967656e6576657273650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000347454e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003068747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f67656e6576657273652f696d616765732f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003668747470733a2f2f7777772e67656e6576657273652e6e65742f72657665616c2f67656e6576657273655f72657665616c2e6a736f6e00000000000000000000
Deployed Bytecode
0x6080604052600436106102725760003560e01c80636352211e1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610717578063da3ef23f1461072d578063e985e9c51461074d578063edec5f2714610796578063f2c4ce1e146107b6578063f2fde38b146107d657600080fd5b8063b88d4fde1461066c578063ba4e5c491461068c578063ba7d2c76146106ac578063c6682862146106c2578063c87b56dd146106d7578063d0eb26b0146106f757600080fd5b80638da5cb5b116101135780638da5cb5b146105d157806395d89b41146105ef5780639c70b51214610604578063a0712d6814610624578063a22cb46514610637578063a475b5dd1461065757600080fd5b80636352211e146105475780636c0360eb1461056757806370a082311461057c578063715018a61461059c5780637f00c7a6146105b157600080fd5b80632f745c59116101e8578063438b6300116101ac578063438b63001461048157806344a0d68a146104ae5780634f6ccce7146104ce57806351830227146104ee57806355f804b31461050d5780635c975abb1461052d57600080fd5b80632f745c59146103f95780633af32abf146104195780633c952764146104395780633ccfd60b1461045957806342842e0e1461046157600080fd5b8063095ea7b31161023a578063095ea7b31461033d57806313faede61461035d57806318160ddd1461038157806318cae26914610396578063239c70ae146103c357806323b872dd146103d957600080fd5b806301ffc9a71461027757806302329a29146102ac57806306fdde03146102ce578063081812fc146102f0578063081c8c4414610328575b600080fd5b34801561028357600080fd5b506102976102923660046125b0565b6107f6565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c7366004612596565b610821565b005b3480156102da57600080fd5b506102e3610867565b6040516102a391906127b5565b3480156102fc57600080fd5b5061031061030b36600461262e565b6108f9565b6040516001600160a01b0390911681526020016102a3565b34801561033457600080fd5b506102e361098e565b34801561034957600080fd5b506102cc6103583660046124fd565b610a1c565b34801561036957600080fd5b50610373600e5481565b6040519081526020016102a3565b34801561038d57600080fd5b50600854610373565b3480156103a257600080fd5b506103736103b13660046123d4565b60146020526000908152604090205481565b3480156103cf57600080fd5b5061037360105481565b3480156103e557600080fd5b506102cc6103f4366004612420565b610b32565b34801561040557600080fd5b506103736104143660046124fd565b610b63565b34801561042557600080fd5b506102976104343660046123d4565b610bf9565b34801561044557600080fd5b506102cc610454366004612596565b610c71565b6102cc610cb7565b34801561046d57600080fd5b506102cc61047c366004612420565b610d39565b34801561048d57600080fd5b506104a161049c3660046123d4565b610d54565b6040516102a39190612771565b3480156104ba57600080fd5b506102cc6104c936600461262e565b610e12565b3480156104da57600080fd5b506103736104e936600461262e565b610e41565b3480156104fa57600080fd5b5060125461029790610100900460ff1681565b34801561051957600080fd5b506102cc6105283660046125e8565b610ee2565b34801561053957600080fd5b506012546102979060ff1681565b34801561055357600080fd5b5061031061056236600461262e565b610f23565b34801561057357600080fd5b506102e3610f9a565b34801561058857600080fd5b506103736105973660046123d4565b610fa7565b3480156105a857600080fd5b506102cc61102e565b3480156105bd57600080fd5b506102cc6105cc36600461262e565b611064565b3480156105dd57600080fd5b50600a546001600160a01b0316610310565b3480156105fb57600080fd5b506102e3611093565b34801561061057600080fd5b506012546102979062010000900460ff1681565b6102cc61063236600461262e565b6110a2565b34801561064357600080fd5b506102cc6106523660046124d4565b611389565b34801561066357600080fd5b506102cc61144e565b34801561067857600080fd5b506102cc61068736600461245b565b611489565b34801561069857600080fd5b506103106106a736600461262e565b6114c1565b3480156106b857600080fd5b5061037360115481565b3480156106ce57600080fd5b506102e36114eb565b3480156106e357600080fd5b506102e36106f236600461262e565b6114f8565b34801561070357600080fd5b506102cc61071236600461262e565b611677565b34801561072357600080fd5b50610373600f5481565b34801561073957600080fd5b506102cc6107483660046125e8565b6116a6565b34801561075957600080fd5b506102976107683660046123ee565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a257600080fd5b506102cc6107b1366004612526565b6116e3565b3480156107c257600080fd5b506102cc6107d13660046125e8565b611725565b3480156107e257600080fd5b506102cc6107f13660046123d4565b611762565b60006001600160e01b0319821663780e9d6360e01b148061081b575061081b82611800565b92915050565b600a546001600160a01b031633146108545760405162461bcd60e51b815260040161084b9061281a565b60405180910390fd5b6012805460ff1916911515919091179055565b6060600080546108769061292e565b80601f01602080910402602001604051908101604052809291908181526020018280546108a29061292e565b80156108ef5780601f106108c4576101008083540402835291602001916108ef565b820191906000526020600020905b8154815290600101906020018083116108d257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084b565b506000908152600460205260409020546001600160a01b031690565b600d805461099b9061292e565b80601f01602080910402602001604051908101604052809291908181526020018280546109c79061292e565b8015610a145780601f106109e957610100808354040283529160200191610a14565b820191906000526020600020905b8154815290600101906020018083116109f757829003601f168201915b505050505081565b6000610a2782610f23565b9050806001600160a01b0316836001600160a01b03161415610a955760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161084b565b336001600160a01b0382161480610ab15750610ab18133610768565b610b235760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161084b565b610b2d8383611850565b505050565b610b3c33826118be565b610b585760405162461bcd60e51b815260040161084b9061284f565b610b2d8383836119b5565b6000610b6e83610fa7565b8210610bd05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161084b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601354811015610c6857826001600160a01b031660138281548110610c3257634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610c565750600192915050565b80610c6081612969565b915050610bfd565b50600092915050565b600a546001600160a01b03163314610c9b5760405162461bcd60e51b815260040161084b9061281a565b60128054911515620100000262ff000019909216919091179055565b600a546001600160a01b03163314610ce15760405162461bcd60e51b815260040161084b9061281a565b604051600090339047908381818185875af1925050503d8060008114610d23576040519150601f19603f3d011682016040523d82523d6000602084013e610d28565b606091505b5050905080610d3657600080fd5b50565b610b2d83838360405180602001604052806000815250611489565b60606000610d6183610fa7565b905060008167ffffffffffffffff811115610d8c57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610db5578160200160208202803683370190505b50905060005b82811015610e0a57610dcd8582610b63565b828281518110610ded57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610e0281612969565b915050610dbb565b509392505050565b600a546001600160a01b03163314610e3c5760405162461bcd60e51b815260040161084b9061281a565b600e55565b6000610e4c60085490565b8210610eaf5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161084b565b60088281548110610ed057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610f0c5760405162461bcd60e51b815260040161084b9061281a565b8051610f1f90600b906020840190612228565b5050565b6000818152600260205260408120546001600160a01b03168061081b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161084b565b600b805461099b9061292e565b60006001600160a01b0382166110125760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161084b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110585760405162461bcd60e51b815260040161084b9061281a565b6110626000611b60565b565b600a546001600160a01b0316331461108e5760405162461bcd60e51b815260040161084b9061281a565b601055565b6060600180546108769061292e565b60125460ff16156110ee5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604482015260640161084b565b60006110f960085490565b90506000821161114b5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640161084b565b6010548211156111a95760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b606482015260840161084b565b600f546111b683836128a0565b11156111fd5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604482015260640161084b565b600a546001600160a01b031633146113395760125462010000900460ff161515600114156112e75761122e33610bf9565b61127a5760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161084b565b3360009081526014602052604090205460115461129784836128a0565b11156112e55760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161084b565b505b81600e546112f591906128cc565b3410156113395760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b604482015260640161084b565b60015b828111610b2d5733600090815260146020526040812080549161135e83612969565b9091555061137790503361137283856128a0565b611bb2565b8061138181612969565b91505061133c565b6001600160a01b0382163314156113e25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161084b565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146114785760405162461bcd60e51b815260040161084b9061281a565b6012805461ff001916610100179055565b61149333836118be565b6114af5760405162461bcd60e51b815260040161084b9061284f565b6114bb84848484611bcc565b50505050565b601381815481106114d157600080fd5b6000918252602090912001546001600160a01b0316905081565b600c805461099b9061292e565b6000818152600260205260409020546060906001600160a01b03166115775760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161084b565b601254610100900460ff1661161857600d80546115939061292e565b80601f01602080910402602001604051908101604052809291908181526020018280546115bf9061292e565b801561160c5780601f106115e15761010080835404028352916020019161160c565b820191906000526020600020905b8154815290600101906020018083116115ef57829003601f168201915b50505050509050919050565b6000611622611bff565b905060008151116116425760405180602001604052806000815250611670565b8061164c84611c0e565b600c60405160200161166093929190612672565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116a15760405162461bcd60e51b815260040161084b9061281a565b601155565b600a546001600160a01b031633146116d05760405162461bcd60e51b815260040161084b9061281a565b8051610f1f90600c906020840190612228565b600a546001600160a01b0316331461170d5760405162461bcd60e51b815260040161084b9061281a565b611719601360006122ac565b610b2d601383836122ca565b600a546001600160a01b0316331461174f5760405162461bcd60e51b815260040161084b9061281a565b8051610f1f90600d906020840190612228565b600a546001600160a01b0316331461178c5760405162461bcd60e51b815260040161084b9061281a565b6001600160a01b0381166117f15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084b565b610d3681611b60565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061183157506001600160e01b03198216635b5e139f60e01b145b8061081b57506301ffc9a760e01b6001600160e01b031983161461081b565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061188582610f23565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119375760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084b565b600061194283610f23565b9050806001600160a01b0316846001600160a01b0316148061197d5750836001600160a01b0316611972846108f9565b6001600160a01b0316145b806119ad57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119c882610f23565b6001600160a01b031614611a305760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161084b565b6001600160a01b038216611a925760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161084b565b611a9d838383611d28565b611aa8600082611850565b6001600160a01b0383166000908152600360205260408120805460019290611ad19084906128eb565b90915550506001600160a01b0382166000908152600360205260408120805460019290611aff9084906128a0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f1f828260405180602001604052806000815250611de0565b611bd78484846119b5565b611be384848484611e13565b6114bb5760405162461bcd60e51b815260040161084b906127c8565b6060600b80546108769061292e565b606081611c325750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c5c5780611c4681612969565b9150611c559050600a836128b8565b9150611c36565b60008167ffffffffffffffff811115611c8557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611caf576020820181803683370190505b5090505b84156119ad57611cc46001836128eb565b9150611cd1600a86612984565b611cdc9060306128a0565b60f81b818381518110611cff57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611d21600a866128b8565b9450611cb3565b6001600160a01b038316611d8357611d7e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611da6565b816001600160a01b0316836001600160a01b031614611da657611da68382611f20565b6001600160a01b038216611dbd57610b2d81611fbd565b826001600160a01b0316826001600160a01b031614610b2d57610b2d8282612096565b611dea83836120da565b611df76000848484611e13565b610b2d5760405162461bcd60e51b815260040161084b906127c8565b60006001600160a01b0384163b15611f1557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e57903390899088908890600401612734565b602060405180830381600087803b158015611e7157600080fd5b505af1925050508015611ea1575060408051601f3d908101601f19168201909252611e9e918101906125cc565b60015b611efb573d808015611ecf576040519150601f19603f3d011682016040523d82523d6000602084013e611ed4565b606091505b508051611ef35760405162461bcd60e51b815260040161084b906127c8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119ad565b506001949350505050565b60006001611f2d84610fa7565b611f3791906128eb565b600083815260076020526040902054909150808214611f8a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611fcf906001906128eb565b6000838152600960205260408120546008805493945090928490811061200557634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061203457634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061207a57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006120a183610fa7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121305760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161084b565b6000818152600260205260409020546001600160a01b0316156121955760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161084b565b6121a160008383611d28565b6001600160a01b03821660009081526003602052604081208054600192906121ca9084906128a0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546122349061292e565b90600052602060002090601f016020900481019282612256576000855561229c565b82601f1061226f57805160ff191683800117855561229c565b8280016001018555821561229c579182015b8281111561229c578251825591602001919060010190612281565b506122a892915061231d565b5090565b5080546000825590600052602060002090810190610d36919061231d565b82805482825590600052602060002090810192821561229c579160200282015b8281111561229c5781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906122ea565b5b808211156122a8576000815560010161231e565b600067ffffffffffffffff8084111561234d5761234d6129c4565b604051601f8501601f19908116603f01168101908282118183101715612375576123756129c4565b8160405280935085815286868601111561238e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123bf57600080fd5b919050565b803580151581146123bf57600080fd5b6000602082840312156123e5578081fd5b611670826123a8565b60008060408385031215612400578081fd5b612409836123a8565b9150612417602084016123a8565b90509250929050565b600080600060608486031215612434578081fd5b61243d846123a8565b925061244b602085016123a8565b9150604084013590509250925092565b60008060008060808587031215612470578081fd5b612479856123a8565b9350612487602086016123a8565b925060408501359150606085013567ffffffffffffffff8111156124a9578182fd5b8501601f810187136124b9578182fd5b6124c887823560208401612332565b91505092959194509250565b600080604083850312156124e6578182fd5b6124ef836123a8565b9150612417602084016123c4565b6000806040838503121561250f578182fd5b612518836123a8565b946020939093013593505050565b60008060208385031215612538578182fd5b823567ffffffffffffffff8082111561254f578384fd5b818501915085601f830112612562578384fd5b813581811115612570578485fd5b8660208260051b8501011115612584578485fd5b60209290920196919550909350505050565b6000602082840312156125a7578081fd5b611670826123c4565b6000602082840312156125c1578081fd5b8135611670816129da565b6000602082840312156125dd578081fd5b8151611670816129da565b6000602082840312156125f9578081fd5b813567ffffffffffffffff81111561260f578182fd5b8201601f8101841361261f578182fd5b6119ad84823560208401612332565b60006020828403121561263f578081fd5b5035919050565b6000815180845261265e816020860160208601612902565b601f01601f19169290920160200192915050565b6000845160206126858285838a01612902565b8551918401916126988184848a01612902565b85549201918390600181811c90808316806126b457607f831692505b8583108114156126d257634e487b7160e01b88526022600452602488fd5b8080156126e657600181146126f757612723565b60ff19851688528388019550612723565b60008b815260209020895b8581101561271b5781548a820152908401908801612702565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061276790830184612646565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127a95783518352928401929184019160010161278d565b50909695505050505050565b6020815260006116706020830184612646565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156128b3576128b3612998565b500190565b6000826128c7576128c76129ae565b500490565b60008160001904831182151516156128e6576128e6612998565b500290565b6000828210156128fd576128fd612998565b500390565b60005b8381101561291d578181015183820152602001612905565b838111156114bb5750506000910152565b600181811c9082168061294257607f821691505b6020821081141561296357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561297d5761297d612998565b5060010190565b600082612993576129936129ae565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d3657600080fdfea2646970667358221220606a12f9f5bfa4ceb2aa0b981d866bae754329431183d9340b5e752cf9b63d7664736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000967656e6576657273650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000347454e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003068747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f67656e6576657273652f696d616765732f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003668747470733a2f2f7777772e67656e6576657273652e6e65742f72657665616c2f67656e6576657273655f72657665616c2e6a736f6e00000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): geneverse
Arg [1] : _symbol (string): GEN
Arg [2] : _initBaseURI (string): https://storage.googleapis.com/geneverse/images/
Arg [3] : _initNotRevealedUri (string): https://www.geneverse.net/reveal/geneverse_reveal.json
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 67656e6576657273650000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 47454e0000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000030
Arg [9] : 68747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f67
Arg [10] : 656e6576657273652f696d616765732f00000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [12] : 68747470733a2f2f7777772e67656e6576657273652e6e65742f72657665616c
Arg [13] : 2f67656e6576657273655f72657665616c2e6a736f6e00000000000000000000
Deployed Bytecode Sourcemap
43169:4262:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34714:224;;;;;;;;;;-1:-1:-1;34714:224:0;;;;;:::i;:::-;;:::i;:::-;;;8634:14:1;;8627:22;8609:41;;8597:2;8582:18;34714:224:0;;;;;;;;46935:73;;;;;;;;;;-1:-1:-1;46935:73:0;;;;;:::i;:::-;;:::i;:::-;;22606:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24165:221::-;;;;;;;;;;-1:-1:-1;24165:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7292:32:1;;;7274:51;;7262:2;7247:18;24165:221:0;7229:102:1;43322:28:0;;;;;;;;;;;;;:::i;23688:411::-;;;;;;;;;;-1:-1:-1;23688:411:0;;;;;:::i;:::-;;:::i;43355:31::-;;;;;;;;;;;;;;;;;;;18757:25:1;;;18745:2;18730:18;43355:31:0;18712:76:1;35354:113:0;;;;;;;;;;-1:-1:-1;35442:10:0;:17;35354:113;;43652:55;;;;;;;;;;-1:-1:-1;43652:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;43426:33;;;;;;;;;;;;;;;;25055:339;;;;;;;;;;-1:-1:-1;25055:339:0;;;;;:::i;:::-;;:::i;35022:256::-;;;;;;;;;;-1:-1:-1;35022:256:0;;;;;:::i;:::-;;:::i;45056:239::-;;;;;;;;;;-1:-1:-1;45056:239:0;;;;;:::i;:::-;;:::i;47016:95::-;;;;;;;;;;-1:-1:-1;47016:95:0;;;;;:::i;:::-;;:::i;47270:158::-;;;:::i;25465:185::-;;;;;;;;;;-1:-1:-1;25465:185:0;;;;;:::i;:::-;;:::i;45301:348::-;;;;;;;;;;-1:-1:-1;45301:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46363:82::-;;;;;;;;;;-1:-1:-1;46363:82:0;;;;;:::i;:::-;;:::i;35544:233::-;;;;;;;;;;-1:-1:-1;35544:233:0;;;;;:::i;:::-;;:::i;43538:28::-;;;;;;;;;;-1:-1:-1;43538:28:0;;;;;;;;;;;46575:98;;;;;;;;;;-1:-1:-1;46575:98:0;;;;;:::i;:::-;;:::i;43507:26::-;;;;;;;;;;-1:-1:-1;43507:26:0;;;;;;;;22300:239;;;;;;;;;;-1:-1:-1;22300:239:0;;;;;:::i;:::-;;:::i;43254:21::-;;;;;;;;;;;;;:::i;22030:208::-;;;;;;;;;;-1:-1:-1;22030:208:0;;;;;:::i;:::-;;:::i;42503:94::-;;;;;;;;;;;;;:::i;46451:118::-;;;;;;;;;;-1:-1:-1;46451:118:0;;;;;:::i;:::-;;:::i;41852:87::-;;;;;;;;;;-1:-1:-1;41925:6:0;;-1:-1:-1;;;;;41925:6:0;41852:87;;22775:104;;;;;;;;;;;;;:::i;43571:34::-;;;;;;;;;;-1:-1:-1;43571:34:0;;;;;;;;;;;44117:931;;;;;;:::i;:::-;;:::i;24458:295::-;;;;;;;;;;-1:-1:-1;24458:295:0;;;;;:::i;:::-;;:::i;46174:67::-;;;;;;;;;;;;;:::i;25721:328::-;;;;;;;;;;-1:-1:-1;25721:328:0;;;;;:::i;:::-;;:::i;43610:37::-;;;;;;;;;;-1:-1:-1;43610:37:0;;;;;:::i;:::-;;:::i;43464:38::-;;;;;;;;;;;;;;;;43280:37;;;;;;;;;;;;;:::i;45655:497::-;;;;;;;;;;-1:-1:-1;45655:497:0;;;;;:::i;:::-;;:::i;46249:106::-;;;;;;;;;;-1:-1:-1;46249:106:0;;;;;:::i;:::-;;:::i;43391:30::-;;;;;;;;;;;;;;;;46679:122;;;;;;;;;;-1:-1:-1;46679:122:0;;;;;:::i;:::-;;:::i;24824:164::-;;;;;;;;;;-1:-1:-1;24824:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24945:25:0;;;24921:4;24945:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24824:164;47119:144;;;;;;;;;;-1:-1:-1;47119:144:0;;;;;:::i;:::-;;:::i;46809:120::-;;;;;;;;;;-1:-1:-1;46809:120:0;;;;;:::i;:::-;;:::i;42752:192::-;;;;;;;;;;-1:-1:-1;42752:192:0;;;;;:::i;:::-;;:::i;34714:224::-;34816:4;-1:-1:-1;;;;;;34840:50:0;;-1:-1:-1;;;34840:50:0;;:90;;;34894:36;34918:11;34894:23;:36::i;:::-;34833:97;34714:224;-1:-1:-1;;34714:224:0:o;46935:73::-;41925:6;;-1:-1:-1;;;;;41925:6:0;20215:10;42072:23;42064:68;;;;-1:-1:-1;;;42064:68:0;;;;;;;:::i;:::-;;;;;;;;;46987:6:::1;:15:::0;;-1:-1:-1;;46987:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46935:73::o;22606:100::-;22660:13;22693:5;22686:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22606:100;:::o;24165:221::-;24241:7;27648:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27648:16:0;24261:73;;;;-1:-1:-1;;;24261:73:0;;14574:2:1;24261:73:0;;;14556:21:1;14613:2;14593:18;;;14586:30;14652:34;14632:18;;;14625:62;-1:-1:-1;;;14703:18:1;;;14696:42;14755:19;;24261:73:0;14546:234:1;24261:73:0;-1:-1:-1;24354:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24354:24:0;;24165:221::o;43322:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23688:411::-;23769:13;23785:23;23800:7;23785:14;:23::i;:::-;23769:39;;23833:5;-1:-1:-1;;;;;23827:11:0;:2;-1:-1:-1;;;;;23827:11:0;;;23819:57;;;;-1:-1:-1;;;23819:57:0;;16525:2:1;23819:57:0;;;16507:21:1;16564:2;16544:18;;;16537:30;16603:34;16583:18;;;16576:62;-1:-1:-1;;;16654:18:1;;;16647:31;16695:19;;23819:57:0;16497:223:1;23819:57:0;20215:10;-1:-1:-1;;;;;23911:21:0;;;;:62;;-1:-1:-1;23936:37:0;23953:5;20215:10;24824:164;:::i;23936:37::-;23889:168;;;;-1:-1:-1;;;23889:168:0;;12211:2:1;23889:168:0;;;12193:21:1;12250:2;12230:18;;;12223:30;12289:34;12269:18;;;12262:62;12360:26;12340:18;;;12333:54;12404:19;;23889:168:0;12183:246:1;23889:168:0;24070:21;24079:2;24083:7;24070:8;:21::i;:::-;23688:411;;;:::o;25055:339::-;25250:41;20215:10;25283:7;25250:18;:41::i;:::-;25242:103;;;;-1:-1:-1;;;25242:103:0;;;;;;;:::i;:::-;25358:28;25368:4;25374:2;25378:7;25358:9;:28::i;35022:256::-;35119:7;35155:23;35172:5;35155:16;:23::i;:::-;35147:5;:31;35139:87;;;;-1:-1:-1;;;35139:87:0;;9087:2:1;35139:87:0;;;9069:21:1;9126:2;9106:18;;;9099:30;9165:34;9145:18;;;9138:62;-1:-1:-1;;;9216:18:1;;;9209:41;9267:19;;35139:87:0;9059:233:1;35139:87:0;-1:-1:-1;;;;;;35244:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35022:256::o;45056:239::-;45115:4;;45128:143;45149:20;:27;45145:31;;45128:143;;;45223:5;-1:-1:-1;;;;;45196:32:0;:20;45217:1;45196:23;;;;;;-1:-1:-1;;;45196:23:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45196:23:0;:32;45192:72;;;-1:-1:-1;45250:4:0;;45056:239;-1:-1:-1;;45056:239:0:o;45192:72::-;45178:3;;;;:::i;:::-;;;;45128:143;;;-1:-1:-1;45284:5:0;;45056:239;-1:-1:-1;;45056:239:0:o;47016:95::-;41925:6;;-1:-1:-1;;;;;41925:6:0;20215:10;42072:23;42064:68;;;;-1:-1:-1;;;42064:68:0;;;;;;;:::i;:::-;47081:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;47081:24:0;;::::1;::::0;;;::::1;::::0;;47016:95::o;47270:158::-;41925:6;;-1:-1:-1;;;;;41925:6:0;20215:10;42072:23;42064:68;;;;-1:-1:-1;;;42064:68:0;;;;;;;:::i;:::-;47341:58:::1;::::0;47323:12:::1;::::0;47349:10:::1;::::0;47373:21:::1;::::0;47323:12;47341:58;47323:12;47341:58;47373:21;47349:10;47341:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47322:77;;;47414:7;47406:16;;;::::0;::::1;;42143:1;47270:158::o:0;25465:185::-;25603:39;25620:4;25626:2;25630:7;25603:39;;;;;;;;;;;;:16;:39::i;45301:348::-;45376:16;45404:23;45430:17;45440:6;45430:9;:17::i;:::-;45404:43;;45454:25;45496:15;45482:30;;;;;;-1:-1:-1;;;45482:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45482:30:0;;45454:58;;45524:9;45519:103;45539:15;45535:1;:19;45519:103;;;45584:30;45604:6;45612:1;45584:19;:30::i;:::-;45570:8;45579:1;45570:11;;;;;;-1:-1:-1;;;45570:11:0;;;;;;;;;;;;;;;;;;:44;45556:3;;;;:::i;:::-;;;;45519:103;;;-1:-1:-1;45635:8:0;45301:348;-1:-1:-1;;;45301:348:0:o;46363:82::-;41925:6;;-1:-1:-1;;;;;41925:6:0;20215:10;42072:23;42064:68;;;;-1:-1:-1;;;42064:68:0;;;;;;;:::i;:::-;46424:4:::1;:15:::0;46363:82::o;35544:233::-;35619:7;35655:30;35442:10;:17;;35354:113;35655:30;35647:5;:38;35639:95;;;;-1:-1:-1;;;35639:95:0;;17692:2:1;35639:95:0;;;17674:21:1;17731:2;17711:18;;;17704:30;17770:34;17750:18;;;17743:62;-1:-1:-1;;;17821:18:1;;;17814:42;17873:19;;35639:95:0;17664:234:1;35639:95:0;35752:10;35763:5;35752:17;;;;;;-1:-1:-1;;;35752:17:0;;;;;;;;;;;;;;;;;35745:24;;35544:233;;;:::o;46575:98::-;41925:6;;-1:-1:-1;;;;;41925:6:0;20215:10;42072:23;42064:68;;;;-1:-1:-1;;;42064:68:0;;;;;;;:::i;:::-;46646:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46575:98:::0;:::o;22300:239::-;22372:7;22408:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22408:16:0;22443:19;22435:73;;;;-1:-1:-1;;;22435:73:0;;13047:2:1;22435:73:0;;;13029:21:1;13086:2;13066:18;;;13059:30;13125:34;13105:18;;;13098:62;-1:-1:-1;;;13176:18:1;;;13169:39;13225:19;;22435:73:0;13019:231:1;43254:21:0;;;;;;;:::i;22030:208::-;22102:7;-1:-1:-1;;;;;22130:19:0;;22122:74;;;;-1:-1:-1;;;22122:74:0;;12636:2:1;22122:74:0;;;12618:21:1;12675:2;12655:18;;;12648:30;12714:34;12694:18;;;12687:62;-1:-1:-1;;;12765:18:1;;;12758:40;12815:19;;22122:74:0;12608:232:1;22122:74:0;-1:-1:-1;;;;;;22214:16:0;;;;;:9;:16;;;;;;;22030:208::o;42503:94::-;41925:6;;-1:-1:-1;;;;;41925:6:0;20215:10;42072:23;42064:68;;;;-1:-1:-1;;;42064:68:0;;;;;;;:::i;:::-;42568:21:::1;42586:1;42568:9;:21::i;:::-;42503:94::o:0;46451:118::-;41925:6;;-1:-1:-1;;;;;41925:6:0;20215:10;42072:23;42064:68;;;;-1:-1:-1;;;42064:68:0;;;;;;;:::i;:::-;46530:13:::1;:33:::0;46451:118::o;22775:104::-;22831:13;22864:7;22857:14;;;;;:::i;44117:931::-;44183:6;;;;44182:7;44174:42;;;;-1:-1:-1;;;44174:42:0;;15348:2:1;44174:42:0;;;15330:21:1;15387:2;15367:18;;;15360:30;-1:-1:-1;;;15406:18:1;;;15399:52;15468:18;;44174:42:0;15320:172:1;44174:42:0;44223:14;44240:13;35442:10;:17;;35354:113;44240:13;44223:30;;44282:1;44268:11;:15;44260:55;;;;-1:-1:-1;;;44260:55:0;;18457:2:1;44260:55:0;;;18439:21:1;18496:2;18476:18;;;18469:30;18535:29;18515:18;;;18508:57;18582:18;;44260:55:0;18429:177:1;44260:55:0;44345:13;;44330:11;:28;;44322:77;;;;-1:-1:-1;;;44322:77:0;;13808:2:1;44322:77:0;;;13790:21:1;13847:2;13827:18;;;13820:30;13886:34;13866:18;;;13859:62;-1:-1:-1;;;13937:18:1;;;13930:34;13981:19;;44322:77:0;13780:226:1;44322:77:0;44438:9;;44414:20;44423:11;44414:6;:20;:::i;:::-;:33;;44406:68;;;;-1:-1:-1;;;44406:68:0;;13457:2:1;44406:68:0;;;13439:21:1;13496:2;13476:18;;;13469:30;-1:-1:-1;;;13515:18:1;;;13508:52;13577:18;;44406:68:0;13429:172:1;44406:68:0;41925:6;;-1:-1:-1;;;;;41925:6:0;44487:10;:21;44483:416;;44524:15;;;;;;;:23;;44543:4;44524:23;44521:298;;;44572:25;44586:10;44572:13;:25::i;:::-;44564:61;;;;-1:-1:-1;;;44564:61:0;;18105:2:1;44564:61:0;;;18087:21:1;18144:2;18124:18;;;18117:30;18183:25;18163:18;;;18156:53;18226:18;;44564:61:0;18077:173:1;44564:61:0;44688:10;44640:24;44667:32;;;:20;:32;;;;;;44756:18;;44722:30;44741:11;44667:32;44722:30;:::i;:::-;:52;;44714:93;;;;-1:-1:-1;;;44714:93:0;;10682:2:1;44714:93:0;;;10664:21:1;10721:2;10701:18;;;10694:30;10760;10740:18;;;10733:58;10808:18;;44714:93:0;10654:178:1;44714:93:0;44521:298;;44857:11;44850:4;;:18;;;;:::i;:::-;44837:9;:31;;44829:62;;;;-1:-1:-1;;;44829:62:0;;16927:2:1;44829:62:0;;;16909:21:1;16966:2;16946:18;;;16939:30;-1:-1:-1;;;16985:18:1;;;16978:48;17043:18;;44829:62:0;16899:168:1;44829:62:0;44924:1;44907:136;44932:11;44927:1;:16;44907:136;;44980:10;44959:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;45002:33:0;;-1:-1:-1;45012:10:0;45024;45033:1;45024:6;:10;:::i;:::-;45002:9;:33::i;:::-;44945:3;;;;:::i;:::-;;;;44907:136;;24458:295;-1:-1:-1;;;;;24561:24:0;;20215:10;24561:24;;24553:62;;;;-1:-1:-1;;;24553:62:0;;11444:2:1;24553:62:0;;;11426:21:1;11483:2;11463:18;;;11456:30;11522:27;11502:18;;;11495:55;11567:18;;24553:62:0;11416:175:1;24553:62:0;20215:10;24628:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24628:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24628:53:0;;;;;;;;;;24697:48;;8609:41:1;;;24628:42:0;;20215:10;24697:48;;8582:18:1;24697:48:0;;;;;;;24458:295;;:::o;46174:67::-;41925:6;;-1:-1:-1;;;;;41925:6:0;20215:10;42072:23;42064:68;;;;-1:-1:-1;;;42064:68:0;;;;;;;:::i;:::-;46220:8:::1;:15:::0;;-1:-1:-1;;46220:15:0::1;;;::::0;;46174:67::o;25721:328::-;25896:41;20215:10;25929:7;25896:18;:41::i;:::-;25888:103;;;;-1:-1:-1;;;25888:103:0;;;;;;;:::i;:::-;26002:39;26016:4;26022:2;26026:7;26035:5;26002:13;:39::i;:::-;25721:328;;;;:::o;43610:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43610:37:0;;-1:-1:-1;43610:37:0;:::o;43280:::-;;;;;;;:::i;45655:497::-;27624:4;27648:16;;;:7;:16;;;;;;45753:13;;-1:-1:-1;;;;;27648:16:0;45778:97;;;;-1:-1:-1;;;45778:97:0;;16109:2:1;45778:97:0;;;16091:21:1;16148:2;16128:18;;;16121:30;16187:34;16167:18;;;16160:62;-1:-1:-1;;;16238:18:1;;;16231:45;16293:19;;45778:97:0;16081:237:1;45778:97:0;45891:8;;;;;;;45888:62;;45928:14;45921:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45655:497;;;:::o;45888:62::-;45958:28;45989:10;:8;:10::i;:::-;45958:41;;46044:1;46019:14;46013:28;:32;:133;;;;;;;;;;;;;;;;;46081:14;46097:18;:7;:16;:18::i;:::-;46117:13;46064:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46013:133;46006:140;45655:497;-1:-1:-1;;;45655:497:0:o;46249:106::-;41925:6;;-1:-1:-1;;;;;41925:6:0;20215:10;42072:23;42064:68;;;;-1:-1:-1;;;42064:68:0;;;;;;;:::i;:::-;46322:18:::1;:27:::0;46249:106::o;46679:122::-;41925:6;;-1:-1:-1;;;;;41925:6:0;20215:10;42072:23;42064:68;;;;-1:-1:-1;;;42064:68:0;;;;;;;:::i;:::-;46762:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;47119:144::-:0;41925:6;;-1:-1:-1;;;;;41925:6:0;20215:10;42072:23;42064:68;;;;-1:-1:-1;;;42064:68:0;;;;;;;:::i;:::-;47194:27:::1;47201:20;;47194:27;:::i;:::-;47228:29;:20;47251:6:::0;;47228:29:::1;:::i;46809:120::-:0;41925:6;;-1:-1:-1;;;;;41925:6:0;20215:10;42072:23;42064:68;;;;-1:-1:-1;;;42064:68:0;;;;;;;:::i;:::-;46891:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;42752:192::-:0;41925:6;;-1:-1:-1;;;;;41925:6:0;20215:10;42072:23;42064:68;;;;-1:-1:-1;;;42064:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42841:22:0;::::1;42833:73;;;::::0;-1:-1:-1;;;42833:73:0;;9918:2:1;42833:73:0::1;::::0;::::1;9900:21:1::0;9957:2;9937:18;;;9930:30;9996:34;9976:18;;;9969:62;-1:-1:-1;;;10047:18:1;;;10040:36;10093:19;;42833:73:0::1;9890:228:1::0;42833:73:0::1;42917:19;42927:8;42917:9;:19::i;10492:387::-:0;10815:20;10863:8;;;10492:387::o;21661:305::-;21763:4;-1:-1:-1;;;;;;21800:40:0;;-1:-1:-1;;;21800:40:0;;:105;;-1:-1:-1;;;;;;;21857:48:0;;-1:-1:-1;;;21857:48:0;21800:105;:158;;;-1:-1:-1;;;;;;;;;;7601:40:0;;;21922:36;7492:157;31541:174;31616:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31616:29:0;-1:-1:-1;;;;;31616:29:0;;;;;;;;:24;;31670:23;31616:24;31670:14;:23::i;:::-;-1:-1:-1;;;;;31661:46:0;;;;;;;;;;;31541:174;;:::o;27853:348::-;27946:4;27648:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27648:16:0;27963:73;;;;-1:-1:-1;;;27963:73:0;;11798:2:1;27963:73:0;;;11780:21:1;11837:2;11817:18;;;11810:30;11876:34;11856:18;;;11849:62;-1:-1:-1;;;11927:18:1;;;11920:42;11979:19;;27963:73:0;11770:234:1;27963:73:0;28047:13;28063:23;28078:7;28063:14;:23::i;:::-;28047:39;;28116:5;-1:-1:-1;;;;;28105:16:0;:7;-1:-1:-1;;;;;28105:16:0;;:51;;;;28149:7;-1:-1:-1;;;;;28125:31:0;:20;28137:7;28125:11;:20::i;:::-;-1:-1:-1;;;;;28125:31:0;;28105:51;:87;;;-1:-1:-1;;;;;;24945:25:0;;;24921:4;24945:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28160:32;28097:96;27853:348;-1:-1:-1;;;;27853:348:0:o;30845:578::-;31004:4;-1:-1:-1;;;;;30977:31:0;:23;30992:7;30977:14;:23::i;:::-;-1:-1:-1;;;;;30977:31:0;;30969:85;;;;-1:-1:-1;;;30969:85:0;;15699:2:1;30969:85:0;;;15681:21:1;15738:2;15718:18;;;15711:30;15777:34;15757:18;;;15750:62;-1:-1:-1;;;15828:18:1;;;15821:39;15877:19;;30969:85:0;15671:231:1;30969:85:0;-1:-1:-1;;;;;31073:16:0;;31065:65;;;;-1:-1:-1;;;31065:65:0;;11039:2:1;31065:65:0;;;11021:21:1;11078:2;11058:18;;;11051:30;11117:34;11097:18;;;11090:62;-1:-1:-1;;;11168:18:1;;;11161:34;11212:19;;31065:65:0;11011:226:1;31065:65:0;31143:39;31164:4;31170:2;31174:7;31143:20;:39::i;:::-;31247:29;31264:1;31268:7;31247:8;:29::i;:::-;-1:-1:-1;;;;;31289:15:0;;;;;;:9;:15;;;;;:20;;31308:1;;31289:15;:20;;31308:1;;31289:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31320:13:0;;;;;;:9;:13;;;;;:18;;31337:1;;31320:13;:18;;31337:1;;31320:18;:::i;:::-;;;;-1:-1:-1;;31349:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31349:21:0;-1:-1:-1;;;;;31349:21:0;;;;;;;;;31388:27;;31349:16;;31388:27;;;;;;;30845:578;;;:::o;42952:173::-;43027:6;;;-1:-1:-1;;;;;43044:17:0;;;-1:-1:-1;;;;;;43044:17:0;;;;;;;43077:40;;43027:6;;;43044:17;43027:6;;43077:40;;43008:16;;43077:40;42952:173;;:::o;28543:110::-;28619:26;28629:2;28633:7;28619:26;;;;;;;;;;;;:9;:26::i;26931:315::-;27088:28;27098:4;27104:2;27108:7;27088:9;:28::i;:::-;27135:48;27158:4;27164:2;27168:7;27177:5;27135:22;:48::i;:::-;27127:111;;;;-1:-1:-1;;;27127:111:0;;;;;;;:::i;43996:102::-;44056:13;44085:7;44078:14;;;;;:::i;7967:723::-;8023:13;8244:10;8240:53;;-1:-1:-1;;8271:10:0;;;;;;;;;;;;-1:-1:-1;;;8271:10:0;;;;;7967:723::o;8240:53::-;8318:5;8303:12;8359:78;8366:9;;8359:78;;8392:8;;;;:::i;:::-;;-1:-1:-1;8415:10:0;;-1:-1:-1;8423:2:0;8415:10;;:::i;:::-;;;8359:78;;;8447:19;8479:6;8469:17;;;;;;-1:-1:-1;;;8469:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8469:17:0;;8447:39;;8497:154;8504:10;;8497:154;;8531:11;8541:1;8531:11;;:::i;:::-;;-1:-1:-1;8600:10:0;8608:2;8600:5;:10;:::i;:::-;8587:24;;:2;:24;:::i;:::-;8574:39;;8557:6;8564;8557:14;;;;;;-1:-1:-1;;;8557:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;8557:56:0;;;;;;;;-1:-1:-1;8628:11:0;8637:2;8628:11;;:::i;:::-;;;8497:154;;36390:589;-1:-1:-1;;;;;36596:18:0;;36592:187;;36631:40;36663:7;37806:10;:17;;37779:24;;;;:15;:24;;;;;:44;;;37834:24;;;;;;;;;;;;37702:164;36631:40;36592:187;;;36701:2;-1:-1:-1;;;;;36693:10:0;:4;-1:-1:-1;;;;;36693:10:0;;36689:90;;36720:47;36753:4;36759:7;36720:32;:47::i;:::-;-1:-1:-1;;;;;36793:16:0;;36789:183;;36826:45;36863:7;36826:36;:45::i;36789:183::-;36899:4;-1:-1:-1;;;;;36893:10:0;:2;-1:-1:-1;;;;;36893:10:0;;36889:83;;36920:40;36948:2;36952:7;36920:27;:40::i;28880:321::-;29010:18;29016:2;29020:7;29010:5;:18::i;:::-;29061:54;29092:1;29096:2;29100:7;29109:5;29061:22;:54::i;:::-;29039:154;;;;-1:-1:-1;;;29039:154:0;;;;;;;:::i;32280:799::-;32435:4;-1:-1:-1;;;;;32456:13:0;;10815:20;10863:8;32452:620;;32492:72;;-1:-1:-1;;;32492:72:0;;-1:-1:-1;;;;;32492:36:0;;;;;:72;;20215:10;;32543:4;;32549:7;;32558:5;;32492:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32492:72:0;;;;;;;;-1:-1:-1;;32492:72:0;;;;;;;;;;;;:::i;:::-;;;32488:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32734:13:0;;32730:272;;32777:60;;-1:-1:-1;;;32777:60:0;;;;;;;:::i;32730:272::-;32952:6;32946:13;32937:6;32933:2;32929:15;32922:38;32488:529;-1:-1:-1;;;;;;32615:51:0;-1:-1:-1;;;32615:51:0;;-1:-1:-1;32608:58:0;;32452:620;-1:-1:-1;33056:4:0;32280:799;;;;;;:::o;38493:988::-;38759:22;38809:1;38784:22;38801:4;38784:16;:22::i;:::-;:26;;;;:::i;:::-;38821:18;38842:26;;;:17;:26;;;;;;38759:51;;-1:-1:-1;38975:28:0;;;38971:328;;-1:-1:-1;;;;;39042:18:0;;39020:19;39042:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39093:30;;;;;;:44;;;39210:30;;:17;:30;;;;;:43;;;38971:328;-1:-1:-1;39395:26:0;;;;:17;:26;;;;;;;;39388:33;;;-1:-1:-1;;;;;39439:18:0;;;;;:12;:18;;;;;:34;;;;;;;39432:41;38493:988::o;39776:1079::-;40054:10;:17;40029:22;;40054:21;;40074:1;;40054:21;:::i;:::-;40086:18;40107:24;;;:15;:24;;;;;;40480:10;:26;;40029:46;;-1:-1:-1;40107:24:0;;40029:46;;40480:26;;;;-1:-1:-1;;;40480:26:0;;;;;;;;;;;;;;;;;40458:48;;40544:11;40519:10;40530;40519:22;;;;;;-1:-1:-1;;;40519:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40624:28;;;:15;:28;;;;;;;:41;;;40796:24;;;;;40789:31;40831:10;:16;;;;;-1:-1:-1;;;40831:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39776:1079;;;;:::o;37280:221::-;37365:14;37382:20;37399:2;37382:16;:20::i;:::-;-1:-1:-1;;;;;37413:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37458:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37280:221:0:o;29537:382::-;-1:-1:-1;;;;;29617:16:0;;29609:61;;;;-1:-1:-1;;;29609:61:0;;14213:2:1;29609:61:0;;;14195:21:1;;;14232:18;;;14225:30;14291:34;14271:18;;;14264:62;14343:18;;29609:61:0;14185:182:1;29609:61:0;27624:4;27648:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27648:16:0;:30;29681:58;;;;-1:-1:-1;;;29681:58:0;;10325:2:1;29681:58:0;;;10307:21:1;10364:2;10344:18;;;10337:30;10403;10383:18;;;10376:58;10451:18;;29681:58:0;10297:178:1;29681:58:0;29752:45;29781:1;29785:2;29789:7;29752:20;:45::i;:::-;-1:-1:-1;;;;;29810:13:0;;;;;;:9;:13;;;;;:18;;29827:1;;29810:13;:18;;29827:1;;29810:18;:::i;:::-;;;;-1:-1:-1;;29839:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29839:21:0;-1:-1:-1;;;;;29839:21:0;;;;;;;;29878:33;;29839:16;;;29878:33;;29839:16;;29878:33;29537:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:2;;978:1;975;968:12;993:196;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:2;;;1126:6;1118;1111:22;1073:2;1154:29;1173:9;1154:29;:::i;1194:270::-;1262:6;1270;1323:2;1311:9;1302:7;1298:23;1294:32;1291:2;;;1344:6;1336;1329:22;1291:2;1372:29;1391:9;1372:29;:::i;:::-;1362:39;;1420:38;1454:2;1443:9;1439:18;1420:38;:::i;:::-;1410:48;;1281:183;;;;;:::o;1469:338::-;1546:6;1554;1562;1615:2;1603:9;1594:7;1590:23;1586:32;1583:2;;;1636:6;1628;1621:22;1583:2;1664:29;1683:9;1664:29;:::i;:::-;1654:39;;1712:38;1746:2;1735:9;1731:18;1712:38;:::i;:::-;1702:48;;1797:2;1786:9;1782:18;1769:32;1759:42;;1573:234;;;;;:::o;1812:696::-;1907:6;1915;1923;1931;1984:3;1972:9;1963:7;1959:23;1955:33;1952:2;;;2006:6;1998;1991:22;1952:2;2034:29;2053:9;2034:29;:::i;:::-;2024:39;;2082:38;2116:2;2105:9;2101:18;2082:38;:::i;:::-;2072:48;;2167:2;2156:9;2152:18;2139:32;2129:42;;2222:2;2211:9;2207:18;2194:32;2249:18;2241:6;2238:30;2235:2;;;2286:6;2278;2271:22;2235:2;2314:22;;2367:4;2359:13;;2355:27;-1:-1:-1;2345:2:1;;2401:6;2393;2386:22;2345:2;2429:73;2494:7;2489:2;2476:16;2471:2;2467;2463:11;2429:73;:::i;:::-;2419:83;;;1942:566;;;;;;;:::o;2513:264::-;2578:6;2586;2639:2;2627:9;2618:7;2614:23;2610:32;2607:2;;;2660:6;2652;2645:22;2607:2;2688:29;2707:9;2688:29;:::i;:::-;2678:39;;2736:35;2767:2;2756:9;2752:18;2736:35;:::i;2782:264::-;2850:6;2858;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:29;2979:9;2960:29;:::i;:::-;2950:39;3036:2;3021:18;;;;3008:32;;-1:-1:-1;;;2869:177:1:o;3051:665::-;3137:6;3145;3198:2;3186:9;3177:7;3173:23;3169:32;3166:2;;;3219:6;3211;3204:22;3166:2;3264:9;3251:23;3293:18;3334:2;3326:6;3323:14;3320:2;;;3355:6;3347;3340:22;3320:2;3398:6;3387:9;3383:22;3373:32;;3443:7;3436:4;3432:2;3428:13;3424:27;3414:2;;3470:6;3462;3455:22;3414:2;3515;3502:16;3541:2;3533:6;3530:14;3527:2;;;3562:6;3554;3547:22;3527:2;3620:7;3615:2;3605:6;3602:1;3598:14;3594:2;3590:23;3586:32;3583:45;3580:2;;;3646:6;3638;3631:22;3580:2;3682;3674:11;;;;;3704:6;;-1:-1:-1;3156:560:1;;-1:-1:-1;;;;3156:560:1:o;3721:190::-;3777:6;3830:2;3818:9;3809:7;3805:23;3801:32;3798:2;;;3851:6;3843;3836:22;3798:2;3879:26;3895:9;3879:26;:::i;3916:255::-;3974:6;4027:2;4015:9;4006:7;4002:23;3998:32;3995:2;;;4048:6;4040;4033:22;3995:2;4092:9;4079:23;4111:30;4135:5;4111:30;:::i;4176:259::-;4245:6;4298:2;4286:9;4277:7;4273:23;4269:32;4266:2;;;4319:6;4311;4304:22;4266:2;4356:9;4350:16;4375:30;4399:5;4375:30;:::i;4440:480::-;4509:6;4562:2;4550:9;4541:7;4537:23;4533:32;4530:2;;;4583:6;4575;4568:22;4530:2;4628:9;4615:23;4661:18;4653:6;4650:30;4647:2;;;4698:6;4690;4683:22;4647:2;4726:22;;4779:4;4771:13;;4767:27;-1:-1:-1;4757:2:1;;4813:6;4805;4798:22;4757:2;4841:73;4906:7;4901:2;4888:16;4883:2;4879;4875:11;4841:73;:::i;4925:190::-;4984:6;5037:2;5025:9;5016:7;5012:23;5008:32;5005:2;;;5058:6;5050;5043:22;5005:2;-1:-1:-1;5086:23:1;;4995:120;-1:-1:-1;4995:120:1:o;5120:257::-;5161:3;5199:5;5193:12;5226:6;5221:3;5214:19;5242:63;5298:6;5291:4;5286:3;5282:14;5275:4;5268:5;5264:16;5242:63;:::i;:::-;5359:2;5338:15;-1:-1:-1;;5334:29:1;5325:39;;;;5366:4;5321:50;;5169:208;-1:-1:-1;;5169:208:1:o;5382:1531::-;5606:3;5644:6;5638:13;5670:4;5683:51;5727:6;5722:3;5717:2;5709:6;5705:15;5683:51;:::i;:::-;5797:13;;5756:16;;;;5819:55;5797:13;5756:16;5841:15;;;5819:55;:::i;:::-;5965:13;;5896:20;;;5936:3;;6025:1;6047:18;;;;6100;;;;6127:2;;6205:4;6195:8;6191:19;6179:31;;6127:2;6268;6258:8;6255:16;6235:18;6232:40;6229:2;;;-1:-1:-1;;;6295:33:1;;6351:4;6348:1;6341:15;6381:4;6302:3;6369:17;6229:2;6412:18;6439:110;;;;6563:1;6558:330;;;;6405:483;;6439:110;-1:-1:-1;;6474:24:1;;6460:39;;6519:20;;;;-1:-1:-1;6439:110:1;;6558:330;18840:4;18859:17;;;18909:4;18893:21;;6653:3;6669:169;6683:8;6680:1;6677:15;6669:169;;;6765:14;;6750:13;;;6743:37;6808:16;;;;6700:10;;6669:169;;;6673:3;;6869:8;6862:5;6858:20;6851:27;;6405:483;-1:-1:-1;6904:3:1;;5614:1299;-1:-1:-1;;;;;;;;;;;5614:1299:1:o;7336:488::-;-1:-1:-1;;;;;7605:15:1;;;7587:34;;7657:15;;7652:2;7637:18;;7630:43;7704:2;7689:18;;7682:34;;;7752:3;7747:2;7732:18;;7725:31;;;7530:4;;7773:45;;7798:19;;7790:6;7773:45;:::i;:::-;7765:53;7539:285;-1:-1:-1;;;;;;7539:285:1:o;7829:635::-;8000:2;8052:21;;;8122:13;;8025:18;;;8144:22;;;7971:4;;8000:2;8223:15;;;;8197:2;8182:18;;;7971:4;8269:169;8283:6;8280:1;8277:13;8269:169;;;8344:13;;8332:26;;8413:15;;;;8378:12;;;;8305:1;8298:9;8269:169;;;-1:-1:-1;8455:3:1;;7980:484;-1:-1:-1;;;;;;7980:484:1:o;8661:219::-;8810:2;8799:9;8792:21;8773:4;8830:44;8870:2;8859:9;8855:18;8847:6;8830:44;:::i;9297:414::-;9499:2;9481:21;;;9538:2;9518:18;;;9511:30;9577:34;9572:2;9557:18;;9550:62;-1:-1:-1;;;9643:2:1;9628:18;;9621:48;9701:3;9686:19;;9471:240::o;14785:356::-;14987:2;14969:21;;;15006:18;;;14999:30;15065:34;15060:2;15045:18;;15038:62;15132:2;15117:18;;14959:182::o;17072:413::-;17274:2;17256:21;;;17313:2;17293:18;;;17286:30;17352:34;17347:2;17332:18;;17325:62;-1:-1:-1;;;17418:2:1;17403:18;;17396:47;17475:3;17460:19;;17246:239::o;18925:128::-;18965:3;18996:1;18992:6;18989:1;18986:13;18983:2;;;19002:18;;:::i;:::-;-1:-1:-1;19038:9:1;;18973:80::o;19058:120::-;19098:1;19124;19114:2;;19129:18;;:::i;:::-;-1:-1:-1;19163:9:1;;19104:74::o;19183:168::-;19223:7;19289:1;19285;19281:6;19277:14;19274:1;19271:21;19266:1;19259:9;19252:17;19248:45;19245:2;;;19296:18;;:::i;:::-;-1:-1:-1;19336:9:1;;19235:116::o;19356:125::-;19396:4;19424:1;19421;19418:8;19415:2;;;19429:18;;:::i;:::-;-1:-1:-1;19466:9:1;;19405:76::o;19486:258::-;19558:1;19568:113;19582:6;19579:1;19576:13;19568:113;;;19658:11;;;19652:18;19639:11;;;19632:39;19604:2;19597:10;19568:113;;;19699:6;19696:1;19693:13;19690:2;;;-1:-1:-1;;19734:1:1;19716:16;;19709:27;19539:205::o;19749:380::-;19828:1;19824:12;;;;19871;;;19892:2;;19946:4;19938:6;19934:17;19924:27;;19892:2;19999;19991:6;19988:14;19968:18;19965:38;19962:2;;;20045:10;20040:3;20036:20;20033:1;20026:31;20080:4;20077:1;20070:15;20108:4;20105:1;20098:15;19962:2;;19804:325;;;:::o;20134:135::-;20173:3;-1:-1:-1;;20194:17:1;;20191:2;;;20214:18;;:::i;:::-;-1:-1:-1;20261:1:1;20250:13;;20181:88::o;20274:112::-;20306:1;20332;20322:2;;20337:18;;:::i;:::-;-1:-1:-1;20371:9:1;;20312:74::o;20391:127::-;20452:10;20447:3;20443:20;20440:1;20433:31;20483:4;20480:1;20473:15;20507:4;20504:1;20497:15;20523:127;20584:10;20579:3;20575:20;20572:1;20565:31;20615:4;20612:1;20605:15;20639:4;20636:1;20629:15;20655:127;20716:10;20711:3;20707:20;20704:1;20697:31;20747:4;20744:1;20737:15;20771:4;20768:1;20761:15;20787:131;-1:-1:-1;;;;;;20861:32:1;;20851:43;;20841:2;;20908:1;20905;20898:12
Swarm Source
ipfs://606a12f9f5bfa4ceb2aa0b981d866bae754329431183d9340b5e752cf9b63d76
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.