Token Collab.Land Genesis Membership NFT
Polygon Sponsored slots available. Book your slot here!
Overview ERC-721
Total Supply:
28,314 CLGM
Holders:
21,314 addresses
Transfers:
-
Contract:
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Member
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-31 */ // Sources flattened with hardhat v2.6.7 https://hardhat.org // File @openzeppelin/contracts/utils/introspection/[email protected] // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] 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/[email protected] 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/token/ERC721/extensions/[email protected] 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/utils/[email protected] 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/utils/[email protected] 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/utils/[email protected] 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/introspection/[email protected] 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/token/ERC721/[email protected] 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/[email protected] 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/token/ERC721/extensions/[email protected] 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/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @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 override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } // File @openzeppelin/contracts/access/[email protected] 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); } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File src/Membership.sol pragma solidity ^0.8.0; contract Member is ERC721, ERC721Enumerable, ERC721URIStorage, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenIdCounter; string public baseURI; constructor(string memory _name, string memory _symbol, string memory _uri) ERC721(_name, _symbol) { baseURI = _uri; } function contractURI() public view returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) { //return super.tokenURI(tokenId); return baseURI; } function _baseURI() internal view override returns (string memory) { return baseURI; } function mint(address to) public onlyOwner { _safeMint(to, _tokenIdCounter.current()); _tokenIdCounter.increment(); } // The following functions are overrides required by Solidity. function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) { super._burn(tokenId); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
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":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162001c4638038062001c46833981016040819052620000349162000268565b8251839083906200004d906000906020850190620000f5565b50805162000063906001906020840190620000f5565b505050620000806200007a6200009f60201b60201c565b620000a3565b80516200009590600d906020840190620000f5565b5050505062000336565b3390565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200010390620002f9565b90600052602060002090601f01602090048101928262000127576000855562000172565b82601f106200014257805160ff191683800117855562000172565b8280016001018555821562000172579182015b828111156200017257825182559160200191906001019062000155565b506200018092915062000184565b5090565b5b8082111562000180576000815560010162000185565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001c357600080fd5b81516001600160401b0380821115620001e057620001e06200019b565b604051601f8301601f19908116603f011681019082821181831017156200020b576200020b6200019b565b816040528381526020925086838588010111156200022857600080fd5b600091505b838210156200024c57858201830151818301840152908201906200022d565b838211156200025e5760008385830101525b9695505050505050565b6000806000606084860312156200027e57600080fd5b83516001600160401b03808211156200029657600080fd5b620002a487838801620001b1565b94506020860151915080821115620002bb57600080fd5b620002c987838801620001b1565b93506040860151915080821115620002e057600080fd5b50620002ef86828701620001b1565b9150509250925092565b600181811c908216806200030e57607f821691505b602082108114156200033057634e487b7160e01b600052602260045260246000fd5b50919050565b61190080620003466000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80636c0360eb116100b8578063a22cb4651161007c578063a22cb46514610284578063b88d4fde14610297578063c87b56dd146102aa578063e8a3d485146102bd578063e985e9c5146102c5578063f2fde38b1461030157600080fd5b80636c0360eb1461024857806370a0823114610250578063715018a6146102635780638da5cb5b1461026b57806395d89b411461027c57600080fd5b806323b872dd1161010a57806323b872dd146101d65780632f745c59146101e957806342842e0e146101fc5780634f6ccce71461020f5780636352211e146102225780636a6278421461023557600080fd5b806301ffc9a71461014757806306fdde031461016f578063081812fc14610184578063095ea7b3146101af57806318160ddd146101c4575b600080fd5b61015a610155366004611451565b610314565b60405190151581526020015b60405180910390f35b610177610325565b60405161016691906114c2565b6101976101923660046114d5565b6103b7565b6040516001600160a01b039091168152602001610166565b6101c26101bd36600461150a565b610451565b005b6008545b604051908152602001610166565b6101c26101e4366004611534565b610567565b6101c86101f736600461150a565b610598565b6101c261020a366004611534565b61062e565b6101c861021d3660046114d5565b610649565b6101976102303660046114d5565b6106dc565b6101c2610243366004611570565b610753565b6101776107a0565b6101c861025e366004611570565b61082e565b6101c26108b5565b600b546001600160a01b0316610197565b6101776108eb565b6101c261029236600461158b565b6108fa565b6101c26102a53660046115dd565b6109bf565b6101776102b83660046114d5565b6109f7565b610177610a8b565b61015a6102d33660046116b9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101c261030f366004611570565b610a9a565b600061031f82610b32565b92915050565b606060008054610334906116ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610360906116ec565b80156103ad5780601f10610382576101008083540402835291602001916103ad565b820191906000526020600020905b81548152906001019060200180831161039057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104355760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061045c826106dc565b9050806001600160a01b0316836001600160a01b031614156104ca5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161042c565b336001600160a01b03821614806104e657506104e681336102d3565b6105585760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161042c565b6105628383610b57565b505050565b6105713382610bc5565b61058d5760405162461bcd60e51b815260040161042c90611727565b610562838383610cbc565b60006105a38361082e565b82106106055760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161042c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610562838383604051806020016040528060008152506109bf565b600061065460085490565b82106106b75760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161042c565b600882815481106106ca576106ca611778565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061031f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161042c565b600b546001600160a01b0316331461077d5760405162461bcd60e51b815260040161042c9061178e565b61078f8161078a600c5490565b610e67565b61079d600c80546001019055565b50565b600d80546107ad906116ec565b80601f01602080910402602001604051908101604052809291908181526020018280546107d9906116ec565b80156108265780601f106107fb57610100808354040283529160200191610826565b820191906000526020600020905b81548152906001019060200180831161080957829003601f168201915b505050505081565b60006001600160a01b0382166108995760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161042c565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146108df5760405162461bcd60e51b815260040161042c9061178e565b6108e96000610e85565b565b606060018054610334906116ec565b6001600160a01b0382163314156109535760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161042c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109c93383610bc5565b6109e55760405162461bcd60e51b815260040161042c90611727565b6109f184848484610ed7565b50505050565b6060600d8054610a06906116ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610a32906116ec565b8015610a7f5780601f10610a5457610100808354040283529160200191610a7f565b820191906000526020600020905b815481529060010190602001808311610a6257829003601f168201915b50505050509050919050565b6060600d8054610334906116ec565b600b546001600160a01b03163314610ac45760405162461bcd60e51b815260040161042c9061178e565b6001600160a01b038116610b295760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161042c565b61079d81610e85565b60006001600160e01b0319821663780e9d6360e01b148061031f575061031f82610f0a565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610b8c826106dc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610c3e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161042c565b6000610c49836106dc565b9050806001600160a01b0316846001600160a01b03161480610c845750836001600160a01b0316610c79846103b7565b6001600160a01b0316145b80610cb457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610ccf826106dc565b6001600160a01b031614610d375760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161042c565b6001600160a01b038216610d995760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161042c565b610da4838383610f5a565b610daf600082610b57565b6001600160a01b0383166000908152600360205260408120805460019290610dd89084906117d9565b90915550506001600160a01b0382166000908152600360205260408120805460019290610e069084906117f0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610e81828260405180602001604052806000815250610f65565b5050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ee2848484610cbc565b610eee84848484610f98565b6109f15760405162461bcd60e51b815260040161042c90611808565b60006001600160e01b031982166380ac58cd60e01b1480610f3b57506001600160e01b03198216635b5e139f60e01b145b8061031f57506301ffc9a760e01b6001600160e01b031983161461031f565b6105628383836110a5565b610f6f838361115d565b610f7c6000848484610f98565b6105625760405162461bcd60e51b815260040161042c90611808565b60006001600160a01b0384163b1561109a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290610fdc90339089908890889060040161185a565b602060405180830381600087803b158015610ff657600080fd5b505af1925050508015611026575060408051601f3d908101601f1916820190925261102391810190611897565b60015b611080573d808015611054576040519150601f19603f3d011682016040523d82523d6000602084013e611059565b606091505b5080516110785760405162461bcd60e51b815260040161042c90611808565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610cb4565b506001949350505050565b6001600160a01b038316611100576110fb81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611123565b816001600160a01b0316836001600160a01b0316146111235761112383826112ab565b6001600160a01b03821661113a5761056281611348565b826001600160a01b0316826001600160a01b0316146105625761056282826113f7565b6001600160a01b0382166111b35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161042c565b6000818152600260205260409020546001600160a01b0316156112185760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161042c565b61122460008383610f5a565b6001600160a01b038216600090815260036020526040812080546001929061124d9084906117f0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016112b88461082e565b6112c291906117d9565b600083815260076020526040902054909150808214611315576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061135a906001906117d9565b6000838152600960205260408120546008805493945090928490811061138257611382611778565b9060005260206000200154905080600883815481106113a3576113a3611778565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806113db576113db6118b4565b6001900381819060005260206000200160009055905550505050565b60006114028361082e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b03198116811461079d57600080fd5b60006020828403121561146357600080fd5b813561146e8161143b565b9392505050565b6000815180845260005b8181101561149b5760208185018101518683018201520161147f565b818111156114ad576000602083870101525b50601f01601f19169290920160200192915050565b60208152600061146e6020830184611475565b6000602082840312156114e757600080fd5b5035919050565b80356001600160a01b038116811461150557600080fd5b919050565b6000806040838503121561151d57600080fd5b611526836114ee565b946020939093013593505050565b60008060006060848603121561154957600080fd5b611552846114ee565b9250611560602085016114ee565b9150604084013590509250925092565b60006020828403121561158257600080fd5b61146e826114ee565b6000806040838503121561159e57600080fd5b6115a7836114ee565b9150602083013580151581146115bc57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156115f357600080fd5b6115fc856114ee565b935061160a602086016114ee565b925060408501359150606085013567ffffffffffffffff8082111561162e57600080fd5b818701915087601f83011261164257600080fd5b813581811115611654576116546115c7565b604051601f8201601f19908116603f0116810190838211818310171561167c5761167c6115c7565b816040528281528a602084870101111561169557600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156116cc57600080fd5b6116d5836114ee565b91506116e3602084016114ee565b90509250929050565b600181811c9082168061170057607f821691505b6020821081141561172157634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000828210156117eb576117eb6117c3565b500390565b60008219821115611803576118036117c3565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061188d90830184611475565b9695505050505050565b6000602082840312156118a957600080fd5b815161146e8161143b565b634e487b7160e01b600052603160045260246000fdfea26469706673582212204a75b78221543fa49b33f13a63a29519158c86f4de4e782f2a8a7be7749ce69b64736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000022436f6c6c61622e4c616e642047656e65736973204d656d62657273686970204e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004434c474d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d634a467562417466395343414d4665326b74614e4434754171774c38766e6f736f68515878545237377476330000000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000022436f6c6c61622e4c616e642047656e65736973204d656d62657273686970204e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004434c474d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d634a467562417466395343414d4665326b74614e4434754171774c38766e6f736f68515878545237377476330000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Collab.Land Genesis Membership NFT
Arg [1] : _symbol (string): CLGM
Arg [2] : _uri (string): https://ipfs.io/ipfs/QmcJFubAtf9SCAMFe2ktaND4uAqwL8vnosohQXxTR77tv3
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000022
Arg [4] : 436f6c6c61622e4c616e642047656e65736973204d656d62657273686970204e
Arg [5] : 4654000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 434c474d00000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [9] : 68747470733a2f2f697066732e696f2f697066732f516d634a46756241746639
Arg [10] : 5343414d4665326b74614e4434754171774c38766e6f736f6851587854523737
Arg [11] : 7476330000000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
46655:1682:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48122:212;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;48122:212:0;;;;;;;;21717:100;;;:::i;:::-;;;;;;;:::i;23276:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1643:32:1;;;1625:51;;1613:2;1598:18;23276:221:0;1479:203:1;22799:411:0;;;;;;:::i;:::-;;:::i;:::-;;35460:113;35548:10;:17;35460:113;;;2270:25:1;;;2258:2;2243:18;35460:113:0;2124:177:1;24166:339:0;;;;;;:::i;:::-;;:::i;35128:256::-;;;;;;:::i;:::-;;:::i;24576:185::-;;;;;;:::i;:::-;;:::i;35650:233::-;;;;;;:::i;:::-;;:::i;21411:239::-;;;;;;:::i;:::-;;:::i;47537:166::-;;;;;;:::i;:::-;;:::i;46830:21::-;;;:::i;21141:208::-;;;;;;:::i;:::-;;:::i;44545:94::-;;;:::i;43894:87::-;43967:6;;-1:-1:-1;;;;;43967:6:0;43894:87;;21886:104;;;:::i;23569:295::-;;;;;;:::i;:::-;;:::i;24832:328::-;;;;;;:::i;:::-;;:::i;47152:223::-;;;;;;:::i;:::-;;:::i;47016:128::-;;;:::i;23935:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;24056:25:0;;;24032:4;24056:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23935:164;44794:192;;;;;;:::i;:::-;;:::i;48122:212::-;48261:4;48290:36;48314:11;48290:23;:36::i;:::-;48283:43;48122:212;-1:-1:-1;;48122:212:0:o;21717:100::-;21771:13;21804:5;21797:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21717:100;:::o;23276:221::-;23352:7;26759:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26759:16:0;23372:73;;;;-1:-1:-1;;;23372:73:0;;5309:2:1;23372:73:0;;;5291:21:1;5348:2;5328:18;;;5321:30;5387:34;5367:18;;;5360:62;-1:-1:-1;;;5438:18:1;;;5431:42;5490:19;;23372:73:0;;;;;;;;;-1:-1:-1;23465:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23465:24:0;;23276:221::o;22799:411::-;22880:13;22896:23;22911:7;22896:14;:23::i;:::-;22880:39;;22944:5;-1:-1:-1;;;;;22938:11:0;:2;-1:-1:-1;;;;;22938:11:0;;;22930:57;;;;-1:-1:-1;;;22930:57:0;;5722:2:1;22930:57:0;;;5704:21:1;5761:2;5741:18;;;5734:30;5800:34;5780:18;;;5773:62;-1:-1:-1;;;5851:18:1;;;5844:31;5892:19;;22930:57:0;5520:397:1;22930:57:0;16266:10;-1:-1:-1;;;;;23022:21:0;;;;:62;;-1:-1:-1;23047:37:0;23064:5;16266:10;23935:164;:::i;23047:37::-;23000:168;;;;-1:-1:-1;;;23000:168:0;;6124:2:1;23000:168:0;;;6106:21:1;6163:2;6143:18;;;6136:30;6202:34;6182:18;;;6175:62;6273:26;6253:18;;;6246:54;6317:19;;23000:168:0;5922:420:1;23000:168:0;23181:21;23190:2;23194:7;23181:8;:21::i;:::-;22869:341;22799:411;;:::o;24166:339::-;24361:41;16266:10;24394:7;24361:18;:41::i;:::-;24353:103;;;;-1:-1:-1;;;24353:103:0;;;;;;;:::i;:::-;24469:28;24479:4;24485:2;24489:7;24469:9;:28::i;35128:256::-;35225:7;35261:23;35278:5;35261:16;:23::i;:::-;35253:5;:31;35245:87;;;;-1:-1:-1;;;35245:87:0;;6967:2:1;35245:87:0;;;6949:21:1;7006:2;6986:18;;;6979:30;7045:34;7025:18;;;7018:62;-1:-1:-1;;;7096:18:1;;;7089:41;7147:19;;35245:87:0;6765:407:1;35245:87:0;-1:-1:-1;;;;;;35350:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35128:256::o;24576:185::-;24714:39;24731:4;24737:2;24741:7;24714:39;;;;;;;;;;;;:16;:39::i;35650:233::-;35725:7;35761:30;35548:10;:17;;35460:113;35761:30;35753:5;:38;35745:95;;;;-1:-1:-1;;;35745:95:0;;7379:2:1;35745:95:0;;;7361:21:1;7418:2;7398:18;;;7391:30;7457:34;7437:18;;;7430:62;-1:-1:-1;;;7508:18:1;;;7501:42;7560:19;;35745:95:0;7177:408:1;35745:95:0;35858:10;35869:5;35858:17;;;;;;;;:::i;:::-;;;;;;;;;35851:24;;35650:233;;;:::o;21411:239::-;21483:7;21519:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21519:16:0;21554:19;21546:73;;;;-1:-1:-1;;;21546:73:0;;7924:2:1;21546:73:0;;;7906:21:1;7963:2;7943:18;;;7936:30;8002:34;7982:18;;;7975:62;-1:-1:-1;;;8053:18:1;;;8046:39;8102:19;;21546:73:0;7722:405:1;47537:166:0;43967:6;;-1:-1:-1;;;;;43967:6:0;16266:10;44114:23;44106:68;;;;-1:-1:-1;;;44106:68:0;;;;;;;:::i;:::-;47617:40:::1;47627:2;47631:25;:15;46087:14:::0;;45995:114;47631:25:::1;47617:9;:40::i;:::-;47668:27;:15;46206:19:::0;;46224:1;46206:19;;;46117:127;47668:27:::1;47537:166:::0;:::o;46830:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21141:208::-;21213:7;-1:-1:-1;;;;;21241:19:0;;21233:74;;;;-1:-1:-1;;;21233:74:0;;8695:2:1;21233:74:0;;;8677:21:1;8734:2;8714:18;;;8707:30;8773:34;8753:18;;;8746:62;-1:-1:-1;;;8824:18:1;;;8817:40;8874:19;;21233:74:0;8493:406:1;21233:74:0;-1:-1:-1;;;;;;21325:16:0;;;;;:9;:16;;;;;;;21141:208::o;44545:94::-;43967:6;;-1:-1:-1;;;;;43967:6:0;16266:10;44114:23;44106:68;;;;-1:-1:-1;;;44106:68:0;;;;;;;:::i;:::-;44610:21:::1;44628:1;44610:9;:21::i;:::-;44545:94::o:0;21886:104::-;21942:13;21975:7;21968:14;;;;;:::i;23569:295::-;-1:-1:-1;;;;;23672:24:0;;16266:10;23672:24;;23664:62;;;;-1:-1:-1;;;23664:62:0;;9106:2:1;23664:62:0;;;9088:21:1;9145:2;9125:18;;;9118:30;9184:27;9164:18;;;9157:55;9229:18;;23664:62:0;8904:349:1;23664:62:0;16266:10;23739:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23739:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23739:53:0;;;;;;;;;;23808:48;;540:41:1;;;23739:42:0;;16266:10;23808:48;;513:18:1;23808:48:0;;;;;;;23569:295;;:::o;24832:328::-;25007:41;16266:10;25040:7;25007:18;:41::i;:::-;24999:103;;;;-1:-1:-1;;;24999:103:0;;;;;;;:::i;:::-;25113:39;25127:4;25133:2;25137:7;25146:5;25113:13;:39::i;:::-;24832:328;;;;:::o;47152:223::-;47279:13;47360:7;47353:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47152:223;;;:::o;47016:128::-;47090:13;47129:7;47122:14;;;;;:::i;44794:192::-;43967:6;;-1:-1:-1;;;;;43967:6:0;16266:10;44114:23;44106:68;;;;-1:-1:-1;;;44106:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44883:22:0;::::1;44875:73;;;::::0;-1:-1:-1;;;44875:73:0;;9460:2:1;44875:73:0::1;::::0;::::1;9442:21:1::0;9499:2;9479:18;;;9472:30;9538:34;9518:18;;;9511:62;-1:-1:-1;;;9589:18:1;;;9582:36;9635:19;;44875:73:0::1;9258:402:1::0;44875:73:0::1;44959:19;44969:8;44959:9;:19::i;34820:224::-:0;34922:4;-1:-1:-1;;;;;;34946:50:0;;-1:-1:-1;;;34946:50:0;;:90;;;35000:36;35024:11;35000:23;:36::i;30652:174::-;30727:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30727:29:0;-1:-1:-1;;;;;30727:29:0;;;;;;;;:24;;30781:23;30727:24;30781:14;:23::i;:::-;-1:-1:-1;;;;;30772:46:0;;;;;;;;;;;30652:174;;:::o;26964:348::-;27057:4;26759:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26759:16:0;27074:73;;;;-1:-1:-1;;;27074:73:0;;9867:2:1;27074:73:0;;;9849:21:1;9906:2;9886:18;;;9879:30;9945:34;9925:18;;;9918:62;-1:-1:-1;;;9996:18:1;;;9989:42;10048:19;;27074:73:0;9665:408:1;27074:73:0;27158:13;27174:23;27189:7;27174:14;:23::i;:::-;27158:39;;27227:5;-1:-1:-1;;;;;27216:16:0;:7;-1:-1:-1;;;;;27216:16:0;;:51;;;;27260:7;-1:-1:-1;;;;;27236:31:0;:20;27248:7;27236:11;:20::i;:::-;-1:-1:-1;;;;;27236:31:0;;27216:51;:87;;;-1:-1:-1;;;;;;24056:25:0;;;24032:4;24056:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27271:32;27208:96;26964:348;-1:-1:-1;;;;26964:348:0:o;29956:578::-;30115:4;-1:-1:-1;;;;;30088:31:0;:23;30103:7;30088:14;:23::i;:::-;-1:-1:-1;;;;;30088:31:0;;30080:85;;;;-1:-1:-1;;;30080:85:0;;10280:2:1;30080:85:0;;;10262:21:1;10319:2;10299:18;;;10292:30;10358:34;10338:18;;;10331:62;-1:-1:-1;;;10409:18:1;;;10402:39;10458:19;;30080:85:0;10078:405:1;30080:85:0;-1:-1:-1;;;;;30184:16:0;;30176:65;;;;-1:-1:-1;;;30176:65:0;;10690:2:1;30176:65:0;;;10672:21:1;10729:2;10709:18;;;10702:30;10768:34;10748:18;;;10741:62;-1:-1:-1;;;10819:18:1;;;10812:34;10863:19;;30176:65:0;10488:400:1;30176:65:0;30254:39;30275:4;30281:2;30285:7;30254:20;:39::i;:::-;30358:29;30375:1;30379:7;30358:8;:29::i;:::-;-1:-1:-1;;;;;30400:15:0;;;;;;:9;:15;;;;;:20;;30419:1;;30400:15;:20;;30419:1;;30400:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30431:13:0;;;;;;:9;:13;;;;;:18;;30448:1;;30431:13;:18;;30448:1;;30431:18;:::i;:::-;;;;-1:-1:-1;;30460:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30460:21:0;-1:-1:-1;;;;;30460:21:0;;;;;;;;;30499:27;;30460:16;;30499:27;;;;;;;29956:578;;;:::o;27654:110::-;27730:26;27740:2;27744:7;27730:26;;;;;;;;;;;;:9;:26::i;:::-;27654:110;;:::o;44994:173::-;45069:6;;;-1:-1:-1;;;;;45086:17:0;;;-1:-1:-1;;;;;;45086:17:0;;;;;;;45119:40;;45069:6;;;45086:17;45069:6;;45119:40;;45050:16;;45119:40;45039:128;44994:173;:::o;26042:315::-;26199:28;26209:4;26215:2;26219:7;26199:9;:28::i;:::-;26246:48;26269:4;26275:2;26279:7;26288:5;26246:22;:48::i;:::-;26238:111;;;;-1:-1:-1;;;26238:111:0;;;;;;;:::i;20772:305::-;20874:4;-1:-1:-1;;;;;;20911:40:0;;-1:-1:-1;;;20911:40:0;;:105;;-1:-1:-1;;;;;;;20968:48:0;;-1:-1:-1;;;20968:48:0;20911:105;:158;;;-1:-1:-1;;;;;;;;;;19383:40:0;;;21033:36;19274:157;47781:204;47932:45;47959:4;47965:2;47969:7;47932:26;:45::i;27991:321::-;28121:18;28127:2;28131:7;28121:5;:18::i;:::-;28172:54;28203:1;28207:2;28211:7;28220:5;28172:22;:54::i;:::-;28150:154;;;;-1:-1:-1;;;28150:154:0;;;;;;;:::i;31391:799::-;31546:4;-1:-1:-1;;;;;31567:13:0;;8549:20;8597:8;31563:620;;31603:72;;-1:-1:-1;;;31603:72:0;;-1:-1:-1;;;;;31603:36:0;;;;;:72;;16266:10;;31654:4;;31660:7;;31669:5;;31603:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31603:72:0;;;;;;;;-1:-1:-1;;31603:72:0;;;;;;;;;;;;:::i;:::-;;;31599:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31845:13:0;;31841:272;;31888:60;;-1:-1:-1;;;31888:60:0;;;;;;;:::i;31841:272::-;32063:6;32057:13;32048:6;32044:2;32040:15;32033:38;31599:529;-1:-1:-1;;;;;;31726:51:0;-1:-1:-1;;;31726:51:0;;-1:-1:-1;31719:58:0;;31563:620;-1:-1:-1;32167:4:0;31391:799;;;;;;:::o;36496:589::-;-1:-1:-1;;;;;36702:18:0;;36698:187;;36737:40;36769:7;37912:10;:17;;37885:24;;;;:15;:24;;;;;:44;;;37940:24;;;;;;;;;;;;37808:164;36737:40;36698:187;;;36807:2;-1:-1:-1;;;;;36799:10:0;:4;-1:-1:-1;;;;;36799:10:0;;36795:90;;36826:47;36859:4;36865:7;36826:32;:47::i;:::-;-1:-1:-1;;;;;36899:16:0;;36895:183;;36932:45;36969:7;36932:36;:45::i;36895:183::-;37005:4;-1:-1:-1;;;;;36999:10:0;:2;-1:-1:-1;;;;;36999:10:0;;36995:83;;37026:40;37054:2;37058:7;37026:27;:40::i;28648:382::-;-1:-1:-1;;;;;28728:16:0;;28720:61;;;;-1:-1:-1;;;28720:61:0;;12657:2:1;28720:61:0;;;12639:21:1;;;12676:18;;;12669:30;12735:34;12715:18;;;12708:62;12787:18;;28720:61:0;12455:356:1;28720:61:0;26735:4;26759:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26759:16:0;:30;28792:58;;;;-1:-1:-1;;;28792:58:0;;13018:2:1;28792:58:0;;;13000:21:1;13057:2;13037:18;;;13030:30;13096;13076:18;;;13069:58;13144:18;;28792:58:0;12816:352:1;28792:58:0;28863:45;28892:1;28896:2;28900:7;28863:20;:45::i;:::-;-1:-1:-1;;;;;28921:13:0;;;;;;:9;:13;;;;;:18;;28938:1;;28921:13;:18;;28938:1;;28921:18;:::i;:::-;;;;-1:-1:-1;;28950:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28950:21:0;-1:-1:-1;;;;;28950:21:0;;;;;;;;28989:33;;28950:16;;;28989:33;;28950:16;;28989:33;28648:382;;:::o;38599:988::-;38865:22;38915:1;38890:22;38907:4;38890:16;:22::i;:::-;:26;;;;:::i;:::-;38927:18;38948:26;;;:17;:26;;;;;;38865:51;;-1:-1:-1;39081:28:0;;;39077:328;;-1:-1:-1;;;;;39148:18:0;;39126:19;39148:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39199:30;;;;;;:44;;;39316:30;;:17;:30;;;;;:43;;;39077:328;-1:-1:-1;39501:26:0;;;;:17;:26;;;;;;;;39494:33;;;-1:-1:-1;;;;;39545:18:0;;;;;:12;:18;;;;;:34;;;;;;;39538:41;38599:988::o;39882:1079::-;40160:10;:17;40135:22;;40160:21;;40180:1;;40160:21;:::i;:::-;40192:18;40213:24;;;:15;:24;;;;;;40586:10;:26;;40135:46;;-1:-1:-1;40213:24:0;;40135:46;;40586:26;;;;;;:::i;:::-;;;;;;;;;40564:48;;40650:11;40625:10;40636;40625:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40730:28;;;:15;:28;;;;;;;:41;;;40902:24;;;;;40895:31;40937:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39953:1008;;;39882:1079;:::o;37386:221::-;37471:14;37488:20;37505:2;37488:16;:20::i;:::-;-1:-1:-1;;;;;37519:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37564:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37386:221:0:o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:472::-;634:3;672:5;666:12;699:6;694:3;687:19;724:1;734:162;748:6;745:1;742:13;734:162;;;810:4;866:13;;;862:22;;856:29;838:11;;;834:20;;827:59;763:12;734:162;;;914:6;911:1;908:13;905:87;;;980:1;973:4;964:6;959:3;955:16;951:27;944:38;905:87;-1:-1:-1;1046:2:1;1025:15;-1:-1:-1;;1021:29:1;1012:39;;;;1053:4;1008:50;;592:472;-1:-1:-1;;592:472:1:o;1069:220::-;1218:2;1207:9;1200:21;1181:4;1238:45;1279:2;1268:9;1264:18;1256:6;1238:45;:::i;1294:180::-;1353:6;1406:2;1394:9;1385:7;1381:23;1377:32;1374:52;;;1422:1;1419;1412:12;1374:52;-1:-1:-1;1445:23:1;;1294:180;-1:-1:-1;1294:180:1:o;1687:173::-;1755:20;;-1:-1:-1;;;;;1804:31:1;;1794:42;;1784:70;;1850:1;1847;1840:12;1784:70;1687:173;;;:::o;1865:254::-;1933:6;1941;1994:2;1982:9;1973:7;1969:23;1965:32;1962:52;;;2010:1;2007;2000:12;1962:52;2033:29;2052:9;2033:29;:::i;:::-;2023:39;2109:2;2094:18;;;;2081:32;;-1:-1:-1;;;1865:254:1:o;2306:328::-;2383:6;2391;2399;2452:2;2440:9;2431:7;2427:23;2423:32;2420:52;;;2468:1;2465;2458:12;2420:52;2491:29;2510:9;2491:29;:::i;:::-;2481:39;;2539:38;2573:2;2562:9;2558:18;2539:38;:::i;:::-;2529:48;;2624:2;2613:9;2609:18;2596:32;2586:42;;2306:328;;;;;:::o;2639:186::-;2698:6;2751:2;2739:9;2730:7;2726:23;2722:32;2719:52;;;2767:1;2764;2757:12;2719:52;2790:29;2809:9;2790:29;:::i;2830:347::-;2895:6;2903;2956:2;2944:9;2935:7;2931:23;2927:32;2924:52;;;2972:1;2969;2962:12;2924:52;2995:29;3014:9;2995:29;:::i;:::-;2985:39;;3074:2;3063:9;3059:18;3046:32;3121:5;3114:13;3107:21;3100:5;3097:32;3087:60;;3143:1;3140;3133:12;3087:60;3166:5;3156:15;;;2830:347;;;;;:::o;3182:127::-;3243:10;3238:3;3234:20;3231:1;3224:31;3274:4;3271:1;3264:15;3298:4;3295:1;3288:15;3314:1138;3409:6;3417;3425;3433;3486:3;3474:9;3465:7;3461:23;3457:33;3454:53;;;3503:1;3500;3493:12;3454:53;3526:29;3545:9;3526:29;:::i;:::-;3516:39;;3574:38;3608:2;3597:9;3593:18;3574:38;:::i;:::-;3564:48;;3659:2;3648:9;3644:18;3631:32;3621:42;;3714:2;3703:9;3699:18;3686:32;3737:18;3778:2;3770:6;3767:14;3764:34;;;3794:1;3791;3784:12;3764:34;3832:6;3821:9;3817:22;3807:32;;3877:7;3870:4;3866:2;3862:13;3858:27;3848:55;;3899:1;3896;3889:12;3848:55;3935:2;3922:16;3957:2;3953;3950:10;3947:36;;;3963:18;;:::i;:::-;4038:2;4032:9;4006:2;4092:13;;-1:-1:-1;;4088:22:1;;;4112:2;4084:31;4080:40;4068:53;;;4136:18;;;4156:22;;;4133:46;4130:72;;;4182:18;;:::i;:::-;4222:10;4218:2;4211:22;4257:2;4249:6;4242:18;4297:7;4292:2;4287;4283;4279:11;4275:20;4272:33;4269:53;;;4318:1;4315;4308:12;4269:53;4374:2;4369;4365;4361:11;4356:2;4348:6;4344:15;4331:46;4419:1;4414:2;4409;4401:6;4397:15;4393:24;4386:35;4440:6;4430:16;;;;;;;3314:1138;;;;;;;:::o;4457:260::-;4525:6;4533;4586:2;4574:9;4565:7;4561:23;4557:32;4554:52;;;4602:1;4599;4592:12;4554:52;4625:29;4644:9;4625:29;:::i;:::-;4615:39;;4673:38;4707:2;4696:9;4692:18;4673:38;:::i;:::-;4663:48;;4457:260;;;;;:::o;4722:380::-;4801:1;4797:12;;;;4844;;;4865:61;;4919:4;4911:6;4907:17;4897:27;;4865:61;4972:2;4964:6;4961:14;4941:18;4938:38;4935:161;;;5018:10;5013:3;5009:20;5006:1;4999:31;5053:4;5050:1;5043:15;5081:4;5078:1;5071:15;4935:161;;4722:380;;;:::o;6347:413::-;6549:2;6531:21;;;6588:2;6568:18;;;6561:30;6627:34;6622:2;6607:18;;6600:62;-1:-1:-1;;;6693:2:1;6678:18;;6671:47;6750:3;6735:19;;6347:413::o;7590:127::-;7651:10;7646:3;7642:20;7639:1;7632:31;7682:4;7679:1;7672:15;7706:4;7703:1;7696:15;8132:356;8334:2;8316:21;;;8353:18;;;8346:30;8412:34;8407:2;8392:18;;8385:62;8479:2;8464:18;;8132:356::o;10893:127::-;10954:10;10949:3;10945:20;10942:1;10935:31;10985:4;10982:1;10975:15;11009:4;11006:1;10999:15;11025:125;11065:4;11093:1;11090;11087:8;11084:34;;;11098:18;;:::i;:::-;-1:-1:-1;11135:9:1;;11025:125::o;11155:128::-;11195:3;11226:1;11222:6;11219:1;11216:13;11213:39;;;11232:18;;:::i;:::-;-1:-1:-1;11268:9:1;;11155:128::o;11288:414::-;11490:2;11472:21;;;11529:2;11509:18;;;11502:30;11568:34;11563:2;11548:18;;11541:62;-1:-1:-1;;;11634:2:1;11619:18;;11612:48;11692:3;11677:19;;11288:414::o;11707:489::-;-1:-1:-1;;;;;11976:15:1;;;11958:34;;12028:15;;12023:2;12008:18;;12001:43;12075:2;12060:18;;12053:34;;;12123:3;12118:2;12103:18;;12096:31;;;11901:4;;12144:46;;12170:19;;12162:6;12144:46;:::i;:::-;12136:54;11707:489;-1:-1:-1;;;;;;11707:489:1:o;12201:249::-;12270:6;12323:2;12311:9;12302:7;12298:23;12294:32;12291:52;;;12339:1;12336;12329:12;12291:52;12371:9;12365:16;12390:30;12414:5;12390:30;:::i;13173:127::-;13234:10;13229:3;13225:20;13222:1;13215:31;13265:4;13262:1;13255:15;13289:4;13286:1;13279:15
Swarm Source
ipfs://4a75b78221543fa49b33f13a63a29519158c86f4de4e782f2a8a7be7749ce69b