Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 262 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 15821429 | 787 days ago | IN | 0 ETH | 0.00073282 | ||||
Withdraw | 15673067 | 808 days ago | IN | 0 ETH | 0.00028511 | ||||
Public Mint | 15644174 | 812 days ago | IN | 0 ETH | 0.00090868 | ||||
Set Approval For... | 15638986 | 812 days ago | IN | 0 ETH | 0.00049613 | ||||
Public Mint | 15638449 | 812 days ago | IN | 0 ETH | 0.00069708 | ||||
Public Mint | 15638445 | 812 days ago | IN | 0 ETH | 0.00074942 | ||||
Public Mint | 15638422 | 812 days ago | IN | 0 ETH | 0.00098408 | ||||
Public Mint | 15637975 | 813 days ago | IN | 0 ETH | 0.00106266 | ||||
Public Mint | 15637557 | 813 days ago | IN | 0 ETH | 0.0010402 | ||||
Public Mint | 15637536 | 813 days ago | IN | 0 ETH | 0.00087762 | ||||
Public Mint | 15637523 | 813 days ago | IN | 0 ETH | 0.00112407 | ||||
Public Mint | 15637430 | 813 days ago | IN | 0 ETH | 0.00110231 | ||||
Public Mint | 15637338 | 813 days ago | IN | 0 ETH | 0.00099991 | ||||
Public Mint | 15637235 | 813 days ago | IN | 0 ETH | 0.00085315 | ||||
Public Mint | 15637235 | 813 days ago | IN | 0 ETH | 0.00090236 | ||||
Public Mint | 15637227 | 813 days ago | IN | 0 ETH | 0.00099071 | ||||
Public Mint | 15637052 | 813 days ago | IN | 0 ETH | 0.00095203 | ||||
Public Mint | 15636967 | 813 days ago | IN | 0 ETH | 0.00026345 | ||||
Public Mint | 15636867 | 813 days ago | IN | 0 ETH | 0.00096874 | ||||
Public Mint | 15636673 | 813 days ago | IN | 0.01 ETH | 0.00068765 | ||||
Public Mint | 15636664 | 813 days ago | IN | 0 ETH | 0.00105041 | ||||
Public Mint | 15636660 | 813 days ago | IN | 0.01 ETH | 0.00074668 | ||||
Public Mint | 15636606 | 813 days ago | IN | 0 ETH | 0.00088567 | ||||
Public Mint | 15636591 | 813 days ago | IN | 0 ETH | 0.00104141 | ||||
Public Mint | 15636543 | 813 days ago | IN | 0.001 ETH | 0.00085371 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
15673067 | 808 days ago | 0.378 ETH |
Loading...
Loading
Contract Name:
Space_Cats_Club
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-29 */ // SPDX-License-Identifier: MIT /** _____ _____ _ _____ _ _ / ____| / ____| | | / ____| | | | | (___ _ __ __ _ ___ ___ | | __ _| |_ ___ | | | |_ _| |__ \___ \| '_ \ / _` |/ __/ _ \ | | / _` | __/ __| | | | | | | | '_ \ ____) | |_) | (_| | (_| __/ | |___| (_| | |_\__ \ | |____| | |_| | |_) | |_____/| .__/ \__,_|\___\___| \_____\__,_|\__|___/ \_____|_|\__,_|_.__/ | | |_| */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (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/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (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() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (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/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (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/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (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`. * * 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; /** * @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 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (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); /** * @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/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (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: contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); 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 override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _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 { _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 { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; // if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/nft.sol contract Space_Cats_Club is ERC721A, Ownable { uint256 public immutable mintPrice = 0.001 ether; uint32 public immutable maxSupply = 5555; uint32 public immutable maxPerTx = 10; string public uriPrefix = "ipfs://QmZz9bxb98oBEyCNpsRTqrRuYBGhCfz4tcMqLLddLDijn1/"; mapping(address => bool) public freeMinted; modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } constructor() ERC721A ("Space Cats Club", "Space Cats Club") { } function _baseURI() internal view override(ERC721A) returns (string memory) { return uriPrefix; } function setUriPrefix(string memory uri) public onlyOwner { uriPrefix = uri; } function _startTokenId() internal view virtual override(ERC721A) returns (uint256) { return 0; } function publicMint(uint32 amount) public payable callerIsUser{ require(totalSupply() + amount <= maxSupply,"sold out"); require(amount <= maxPerTx,"exceed max amount"); if(freeMinted[msg.sender]) { require(msg.value >= amount * mintPrice,"insufficient"); } else { freeMinted[msg.sender] = true; require(msg.value >= (amount-1) * mintPrice,"insufficient"); } _safeMint(msg.sender, amount); } function getMintedFree() public view returns (bool){ return freeMinted[msg.sender]; } function withdraw() public onlyOwner { uint256 sendAmount = address(this).balance; address h = payable(msg.sender); bool success; (success, ) = h.call{value: sendAmount}(""); require(success, "Transaction Unsuccessful"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":[{"internalType":"address","name":"","type":"address"}],"name":"freeMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintedFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"uint32","name":"amount","type":"uint32"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":"uri","type":"string"}],"name":"setUriPrefix","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
66038d7ea4c680006080526115b360e01b60a052600560e11b60c052610140604052603660e08181529062001d69610100398051620000479160099160209091019062000120565b503480156200005557600080fd5b50604080518082018252600f8082526e29b830b1b29021b0ba399021b63ab160891b602080840182815285518087019096529285528401528151919291620000a09160029162000120565b508051620000b690600390602084019062000120565b50506000805550620000c833620000ce565b62000203565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012e90620001c6565b90600052602060002090601f0160209004810192826200015257600085556200019d565b82601f106200016d57805160ff19168380011785556200019d565b828001600101855582156200019d579182015b828111156200019d57825182559160200191906001019062000180565b50620001ab929150620001af565b5090565b5b80821115620001ab5760008155600101620001b0565b600181811c90821680620001db57607f821691505b60208210811415620001fd57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160e01c60c05160e01c611b1462000255600039600081816104fc0152610afd0152600081816104370152610a7f01526000818161030b01528181610b880152610c150152611b146000f3fe6080604052600436106101665760003560e01c80636e5cdc47116100d1578063b88d4fde1161008a578063e985e9c511610064578063e985e9c51461046e578063f151d791146104b7578063f2fde38b146104ca578063f968adbe146104ea57600080fd5b8063b88d4fde146103e5578063c87b56dd14610405578063d5abeb011461042557600080fd5b80636e5cdc471461032d57806370a08231146103525780637ec4a659146103725780638da5cb5b1461039257806395d89b41146103b0578063a22cb465146103c557600080fd5b8063389fcf0611610123578063389fcf061461025f5780633ccfd60b1461028f57806342842e0e146102a457806362b99ad4146102c45780636352211e146102d95780636817c76c146102f957600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806318160ddd1461021c57806323b872dd1461023f575b600080fd5b34801561017757600080fd5b5061018b6101863660046117e6565b61051e565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b5610570565b6040516101979190611940565b3480156101ce57600080fd5b506101e26101dd366004611869565b610602565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a6102153660046117bc565b610646565b005b34801561022857600080fd5b50600154600054035b604051908152602001610197565b34801561024b57600080fd5b5061021a61025a3660046116c8565b6106d4565b34801561026b57600080fd5b5061018b61027a36600461167a565b600a6020526000908152604090205460ff1681565b34801561029b57600080fd5b5061021a6106df565b3480156102b057600080fd5b5061021a6102bf3660046116c8565b61078a565b3480156102d057600080fd5b506101b56107a5565b3480156102e557600080fd5b506101e26102f4366004611869565b610833565b34801561030557600080fd5b506102317f000000000000000000000000000000000000000000000000000000000000000081565b34801561033957600080fd5b50336000908152600a602052604090205460ff1661018b565b34801561035e57600080fd5b5061023161036d36600461167a565b610845565b34801561037e57600080fd5b5061021a61038d366004611820565b610894565b34801561039e57600080fd5b506008546001600160a01b03166101e2565b3480156103bc57600080fd5b506101b56108b3565b3480156103d157600080fd5b5061021a6103e0366004611780565b6108c2565b3480156103f157600080fd5b5061021a610400366004611704565b610958565b34801561041157600080fd5b506101b5610420366004611869565b6109a9565b34801561043157600080fd5b506104597f000000000000000000000000000000000000000000000000000000000000000081565b60405163ffffffff9091168152602001610197565b34801561047a57600080fd5b5061018b610489366004611695565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61021a6104c5366004611882565b610a2e565b3480156104d657600080fd5b5061021a6104e536600461167a565b610ca0565b3480156104f657600080fd5b506104597f000000000000000000000000000000000000000000000000000000000000000081565b60006001600160e01b031982166380ac58cd60e01b148061054f57506001600160e01b03198216635b5e139f60e01b145b8061056a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461057f90611a06565b80601f01602080910402602001604051908101604052809291908181526020018280546105ab90611a06565b80156105f85780601f106105cd576101008083540402835291602001916105f8565b820191906000526020600020905b8154815290600101906020018083116105db57829003601f168201915b5050505050905090565b600061060d82610d16565b61062a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061065182610833565b9050806001600160a01b0316836001600160a01b031614156106865760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106a657506106a48133610489565b155b156106c4576040516367d9dca160e11b815260040160405180910390fd5b6106cf838383610d41565b505050565b6106cf838383610d9d565b6106e7610fb3565b60405147903390600090829084908381818185875af1925050503d806000811461072d576040519150601f19603f3d011682016040523d82523d6000602084013e610732565b606091505b505080915050806106cf5760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e20556e7375636365737366756c000000000000000060448201526064015b60405180910390fd5b6106cf83838360405180602001604052806000815250610958565b600980546107b290611a06565b80601f01602080910402602001604051908101604052809291908181526020018280546107de90611a06565b801561082b5780601f106108005761010080835404028352916020019161082b565b820191906000526020600020905b81548152906001019060200180831161080e57829003601f168201915b505050505081565b600061083e8261100f565b5192915050565b60006001600160a01b03821661086e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b61089c610fb3565b80516108af90600990602084019061154f565b5050565b60606003805461057f90611a06565b6001600160a01b0382163314156108ec5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610963848484610d9d565b6001600160a01b0383163b1515801561098557506109838484848461112b565b155b156109a3576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606109b482610d16565b6109d157604051630a14c4b560e41b815260040160405180910390fd5b60006109db611223565b90508051600014156109fc5760405180602001604052806000815250610a27565b80610a0684611232565b604051602001610a179291906118d4565b6040516020818303038152906040525b9392505050565b323314610a7d5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610781565b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff168163ffffffff16610ab86001546000540390565b610ac29190611953565b1115610afb5760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b6044820152606401610781565b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff168163ffffffff161115610b6b5760405162461bcd60e51b8152602060048201526011602482015270195e18d95959081b585e08185b5bdd5b9d607a1b6044820152606401610781565b336000908152600a602052604090205460ff1615610bf657610bb37f000000000000000000000000000000000000000000000000000000000000000063ffffffff831661197f565b341015610bf15760405162461bcd60e51b815260206004820152600c60248201526b1a5b9cdd59999a58da595b9d60a21b6044820152606401610781565b610c8d565b336000908152600a60205260409020805460ff191660019081179091557f000000000000000000000000000000000000000000000000000000000000000090610c3f90836119b5565b63ffffffff16610c4f919061197f565b341015610c8d5760405162461bcd60e51b815260206004820152600c60248201526b1a5b9cdd59999a58da595b9d60a21b6044820152606401610781565b610c9d338263ffffffff16611330565b50565b610ca8610fb3565b6001600160a01b038116610d0d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610781565b610c9d8161134a565b600080548210801561056a575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610da88261100f565b80519091506000906001600160a01b0316336001600160a01b03161480610dd657508151610dd69033610489565b80610df1575033610de684610602565b6001600160a01b0316145b905080610e1157604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610e465760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610e6d57604051633a954ecd60e21b815260040160405180910390fd5b610e7d6000848460000151610d41565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610f6957600054811015610f69578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6008546001600160a01b0316331461100d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610781565b565b60408051606081018252600080825260208201819052918101919091528160005481101561111257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906111105780516001600160a01b0316156110a6579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561110b579392505050565b6110a6565b505b604051636f96cda160e11b815260040160405180910390fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611160903390899088908890600401611903565b602060405180830381600087803b15801561117a57600080fd5b505af19250505080156111aa575060408051601f3d908101601f191682019092526111a791810190611803565b60015b611205573d8080156111d8576040519150601f19603f3d011682016040523d82523d6000602084013e6111dd565b606091505b5080516111fd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461057f90611a06565b6060816112565750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611280578061126a81611a41565b91506112799050600a8361196b565b915061125a565b60008167ffffffffffffffff81111561129b5761129b611ab2565b6040519080825280601f01601f1916602001820160405280156112c5576020820181803683370190505b5090505b841561121b576112da60018361199e565b91506112e7600a86611a5c565b6112f2906030611953565b60f81b81838151811061130757611307611a9c565b60200101906001600160f81b031916908160001a905350611329600a8661196b565b94506112c9565b6108af82826040518060200160405280600081525061139c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6106cf8383836001600054836113c55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561147757506001600160a01b0387163b15155b15611500575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46114c8600088848060010195508861112b565b6114e5576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561147d5782600054146114fb57600080fd5b611546565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611501575b50600055610fac565b82805461155b90611a06565b90600052602060002090601f01602090048101928261157d57600085556115c3565b82601f1061159657805160ff19168380011785556115c3565b828001600101855582156115c3579182015b828111156115c35782518255916020019190600101906115a8565b506115cf9291506115d3565b5090565b5b808211156115cf57600081556001016115d4565b600067ffffffffffffffff8084111561160357611603611ab2565b604051601f8501601f19908116603f0116810190828211818310171561162b5761162b611ab2565b8160405280935085815286868601111561164457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461167557600080fd5b919050565b60006020828403121561168c57600080fd5b610a278261165e565b600080604083850312156116a857600080fd5b6116b18361165e565b91506116bf6020840161165e565b90509250929050565b6000806000606084860312156116dd57600080fd5b6116e68461165e565b92506116f46020850161165e565b9150604084013590509250925092565b6000806000806080858703121561171a57600080fd5b6117238561165e565b93506117316020860161165e565b925060408501359150606085013567ffffffffffffffff81111561175457600080fd5b8501601f8101871361176557600080fd5b611774878235602084016115e8565b91505092959194509250565b6000806040838503121561179357600080fd5b61179c8361165e565b9150602083013580151581146117b157600080fd5b809150509250929050565b600080604083850312156117cf57600080fd5b6117d88361165e565b946020939093013593505050565b6000602082840312156117f857600080fd5b8135610a2781611ac8565b60006020828403121561181557600080fd5b8151610a2781611ac8565b60006020828403121561183257600080fd5b813567ffffffffffffffff81111561184957600080fd5b8201601f8101841361185a57600080fd5b61121b848235602084016115e8565b60006020828403121561187b57600080fd5b5035919050565b60006020828403121561189457600080fd5b813563ffffffff81168114610a2757600080fd5b600081518084526118c08160208601602086016119da565b601f01601f19169290920160200192915050565b600083516118e68184602088016119da565b8351908301906118fa8183602088016119da565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611936908301846118a8565b9695505050505050565b602081526000610a2760208301846118a8565b6000821982111561196657611966611a70565b500190565b60008261197a5761197a611a86565b500490565b600081600019048311821515161561199957611999611a70565b500290565b6000828210156119b0576119b0611a70565b500390565b600063ffffffff838116908316818110156119d2576119d2611a70565b039392505050565b60005b838110156119f55781810151838201526020016119dd565b838111156109a35750506000910152565b600181811c90821680611a1a57607f821691505b60208210811415611a3b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a5557611a55611a70565b5060010190565b600082611a6b57611a6b611a86565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c9d57600080fdfea2646970667358221220eaa2c7948253793d30dce64671fdc09d952e48efb7db91012743dd0f21f9194764736f6c63430008070033697066733a2f2f516d5a7a3962786239386f424579434e70735254717252755942476843667a3474634d714c4c64644c44696a6e312f
Deployed Bytecode
0x6080604052600436106101665760003560e01c80636e5cdc47116100d1578063b88d4fde1161008a578063e985e9c511610064578063e985e9c51461046e578063f151d791146104b7578063f2fde38b146104ca578063f968adbe146104ea57600080fd5b8063b88d4fde146103e5578063c87b56dd14610405578063d5abeb011461042557600080fd5b80636e5cdc471461032d57806370a08231146103525780637ec4a659146103725780638da5cb5b1461039257806395d89b41146103b0578063a22cb465146103c557600080fd5b8063389fcf0611610123578063389fcf061461025f5780633ccfd60b1461028f57806342842e0e146102a457806362b99ad4146102c45780636352211e146102d95780636817c76c146102f957600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806318160ddd1461021c57806323b872dd1461023f575b600080fd5b34801561017757600080fd5b5061018b6101863660046117e6565b61051e565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b5610570565b6040516101979190611940565b3480156101ce57600080fd5b506101e26101dd366004611869565b610602565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a6102153660046117bc565b610646565b005b34801561022857600080fd5b50600154600054035b604051908152602001610197565b34801561024b57600080fd5b5061021a61025a3660046116c8565b6106d4565b34801561026b57600080fd5b5061018b61027a36600461167a565b600a6020526000908152604090205460ff1681565b34801561029b57600080fd5b5061021a6106df565b3480156102b057600080fd5b5061021a6102bf3660046116c8565b61078a565b3480156102d057600080fd5b506101b56107a5565b3480156102e557600080fd5b506101e26102f4366004611869565b610833565b34801561030557600080fd5b506102317f00000000000000000000000000000000000000000000000000038d7ea4c6800081565b34801561033957600080fd5b50336000908152600a602052604090205460ff1661018b565b34801561035e57600080fd5b5061023161036d36600461167a565b610845565b34801561037e57600080fd5b5061021a61038d366004611820565b610894565b34801561039e57600080fd5b506008546001600160a01b03166101e2565b3480156103bc57600080fd5b506101b56108b3565b3480156103d157600080fd5b5061021a6103e0366004611780565b6108c2565b3480156103f157600080fd5b5061021a610400366004611704565b610958565b34801561041157600080fd5b506101b5610420366004611869565b6109a9565b34801561043157600080fd5b506104597f00000000000000000000000000000000000000000000000000000000000015b381565b60405163ffffffff9091168152602001610197565b34801561047a57600080fd5b5061018b610489366004611695565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61021a6104c5366004611882565b610a2e565b3480156104d657600080fd5b5061021a6104e536600461167a565b610ca0565b3480156104f657600080fd5b506104597f000000000000000000000000000000000000000000000000000000000000000a81565b60006001600160e01b031982166380ac58cd60e01b148061054f57506001600160e01b03198216635b5e139f60e01b145b8061056a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461057f90611a06565b80601f01602080910402602001604051908101604052809291908181526020018280546105ab90611a06565b80156105f85780601f106105cd576101008083540402835291602001916105f8565b820191906000526020600020905b8154815290600101906020018083116105db57829003601f168201915b5050505050905090565b600061060d82610d16565b61062a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061065182610833565b9050806001600160a01b0316836001600160a01b031614156106865760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106a657506106a48133610489565b155b156106c4576040516367d9dca160e11b815260040160405180910390fd5b6106cf838383610d41565b505050565b6106cf838383610d9d565b6106e7610fb3565b60405147903390600090829084908381818185875af1925050503d806000811461072d576040519150601f19603f3d011682016040523d82523d6000602084013e610732565b606091505b505080915050806106cf5760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e20556e7375636365737366756c000000000000000060448201526064015b60405180910390fd5b6106cf83838360405180602001604052806000815250610958565b600980546107b290611a06565b80601f01602080910402602001604051908101604052809291908181526020018280546107de90611a06565b801561082b5780601f106108005761010080835404028352916020019161082b565b820191906000526020600020905b81548152906001019060200180831161080e57829003601f168201915b505050505081565b600061083e8261100f565b5192915050565b60006001600160a01b03821661086e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b61089c610fb3565b80516108af90600990602084019061154f565b5050565b60606003805461057f90611a06565b6001600160a01b0382163314156108ec5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610963848484610d9d565b6001600160a01b0383163b1515801561098557506109838484848461112b565b155b156109a3576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606109b482610d16565b6109d157604051630a14c4b560e41b815260040160405180910390fd5b60006109db611223565b90508051600014156109fc5760405180602001604052806000815250610a27565b80610a0684611232565b604051602001610a179291906118d4565b6040516020818303038152906040525b9392505050565b323314610a7d5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610781565b7f00000000000000000000000000000000000000000000000000000000000015b363ffffffff168163ffffffff16610ab86001546000540390565b610ac29190611953565b1115610afb5760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b6044820152606401610781565b7f000000000000000000000000000000000000000000000000000000000000000a63ffffffff168163ffffffff161115610b6b5760405162461bcd60e51b8152602060048201526011602482015270195e18d95959081b585e08185b5bdd5b9d607a1b6044820152606401610781565b336000908152600a602052604090205460ff1615610bf657610bb37f00000000000000000000000000000000000000000000000000038d7ea4c6800063ffffffff831661197f565b341015610bf15760405162461bcd60e51b815260206004820152600c60248201526b1a5b9cdd59999a58da595b9d60a21b6044820152606401610781565b610c8d565b336000908152600a60205260409020805460ff191660019081179091557f00000000000000000000000000000000000000000000000000038d7ea4c6800090610c3f90836119b5565b63ffffffff16610c4f919061197f565b341015610c8d5760405162461bcd60e51b815260206004820152600c60248201526b1a5b9cdd59999a58da595b9d60a21b6044820152606401610781565b610c9d338263ffffffff16611330565b50565b610ca8610fb3565b6001600160a01b038116610d0d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610781565b610c9d8161134a565b600080548210801561056a575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610da88261100f565b80519091506000906001600160a01b0316336001600160a01b03161480610dd657508151610dd69033610489565b80610df1575033610de684610602565b6001600160a01b0316145b905080610e1157604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610e465760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610e6d57604051633a954ecd60e21b815260040160405180910390fd5b610e7d6000848460000151610d41565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610f6957600054811015610f69578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6008546001600160a01b0316331461100d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610781565b565b60408051606081018252600080825260208201819052918101919091528160005481101561111257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906111105780516001600160a01b0316156110a6579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561110b579392505050565b6110a6565b505b604051636f96cda160e11b815260040160405180910390fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611160903390899088908890600401611903565b602060405180830381600087803b15801561117a57600080fd5b505af19250505080156111aa575060408051601f3d908101601f191682019092526111a791810190611803565b60015b611205573d8080156111d8576040519150601f19603f3d011682016040523d82523d6000602084013e6111dd565b606091505b5080516111fd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461057f90611a06565b6060816112565750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611280578061126a81611a41565b91506112799050600a8361196b565b915061125a565b60008167ffffffffffffffff81111561129b5761129b611ab2565b6040519080825280601f01601f1916602001820160405280156112c5576020820181803683370190505b5090505b841561121b576112da60018361199e565b91506112e7600a86611a5c565b6112f2906030611953565b60f81b81838151811061130757611307611a9c565b60200101906001600160f81b031916908160001a905350611329600a8661196b565b94506112c9565b6108af82826040518060200160405280600081525061139c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6106cf8383836001600054836113c55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561147757506001600160a01b0387163b15155b15611500575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46114c8600088848060010195508861112b565b6114e5576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561147d5782600054146114fb57600080fd5b611546565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611501575b50600055610fac565b82805461155b90611a06565b90600052602060002090601f01602090048101928261157d57600085556115c3565b82601f1061159657805160ff19168380011785556115c3565b828001600101855582156115c3579182015b828111156115c35782518255916020019190600101906115a8565b506115cf9291506115d3565b5090565b5b808211156115cf57600081556001016115d4565b600067ffffffffffffffff8084111561160357611603611ab2565b604051601f8501601f19908116603f0116810190828211818310171561162b5761162b611ab2565b8160405280935085815286868601111561164457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461167557600080fd5b919050565b60006020828403121561168c57600080fd5b610a278261165e565b600080604083850312156116a857600080fd5b6116b18361165e565b91506116bf6020840161165e565b90509250929050565b6000806000606084860312156116dd57600080fd5b6116e68461165e565b92506116f46020850161165e565b9150604084013590509250925092565b6000806000806080858703121561171a57600080fd5b6117238561165e565b93506117316020860161165e565b925060408501359150606085013567ffffffffffffffff81111561175457600080fd5b8501601f8101871361176557600080fd5b611774878235602084016115e8565b91505092959194509250565b6000806040838503121561179357600080fd5b61179c8361165e565b9150602083013580151581146117b157600080fd5b809150509250929050565b600080604083850312156117cf57600080fd5b6117d88361165e565b946020939093013593505050565b6000602082840312156117f857600080fd5b8135610a2781611ac8565b60006020828403121561181557600080fd5b8151610a2781611ac8565b60006020828403121561183257600080fd5b813567ffffffffffffffff81111561184957600080fd5b8201601f8101841361185a57600080fd5b61121b848235602084016115e8565b60006020828403121561187b57600080fd5b5035919050565b60006020828403121561189457600080fd5b813563ffffffff81168114610a2757600080fd5b600081518084526118c08160208601602086016119da565b601f01601f19169290920160200192915050565b600083516118e68184602088016119da565b8351908301906118fa8183602088016119da565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611936908301846118a8565b9695505050505050565b602081526000610a2760208301846118a8565b6000821982111561196657611966611a70565b500190565b60008261197a5761197a611a86565b500490565b600081600019048311821515161561199957611999611a70565b500290565b6000828210156119b0576119b0611a70565b500390565b600063ffffffff838116908316818110156119d2576119d2611a70565b039392505050565b60005b838110156119f55781810151838201526020016119dd565b838111156109a35750506000910152565b600181811c90821680611a1a57607f821691505b60208210811415611a3b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a5557611a55611a70565b5060010190565b600082611a6b57611a6b611a86565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c9d57600080fdfea2646970667358221220eaa2c7948253793d30dce64671fdc09d952e48efb7db91012743dd0f21f9194764736f6c63430008070033
Deployed Bytecode Sourcemap
46604:1812:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29108:305;;;;;;;;;;-1:-1:-1;29108:305:0;;;;;:::i;:::-;;:::i;:::-;;;6137:14:1;;6130:22;6112:41;;6100:2;6085:18;29108:305:0;;;;;;;;32493:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33996:204::-;;;;;;;;;;-1:-1:-1;33996:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5435:32:1;;;5417:51;;5405:2;5390:18;33996:204:0;5271:203:1;33559:371:0;;;;;;;;;;-1:-1:-1;33559:371:0;;;;;:::i;:::-;;:::i;:::-;;28357:303;;;;;;;;;;-1:-1:-1;28611:12:0;;28401:7;28595:13;:28;28357:303;;;9037:25:1;;;9025:2;9010:18;28357:303:0;8891:177:1;34853:170:0;;;;;;;;;;-1:-1:-1;34853:170:0;;;;;:::i;:::-;;:::i;46900:42::-;;;;;;;;;;-1:-1:-1;46900:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;48135:278;;;;;;;;;;;;;:::i;35094:185::-;;;;;;;;;;-1:-1:-1;35094:185:0;;;;;:::i;:::-;;:::i;46810:83::-;;;;;;;;;;;;;:::i;32302:124::-;;;;;;;;;;-1:-1:-1;32302:124:0;;;;;:::i;:::-;;:::i;46662:48::-;;;;;;;;;;;;;;;48028:99;;;;;;;;;;-1:-1:-1;48108:10:0;48074:4;48097:22;;;:10;:22;;;;;;;;48028:99;;29477:206;;;;;;;;;;-1:-1:-1;29477:206:0;;;;;:::i;:::-;;:::i;47281:92::-;;;;;;;;;;-1:-1:-1;47281:92:0;;;;;:::i;:::-;;:::i;5295:87::-;;;;;;;;;;-1:-1:-1;5368:6:0;;-1:-1:-1;;;;;5368:6:0;5295:87;;32662:104;;;;;;;;;;;;;:::i;34272:279::-;;;;;;;;;;-1:-1:-1;34272:279:0;;;;;:::i;:::-;;:::i;35350:369::-;;;;;;;;;;-1:-1:-1;35350:369:0;;;;;:::i;:::-;;:::i;32837:318::-;;;;;;;;;;-1:-1:-1;32837:318:0;;;;;:::i;:::-;;:::i;46717:40::-;;;;;;;;;;;;;;;;;;9247:10:1;9235:23;;;9217:42;;9205:2;9190:18;46717:40:0;9073:192:1;34622:164:0;;;;;;;;;;-1:-1:-1;34622:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34743:25:0;;;34719:4;34743:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34622:164;47503:517;;;;;;:::i;:::-;;:::i;5747:201::-;;;;;;;;;;-1:-1:-1;5747:201:0;;;;;:::i;:::-;;:::i;46764:37::-;;;;;;;;;;;;;;;29108:305;29210:4;-1:-1:-1;;;;;;29247:40:0;;-1:-1:-1;;;29247:40:0;;:105;;-1:-1:-1;;;;;;;29304:48:0;;-1:-1:-1;;;29304:48:0;29247:105;:158;;;-1:-1:-1;;;;;;;;;;17804:40:0;;;29369:36;29227:178;29108:305;-1:-1:-1;;29108:305:0:o;32493:100::-;32547:13;32580:5;32573:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32493:100;:::o;33996:204::-;34064:7;34089:16;34097:7;34089;:16::i;:::-;34084:64;;34114:34;;-1:-1:-1;;;34114:34:0;;;;;;;;;;;34084:64;-1:-1:-1;34168:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34168:24:0;;33996:204::o;33559:371::-;33632:13;33648:24;33664:7;33648:15;:24::i;:::-;33632:40;;33693:5;-1:-1:-1;;;;;33687:11:0;:2;-1:-1:-1;;;;;33687:11:0;;33683:48;;;33707:24;;-1:-1:-1;;;33707:24:0;;;;;;;;;;;33683:48;3926:10;-1:-1:-1;;;;;33748:21:0;;;;;;:63;;-1:-1:-1;33774:37:0;33791:5;3926:10;34622:164;:::i;33774:37::-;33773:38;33748:63;33744:138;;;33835:35;;-1:-1:-1;;;33835:35:0;;;;;;;;;;;33744:138;33894:28;33903:2;33907:7;33916:5;33894:8;:28::i;:::-;33621:309;33559:371;;:::o;34853:170::-;34987:28;34997:4;35003:2;35007:7;34987:9;:28::i;48135:278::-;5181:13;:11;:13::i;:::-;48321:29:::1;::::0;48204:21:::1;::::0;48258:10:::1;::::0;48183:18:::1;::::0;48258:10;;48204:21;;48183:18;48321:29;48183:18;48321:29;48204:21;48258:10;48321:29:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48307:43;;;;;48369:7;48361:44;;;::::0;-1:-1:-1;;;48361:44:0;;7338:2:1;48361:44:0::1;::::0;::::1;7320:21:1::0;7377:2;7357:18;;;7350:30;7416:26;7396:18;;;7389:54;7460:18;;48361:44:0::1;;;;;;;;35094:185:::0;35232:39;35249:4;35255:2;35259:7;35232:39;;;;;;;;;;;;:16;:39::i;46810:83::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32302:124::-;32366:7;32393:20;32405:7;32393:11;:20::i;:::-;:25;;32302:124;-1:-1:-1;;32302:124:0:o;29477:206::-;29541:7;-1:-1:-1;;;;;29565:19:0;;29561:60;;29593:28;;-1:-1:-1;;;29593:28:0;;;;;;;;;;;29561:60;-1:-1:-1;;;;;;29647:19:0;;;;;:12;:19;;;;;:27;;;;29477:206::o;47281:92::-;5181:13;:11;:13::i;:::-;47350:15;;::::1;::::0;:9:::1;::::0;:15:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47281:92:::0;:::o;32662:104::-;32718:13;32751:7;32744:14;;;;;:::i;34272:279::-;-1:-1:-1;;;;;34363:24:0;;3926:10;34363:24;34359:54;;;34396:17;;-1:-1:-1;;;34396:17:0;;;;;;;;;;;34359:54;3926:10;34426:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34426:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34426:53:0;;;;;;;;;;34495:48;;6112:41:1;;;34426:42:0;;3926:10;34495:48;;6085:18:1;34495:48:0;;;;;;;34272:279;;:::o;35350:369::-;35517:28;35527:4;35533:2;35537:7;35517:9;:28::i;:::-;-1:-1:-1;;;;;35560:13:0;;7834:19;:23;;35560:76;;;;;35580:56;35611:4;35617:2;35621:7;35630:5;35580:30;:56::i;:::-;35579:57;35560:76;35556:156;;;35660:40;;-1:-1:-1;;;35660:40:0;;;;;;;;;;;35556:156;35350:369;;;;:::o;32837:318::-;32910:13;32941:16;32949:7;32941;:16::i;:::-;32936:59;;32966:29;;-1:-1:-1;;;32966:29:0;;;;;;;;;;;32936:59;33008:21;33032:10;:8;:10::i;:::-;33008:34;;33066:7;33060:21;33085:1;33060:26;;:87;;;;;;;;;;;;;;;;;33113:7;33122:18;:7;:16;:18::i;:::-;33096:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33060:87;33053:94;32837:318;-1:-1:-1;;;32837:318:0:o;47503:517::-;46994:9;47007:10;46994:23;46986:66;;;;-1:-1:-1;;;46986:66:0;;8027:2:1;46986:66:0;;;8009:21:1;8066:2;8046:18;;;8039:30;8105:32;8085:18;;;8078:60;8155:18;;46986:66:0;7825:354:1;46986:66:0;47610:9:::1;47584:35;;47600:6;47584:22;;:13;28611:12:::0;;28401:7;28595:13;:28;;28357:303;47584:13:::1;:22;;;;:::i;:::-;:35;;47576:55;;;::::0;-1:-1:-1;;;47576:55:0;;7691:2:1;47576:55:0::1;::::0;::::1;7673:21:1::0;7730:1;7710:18;;;7703:29;-1:-1:-1;;;7748:18:1;;;7741:38;7796:18;;47576:55:0::1;7489:331:1::0;47576:55:0::1;47660:8;47650:18;;:6;:18;;;;47642:47;;;::::0;-1:-1:-1;;;47642:47:0;;8747:2:1;47642:47:0::1;::::0;::::1;8729:21:1::0;8786:2;8766:18;;;8759:30;-1:-1:-1;;;8805:18:1;;;8798:47;8862:18;;47642:47:0::1;8545:341:1::0;47642:47:0::1;47714:10;47703:22;::::0;;;:10:::1;:22;::::0;;;;;::::1;;47700:273;;;47772:18;47781:9;47772:18;::::0;::::1;;:::i;:::-;47759:9;:31;;47751:55;;;::::0;-1:-1:-1;;;47751:55:0;;6590:2:1;47751:55:0::1;::::0;::::1;6572:21:1::0;6629:2;6609:18;;;6602:30;-1:-1:-1;;;6648:18:1;;;6641:42;6700:18;;47751:55:0::1;6388:336:1::0;47751:55:0::1;47700:273;;;47869:10;47858:22;::::0;;;:10:::1;:22;::::0;;;;:29;;-1:-1:-1;;47858:29:0::1;47883:4;47858:29:::0;;::::1;::::0;;;47936:9:::1;::::0;47924:8:::1;::::0;:6;:8:::1;:::i;:::-;47923:22;;;;;;:::i;:::-;47910:9;:35;;47902:59;;;::::0;-1:-1:-1;;;47902:59:0;;6590:2:1;47902:59:0::1;::::0;::::1;6572:21:1::0;6629:2;6609:18;;;6602:30;-1:-1:-1;;;6648:18:1;;;6641:42;6700:18;;47902:59:0::1;6388:336:1::0;47902:59:0::1;47983:29;47993:10;48005:6;47983:29;;:9;:29::i;:::-;47503:517:::0;:::o;5747:201::-;5181:13;:11;:13::i;:::-;-1:-1:-1;;;;;5836:22:0;::::1;5828:73;;;::::0;-1:-1:-1;;;5828:73:0;;6931:2:1;5828:73:0::1;::::0;::::1;6913:21:1::0;6970:2;6950:18;;;6943:30;7009:34;6989:18;;;6982:62;-1:-1:-1;;;7060:18:1;;;7053:36;7106:19;;5828:73:0::1;6729:402:1::0;5828:73:0::1;5912:28;5931:8;5912:18;:28::i;35974:187::-:0;36031:4;36095:13;;36085:7;:23;36055:98;;;;-1:-1:-1;;36126:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36126:27:0;;;;36125:28;;35974:187::o;43588:196::-;43703:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43703:29:0;-1:-1:-1;;;;;43703:29:0;;;;;;;;;43748:28;;43703:24;;43748:28;;;;;;;43588:196;;;:::o;39090:2112::-;39205:35;39243:20;39255:7;39243:11;:20::i;:::-;39318:18;;39205:58;;-1:-1:-1;39276:22:0;;-1:-1:-1;;;;;39302:34:0;3926:10;-1:-1:-1;;;;;39302:34:0;;:101;;;-1:-1:-1;39370:18:0;;39353:50;;3926:10;34622:164;:::i;39353:50::-;39302:154;;;-1:-1:-1;3926:10:0;39420:20;39432:7;39420:11;:20::i;:::-;-1:-1:-1;;;;;39420:36:0;;39302:154;39276:181;;39475:17;39470:66;;39501:35;;-1:-1:-1;;;39501:35:0;;;;;;;;;;;39470:66;39573:4;-1:-1:-1;;;;;39551:26:0;:13;:18;;;-1:-1:-1;;;;;39551:26:0;;39547:67;;39586:28;;-1:-1:-1;;;39586:28:0;;;;;;;;;;;39547:67;-1:-1:-1;;;;;39629:16:0;;39625:52;;39654:23;;-1:-1:-1;;;39654:23:0;;;;;;;;;;;39625:52;39798:49;39815:1;39819:7;39828:13;:18;;;39798:8;:49::i;:::-;-1:-1:-1;;;;;40143:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40143:31:0;;;;;;;-1:-1:-1;;40143:31:0;;;;;;;40189:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40189:29:0;;;;;;;;;;;40235:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;40280:61:0;;;;-1:-1:-1;;;40325:15:0;40280:61;;;;;;;;;;;40615:11;;;40645:24;;;;;:29;40615:11;;40645:29;40641:445;;40870:13;;40856:11;:27;40852:219;;;40940:18;;;40908:24;;;:11;:24;;;;;;;;:50;;41023:28;;;;40981:70;;-1:-1:-1;;;40981:70:0;-1:-1:-1;;;;;;40981:70:0;;;-1:-1:-1;;;;;40908:50:0;;;40981:70;;;;;;;40852:219;40118:979;41133:7;41129:2;-1:-1:-1;;;;;41114:27:0;41123:4;-1:-1:-1;;;;;41114:27:0;;;;;;;;;;;41152:42;39194:2008;;39090:2112;;;:::o;5460:132::-;5368:6;;-1:-1:-1;;;;;5368:6:0;3926:10;5524:23;5516:68;;;;-1:-1:-1;;;5516:68:0;;8386:2:1;5516:68:0;;;8368:21:1;;;8405:18;;;8398:30;8464:34;8444:18;;;8437:62;8516:18;;5516:68:0;8184:356:1;5516:68:0;5460:132::o;31132:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;31242:7:0;31325:13;;31318:4;:20;31287:886;;;31359:31;31393:17;;;:11;:17;;;;;;;;;31359:51;;;;;;;;;-1:-1:-1;;;;;31359:51:0;;;;-1:-1:-1;;;31359:51:0;;;;;;;;;;;-1:-1:-1;;;31359:51:0;;;;;;;;;;;;;;31429:729;;31479:14;;-1:-1:-1;;;;;31479:28:0;;31475:101;;31543:9;31132:1108;-1:-1:-1;;;31132:1108:0:o;31475:101::-;-1:-1:-1;;;31918:6:0;31963:17;;;;:11;:17;;;;;;;;;31951:29;;;;;;;;;-1:-1:-1;;;;;31951:29:0;;;;;-1:-1:-1;;;31951:29:0;;;;;;;;;;;-1:-1:-1;;;31951:29:0;;;;;;;;;;;;;32011:28;32007:109;;32079:9;31132:1108;-1:-1:-1;;;31132:1108:0:o;32007:109::-;31878:261;;;31340:833;31287:886;32201:31;;-1:-1:-1;;;32201:31:0;;;;;;;;;;;44276:667;44460:72;;-1:-1:-1;;;44460:72:0;;44439:4;;-1:-1:-1;;;;;44460:36:0;;;;;:72;;3926:10;;44511:4;;44517:7;;44526:5;;44460:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44460:72:0;;;;;;;;-1:-1:-1;;44460:72:0;;;;;;;;;;;;:::i;:::-;;;44456:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44694:13:0;;44690:235;;44740:40;;-1:-1:-1;;;44740:40:0;;;;;;;;;;;44690:235;44883:6;44877:13;44868:6;44864:2;44860:15;44853:38;44456:480;-1:-1:-1;;;;;;44579:55:0;-1:-1:-1;;;44579:55:0;;-1:-1:-1;44456:480:0;44276:667;;;;;;:::o;47162:111::-;47223:13;47256:9;47249:16;;;;;:::i;1100:723::-;1156:13;1377:10;1373:53;;-1:-1:-1;;1404:10:0;;;;;;;;;;;;-1:-1:-1;;;1404:10:0;;;;;1100:723::o;1373:53::-;1451:5;1436:12;1492:78;1499:9;;1492:78;;1525:8;;;;:::i;:::-;;-1:-1:-1;1548:10:0;;-1:-1:-1;1556:2:0;1548:10;;:::i;:::-;;;1492:78;;;1580:19;1612:6;1602:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1602:17:0;;1580:39;;1630:154;1637:10;;1630:154;;1664:11;1674:1;1664:11;;:::i;:::-;;-1:-1:-1;1733:10:0;1741:2;1733:5;:10;:::i;:::-;1720:24;;:2;:24;:::i;:::-;1707:39;;1690:6;1697;1690:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1690:56:0;;;;;;;;-1:-1:-1;1761:11:0;1770:2;1761:11;;:::i;:::-;;;1630:154;;36169:104;36238:27;36248:2;36252:8;36238:27;;;;;;;;;;;;:9;:27::i;6108:191::-;6201:6;;;-1:-1:-1;;;;;6218:17:0;;;-1:-1:-1;;;;;;6218:17:0;;;;;;;6251:40;;6201:6;;;6218:17;6201:6;;6251:40;;6182:16;;6251:40;6171:128;6108:191;:::o;36636:163::-;36759:32;36765:2;36769:8;36779:5;36786:4;37197:20;37220:13;37310;37306:44;;37332:18;;-1:-1:-1;;;37332:18:0;;;;;;;;;;;37306:44;-1:-1:-1;;;;;37701:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;37760:49:0;;37701:44;;;;;;;;37760:49;;;;-1:-1:-1;;37701:44:0;;;;;;37760:49;;;;;;;;;;;;;;;;37826:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;37876:66:0;;;;-1:-1:-1;;;37926:15:0;37876:66;;;;;;;;;;37826:25;38023:23;;;38067:4;:23;;;;-1:-1:-1;;;;;;38075:13:0;;7834:19;:23;;38075:15;38063:641;;;38111:314;38142:38;;38167:12;;-1:-1:-1;;;;;38142:38:0;;;38159:1;;38142:38;;38159:1;;38142:38;38208:69;38247:1;38251:2;38255:14;;;;;;38271:5;38208:30;:69::i;:::-;38203:174;;38313:40;;-1:-1:-1;;;38313:40:0;;;;;;;;;;;38203:174;38420:3;38404:12;:19;;38111:314;;38506:12;38489:13;;:29;38485:43;;38520:8;;;38485:43;38063:641;;;38569:120;38600:40;;38625:14;;;;;-1:-1:-1;;;;;38600:40:0;;;38617:1;;38600:40;;38617:1;;38600:40;38684:3;38668:12;:19;;38569:120;;38063:641;-1:-1:-1;38718:13:0;:28;38768:60;35350:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;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:72;;;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:45;;;532:1;529;522:12;491:45;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;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:276::-;4101:6;4154:2;4142:9;4133:7;4129:23;4125:32;4122:52;;;4170:1;4167;4160:12;4122:52;4209:9;4196:23;4259:10;4252:5;4248:22;4241:5;4238:33;4228:61;;4285:1;4282;4275:12;4324:257;4365:3;4403:5;4397:12;4430:6;4425:3;4418:19;4446:63;4502:6;4495:4;4490:3;4486:14;4479:4;4472:5;4468:16;4446:63;:::i;:::-;4563:2;4542:15;-1:-1:-1;;4538:29:1;4529:39;;;;4570:4;4525:50;;4324:257;-1:-1:-1;;4324:257:1:o;4586:470::-;4765:3;4803:6;4797:13;4819:53;4865:6;4860:3;4853:4;4845:6;4841:17;4819:53;:::i;:::-;4935:13;;4894:16;;;;4957:57;4935:13;4894:16;4991:4;4979:17;;4957:57;:::i;:::-;5030:20;;4586:470;-1:-1:-1;;;;4586:470:1:o;5479:488::-;-1:-1:-1;;;;;5748:15:1;;;5730:34;;5800:15;;5795:2;5780:18;;5773:43;5847:2;5832:18;;5825:34;;;5895:3;5890:2;5875:18;;5868:31;;;5673:4;;5916:45;;5941:19;;5933:6;5916:45;:::i;:::-;5908:53;5479:488;-1:-1:-1;;;;;;5479:488:1:o;6164:219::-;6313:2;6302:9;6295:21;6276:4;6333:44;6373:2;6362:9;6358:18;6350:6;6333:44;:::i;9270:128::-;9310:3;9341:1;9337:6;9334:1;9331:13;9328:39;;;9347:18;;:::i;:::-;-1:-1:-1;9383:9:1;;9270:128::o;9403:120::-;9443:1;9469;9459:35;;9474:18;;:::i;:::-;-1:-1:-1;9508:9:1;;9403:120::o;9528:168::-;9568:7;9634:1;9630;9626:6;9622:14;9619:1;9616:21;9611:1;9604:9;9597:17;9593:45;9590:71;;;9641:18;;:::i;:::-;-1:-1:-1;9681:9:1;;9528:168::o;9701:125::-;9741:4;9769:1;9766;9763:8;9760:34;;;9774:18;;:::i;:::-;-1:-1:-1;9811:9:1;;9701:125::o;9831:221::-;9870:4;9899:10;9959;;;;9929;;9981:12;;;9978:38;;;9996:18;;:::i;:::-;10033:13;;9831:221;-1:-1:-1;;;9831:221:1:o;10057:258::-;10129:1;10139:113;10153:6;10150:1;10147:13;10139:113;;;10229:11;;;10223:18;10210:11;;;10203:39;10175:2;10168:10;10139:113;;;10270:6;10267:1;10264:13;10261:48;;;-1:-1:-1;;10305:1:1;10287:16;;10280:27;10057:258::o;10320:380::-;10399:1;10395:12;;;;10442;;;10463:61;;10517:4;10509:6;10505:17;10495:27;;10463:61;10570:2;10562:6;10559:14;10539:18;10536:38;10533:161;;;10616:10;10611:3;10607:20;10604:1;10597:31;10651:4;10648:1;10641:15;10679:4;10676:1;10669:15;10533:161;;10320:380;;;:::o;10705:135::-;10744:3;-1:-1:-1;;10765:17:1;;10762:43;;;10785:18;;:::i;:::-;-1:-1:-1;10832:1:1;10821:13;;10705:135::o;10845:112::-;10877:1;10903;10893:35;;10908:18;;:::i;:::-;-1:-1:-1;10942:9:1;;10845:112::o;10962:127::-;11023:10;11018:3;11014:20;11011:1;11004:31;11054:4;11051:1;11044:15;11078:4;11075:1;11068:15;11094:127;11155:10;11150:3;11146:20;11143:1;11136:31;11186:4;11183:1;11176:15;11210:4;11207:1;11200:15;11226:127;11287:10;11282:3;11278:20;11275:1;11268:31;11318:4;11315:1;11308:15;11342:4;11339:1;11332:15;11358:127;11419:10;11414:3;11410:20;11407:1;11400:31;11450:4;11447:1;11440:15;11474:4;11471:1;11464:15;11490:131;-1:-1:-1;;;;;;11564:32:1;;11554:43;;11544:71;;11611:1;11608;11601:12
Swarm Source
ipfs://eaa2c7948253793d30dce64671fdc09d952e48efb7db91012743dd0f21f91947
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.