Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
2,222 69CLUB
Holders
504
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 69CLUBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SIXTYNINECLUB
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-08 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/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 v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/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 v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/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: https://github.com/chiru-labs/ERC721A/blob/v3.1.0/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); 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 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) { 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) { 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) { 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 { _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 virtual 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); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, 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: contract.sol pragma solidity 0.8.13; contract SIXTYNINECLUB is ERC721A, Ownable { uint256 public constant PRICE = 0.003 ether; uint16 public constant MAX_SUPPLY = 2222; uint8 public constant MAX_PER_WALLET = 2; string private baseUri = "https://gateway.pinata.cloud/ipfs/QmUg3NfghMnCyDYuiC5mDqzia5EzpYhaGo78PHVjxM4itT/"; uint96 private royaltyBasisPoints = 690; constructor() ERC721A("69 Club", "69CLUB") {} function soldOut() external view returns (bool) { return totalSupply() == MAX_SUPPLY; } function numberMinted(address owner) external view returns (uint256) { return _numberMinted(owner); } function mint(uint256 _quantity) external payable { require(_quantity > 0, "INCORRECT_QUANTITY"); require(_numberMinted(msg.sender) + _quantity <= MAX_PER_WALLET, "INCORRECT_QUANTITY"); require(totalSupply() + _quantity <= MAX_SUPPLY, "SALE_MAXED"); require(msg.value == PRICE * _quantity, "INCORRECT_ETH"); _safeMint(msg.sender, _quantity); } function previewMint(uint256 _quantity) external onlyOwner { require(_quantity > 0, "INCORRECT_QUANTITY"); require(totalSupply() + _quantity <= MAX_SUPPLY, "SALE_MAXED"); _safeMint(msg.sender, _quantity); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function setBaseUri(string calldata _baseUri) external onlyOwner { baseUri = _baseUri; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory filename = Strings.toString(tokenId); return bytes(baseUri).length != 0 ? string(abi.encodePacked(baseUri, filename, ".json")) : ''; } function setRoyalty(uint96 _royaltyBasisPoints) external onlyOwner { royaltyBasisPoints = _royaltyBasisPoints; } function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view returns (address receiver, uint256 royaltyAmount) { require(_exists(_tokenId), "Cannot query non-existent token"); return (owner(), (_salePrice * royaltyBasisPoints) / 10000); } function transferFunds() external onlyOwner { payable(owner()).transfer(address(this).balance); } }
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":"MintToZeroAddress","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":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"_quantity","type":"uint256"}],"name":"previewMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"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":"_baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint96","name":"_royaltyBasisPoints","type":"uint96"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"soldOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"transferFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
610100604052605160808181529062001fec60a03980516200002a916009916020909101906200011b565b50600a80546001600160601b0319166102b21790553480156200004c57600080fd5b5060408051808201825260078152661b1c9021b63ab160c91b6020808301918252835180850190945260068452651b1ca1a62aa160d11b9084015281519192916200009a916002916200011b565b508051620000b09060039060208401906200011b565b5050600160005550620000c333620000c9565b620001fd565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012990620001c1565b90600052602060002090601f0160209004810192826200014d576000855562000198565b82601f106200016857805160ff191683800117855562000198565b8280016001018555821562000198579182015b82811115620001985782518255916020019190600101906200017b565b50620001a6929150620001aa565b5090565b5b80821115620001a65760008155600101620001ab565b600181811c90821680620001d657607f821691505b602082108103620001f757634e487b7160e01b600052602260045260246000fd5b50919050565b611ddf806200020d6000396000f3fe6080604052600436106101b75760003560e01c8063893da6c9116100ec578063b3d7f6b91161008a578063cac9266911610064578063cac92669146104e3578063dc33e68114610503578063e985e9c514610523578063f2fde38b1461056c57600080fd5b8063b3d7f6b914610483578063b88d4fde146104a3578063c87b56dd146104c357600080fd5b806395d89b41116100c657806395d89b411461041b578063a0712d6814610430578063a0bcfc7f14610443578063a22cb4651461046357600080fd5b8063893da6c9146103cd5780638d859f3e146103e25780638da5cb5b146103fd57600080fd5b80632a55205a1161015957806342842e0e1161013357806342842e0e146103585780636352211e1461037857806370a0823114610398578063715018a6146103b857600080fd5b80632a55205a146102db57806332cb6b0c1461031a5780633c68eb811461034357600080fd5b8063095ea7b311610195578063095ea7b31461024b5780630f2cdd6c1461026d57806318160ddd1461029457806323b872dd146102bb57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d736600461180e565b61058c565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b506102066105de565b6040516101e89190611883565b34801561021f57600080fd5b5061023361022e366004611896565b610670565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b6102663660046118cb565b6106b4565b005b34801561027957600080fd5b50610282600281565b60405160ff90911681526020016101e8565b3480156102a057600080fd5b5060015460005403600019015b6040519081526020016101e8565b3480156102c757600080fd5b5061026b6102d63660046118f5565b610741565b3480156102e757600080fd5b506102fb6102f6366004611931565b61074c565b604080516001600160a01b0390931683526020830191909152016101e8565b34801561032657600080fd5b506103306108ae81565b60405161ffff90911681526020016101e8565b34801561034f57600080fd5b5061026b6107e9565b34801561036457600080fd5b5061026b6103733660046118f5565b61087f565b34801561038457600080fd5b50610233610393366004611896565b61089a565b3480156103a457600080fd5b506102ad6103b3366004611953565b6108ac565b3480156103c457600080fd5b5061026b6108fb565b3480156103d957600080fd5b506101dc610961565b3480156103ee57600080fd5b506102ad660aa87bee53800081565b34801561040957600080fd5b506008546001600160a01b0316610233565b34801561042757600080fd5b5061020661097f565b61026b61043e366004611896565b61098e565b34801561044f57600080fd5b5061026b61045e36600461196e565b610afa565b34801561046f57600080fd5b5061026b61047e3660046119e0565b610b60565b34801561048f57600080fd5b5061026b61049e366004611896565b610bf5565b3480156104af57600080fd5b5061026b6104be366004611a32565b610cea565b3480156104cf57600080fd5b506102066104de366004611896565b610d3b565b3480156104ef57600080fd5b5061026b6104fe366004611b0e565b610dc6565b34801561050f57600080fd5b506102ad61051e366004611953565b610e4c565b34801561052f57600080fd5b506101dc61053e366004611b3c565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561057857600080fd5b5061026b610587366004611953565b610e80565b60006001600160e01b031982166380ac58cd60e01b14806105bd57506001600160e01b03198216635b5e139f60e01b145b806105d857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546105ed90611b6f565b80601f016020809104026020016040519081016040528092919081815260200182805461061990611b6f565b80156106665780601f1061063b57610100808354040283529160200191610666565b820191906000526020600020905b81548152906001019060200180831161064957829003601f168201915b5050505050905090565b600061067b82610f48565b610698576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106bf8261089a565b9050806001600160a01b0316836001600160a01b0316036106f35760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107135750610711813361053e565b155b15610731576040516367d9dca160e11b815260040160405180910390fd5b61073c838383610f81565b505050565b61073c838383610fea565b60008061075884610f48565b6107a95760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e0060448201526064015b60405180910390fd5b6008546001600160a01b0316600a54612710906107d4906bffffffffffffffffffffffff1686611bbf565b6107de9190611bf4565b915091509250929050565b6008546001600160a01b031633146108435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107a0565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561087c573d6000803e3d6000fd5b50565b61073c83838360405180602001604052806000815250610cea565b60006108a5826111da565b5192915050565b60006001600160a01b0382166108d5576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107a0565b61095f6000611303565b565b60006108ae6109796001546000546000199190030190565b14905090565b6060600380546105ed90611b6f565b600081116109d35760405162461bcd60e51b8152602060048201526012602482015271494e434f52524543545f5155414e5449545960701b60448201526064016107a0565b33600090815260056020526040902054600290829068010000000000000000900467ffffffffffffffff16610a089190611c08565b1115610a4b5760405162461bcd60e51b8152602060048201526012602482015271494e434f52524543545f5155414e5449545960701b60448201526064016107a0565b6001546000546108ae9183910360001901610a669190611c08565b1115610aa15760405162461bcd60e51b815260206004820152600a60248201526914d0531157d35056115160b21b60448201526064016107a0565b610ab281660aa87bee538000611bbf565b3414610af05760405162461bcd60e51b815260206004820152600d60248201526c0929c869ea4a48a86a8be8aa89609b1b60448201526064016107a0565b61087c3382611362565b6008546001600160a01b03163314610b545760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107a0565b61073c6009838361175f565b336001600160a01b03831603610b895760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610c4f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107a0565b60008111610c945760405162461bcd60e51b8152602060048201526012602482015271494e434f52524543545f5155414e5449545960701b60448201526064016107a0565b6001546000546108ae9183910360001901610caf9190611c08565b1115610af05760405162461bcd60e51b815260206004820152600a60248201526914d0531157d35056115160b21b60448201526064016107a0565b610cf5848484610fea565b6001600160a01b0383163b15158015610d175750610d1584848484611380565b155b15610d35576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610d4682610f48565b610d6357604051630a14c4b560e41b815260040160405180910390fd5b6000610d6e8361146c565b905060098054610d7d90611b6f565b9050600003610d9b5760405180602001604052806000815250610dbf565b600981604051602001610daf929190611c3c565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610e205760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107a0565b600a80546bffffffffffffffffffffffff19166bffffffffffffffffffffffff92909216919091179055565b6001600160a01b03811660009081526005602052604081205468010000000000000000900467ffffffffffffffff166105d8565b6008546001600160a01b03163314610eda5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107a0565b6001600160a01b038116610f3f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107a0565b61087c81611303565b600081600111158015610f5c575060005482105b80156105d8575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610ff5826111da565b9050836001600160a01b031681600001516001600160a01b03161461102c5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061104a575061104a853361053e565b8061106557503361105a84610670565b6001600160a01b0316145b90508061108557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166110ac57604051633a954ecd60e21b815260040160405180910390fd5b6110b860008487610f81565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661118e57600054821461118e578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152818060011115801561120a575060005481105b156112ea57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906112e85780516001600160a01b03161561127e579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156112e3579392505050565b61127e565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61137c828260405180602001604052806000815250611585565b5050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906113b5903390899088908890600401611cf6565b6020604051808303816000875af19250505080156113f0575060408051601f3d908101601f191682019092526113ed91810190611d32565b60015b61144e573d80801561141e576040519150601f19603f3d011682016040523d82523d6000602084013e611423565b606091505b508051600003611446576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036114935750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114bd57806114a781611d4f565b91506114b69050600a83611bf4565b9150611497565b60008167ffffffffffffffff8111156114d8576114d8611a1c565b6040519080825280601f01601f191660200182016040528015611502576020820181803683370190505b5090505b841561146457611517600183611d68565b9150611524600a86611d7f565b61152f906030611c08565b60f81b81838151811061154457611544611d93565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061157e600a86611bf4565b9450611506565b61073c83838360016000546001600160a01b0385166115b657604051622e076360e81b815260040160405180910390fd5b836000036115d75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561168957506001600160a01b0387163b15155b15611711575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46116da6000888480600101955088611380565b6116f7576040516368d2bf6b60e11b815260040160405180910390fd5b80820361168f57826000541461170c57600080fd5b611756565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611712575b506000556111d3565b82805461176b90611b6f565b90600052602060002090601f01602090048101928261178d57600085556117d3565b82601f106117a65782800160ff198235161785556117d3565b828001600101855582156117d3579182015b828111156117d35782358255916020019190600101906117b8565b506117df9291506117e3565b5090565b5b808211156117df57600081556001016117e4565b6001600160e01b03198116811461087c57600080fd5b60006020828403121561182057600080fd5b8135610dbf816117f8565b60005b8381101561184657818101518382015260200161182e565b83811115610d355750506000910152565b6000815180845261186f81602086016020860161182b565b601f01601f19169290920160200192915050565b602081526000610dbf6020830184611857565b6000602082840312156118a857600080fd5b5035919050565b80356001600160a01b03811681146118c657600080fd5b919050565b600080604083850312156118de57600080fd5b6118e7836118af565b946020939093013593505050565b60008060006060848603121561190a57600080fd5b611913846118af565b9250611921602085016118af565b9150604084013590509250925092565b6000806040838503121561194457600080fd5b50508035926020909101359150565b60006020828403121561196557600080fd5b610dbf826118af565b6000806020838503121561198157600080fd5b823567ffffffffffffffff8082111561199957600080fd5b818501915085601f8301126119ad57600080fd5b8135818111156119bc57600080fd5b8660208285010111156119ce57600080fd5b60209290920196919550909350505050565b600080604083850312156119f357600080fd5b6119fc836118af565b915060208301358015158114611a1157600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611a4857600080fd5b611a51856118af565b9350611a5f602086016118af565b925060408501359150606085013567ffffffffffffffff80821115611a8357600080fd5b818701915087601f830112611a9757600080fd5b813581811115611aa957611aa9611a1c565b604051601f8201601f19908116603f01168101908382118183101715611ad157611ad1611a1c565b816040528281528a6020848701011115611aea57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600060208284031215611b2057600080fd5b81356bffffffffffffffffffffffff81168114610dbf57600080fd5b60008060408385031215611b4f57600080fd5b611b58836118af565b9150611b66602084016118af565b90509250929050565b600181811c90821680611b8357607f821691505b602082108103611ba357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611bd957611bd9611ba9565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611c0357611c03611bde565b500490565b60008219821115611c1b57611c1b611ba9565b500190565b60008151611c3281856020860161182b565b9290920192915050565b600080845481600182811c915080831680611c5857607f831692505b60208084108203611c7757634e487b7160e01b86526022600452602486fd5b818015611c8b5760018114611c9c57611cc9565b60ff19861689528489019650611cc9565b60008b81526020902060005b86811015611cc15781548b820152908501908301611ca8565b505084890196505b505050505050611ced611cdc8286611c20565b64173539b7b760d91b815260050190565b95945050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611d286080830184611857565b9695505050505050565b600060208284031215611d4457600080fd5b8151610dbf816117f8565b600060018201611d6157611d61611ba9565b5060010190565b600082821015611d7a57611d7a611ba9565b500390565b600082611d8e57611d8e611bde565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212204f63d265e8bab8908c637e084948111de473ecc30a69b04665a2d11ff563991764736f6c634300080d003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5567334e6667684d6e43794459756943356d44717a696135457a70596861476f37385048566a784d346974542f
Deployed Bytecode
0x6080604052600436106101b75760003560e01c8063893da6c9116100ec578063b3d7f6b91161008a578063cac9266911610064578063cac92669146104e3578063dc33e68114610503578063e985e9c514610523578063f2fde38b1461056c57600080fd5b8063b3d7f6b914610483578063b88d4fde146104a3578063c87b56dd146104c357600080fd5b806395d89b41116100c657806395d89b411461041b578063a0712d6814610430578063a0bcfc7f14610443578063a22cb4651461046357600080fd5b8063893da6c9146103cd5780638d859f3e146103e25780638da5cb5b146103fd57600080fd5b80632a55205a1161015957806342842e0e1161013357806342842e0e146103585780636352211e1461037857806370a0823114610398578063715018a6146103b857600080fd5b80632a55205a146102db57806332cb6b0c1461031a5780633c68eb811461034357600080fd5b8063095ea7b311610195578063095ea7b31461024b5780630f2cdd6c1461026d57806318160ddd1461029457806323b872dd146102bb57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d736600461180e565b61058c565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b506102066105de565b6040516101e89190611883565b34801561021f57600080fd5b5061023361022e366004611896565b610670565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b6102663660046118cb565b6106b4565b005b34801561027957600080fd5b50610282600281565b60405160ff90911681526020016101e8565b3480156102a057600080fd5b5060015460005403600019015b6040519081526020016101e8565b3480156102c757600080fd5b5061026b6102d63660046118f5565b610741565b3480156102e757600080fd5b506102fb6102f6366004611931565b61074c565b604080516001600160a01b0390931683526020830191909152016101e8565b34801561032657600080fd5b506103306108ae81565b60405161ffff90911681526020016101e8565b34801561034f57600080fd5b5061026b6107e9565b34801561036457600080fd5b5061026b6103733660046118f5565b61087f565b34801561038457600080fd5b50610233610393366004611896565b61089a565b3480156103a457600080fd5b506102ad6103b3366004611953565b6108ac565b3480156103c457600080fd5b5061026b6108fb565b3480156103d957600080fd5b506101dc610961565b3480156103ee57600080fd5b506102ad660aa87bee53800081565b34801561040957600080fd5b506008546001600160a01b0316610233565b34801561042757600080fd5b5061020661097f565b61026b61043e366004611896565b61098e565b34801561044f57600080fd5b5061026b61045e36600461196e565b610afa565b34801561046f57600080fd5b5061026b61047e3660046119e0565b610b60565b34801561048f57600080fd5b5061026b61049e366004611896565b610bf5565b3480156104af57600080fd5b5061026b6104be366004611a32565b610cea565b3480156104cf57600080fd5b506102066104de366004611896565b610d3b565b3480156104ef57600080fd5b5061026b6104fe366004611b0e565b610dc6565b34801561050f57600080fd5b506102ad61051e366004611953565b610e4c565b34801561052f57600080fd5b506101dc61053e366004611b3c565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561057857600080fd5b5061026b610587366004611953565b610e80565b60006001600160e01b031982166380ac58cd60e01b14806105bd57506001600160e01b03198216635b5e139f60e01b145b806105d857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546105ed90611b6f565b80601f016020809104026020016040519081016040528092919081815260200182805461061990611b6f565b80156106665780601f1061063b57610100808354040283529160200191610666565b820191906000526020600020905b81548152906001019060200180831161064957829003601f168201915b5050505050905090565b600061067b82610f48565b610698576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106bf8261089a565b9050806001600160a01b0316836001600160a01b0316036106f35760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107135750610711813361053e565b155b15610731576040516367d9dca160e11b815260040160405180910390fd5b61073c838383610f81565b505050565b61073c838383610fea565b60008061075884610f48565b6107a95760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e0060448201526064015b60405180910390fd5b6008546001600160a01b0316600a54612710906107d4906bffffffffffffffffffffffff1686611bbf565b6107de9190611bf4565b915091509250929050565b6008546001600160a01b031633146108435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107a0565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561087c573d6000803e3d6000fd5b50565b61073c83838360405180602001604052806000815250610cea565b60006108a5826111da565b5192915050565b60006001600160a01b0382166108d5576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107a0565b61095f6000611303565b565b60006108ae6109796001546000546000199190030190565b14905090565b6060600380546105ed90611b6f565b600081116109d35760405162461bcd60e51b8152602060048201526012602482015271494e434f52524543545f5155414e5449545960701b60448201526064016107a0565b33600090815260056020526040902054600290829068010000000000000000900467ffffffffffffffff16610a089190611c08565b1115610a4b5760405162461bcd60e51b8152602060048201526012602482015271494e434f52524543545f5155414e5449545960701b60448201526064016107a0565b6001546000546108ae9183910360001901610a669190611c08565b1115610aa15760405162461bcd60e51b815260206004820152600a60248201526914d0531157d35056115160b21b60448201526064016107a0565b610ab281660aa87bee538000611bbf565b3414610af05760405162461bcd60e51b815260206004820152600d60248201526c0929c869ea4a48a86a8be8aa89609b1b60448201526064016107a0565b61087c3382611362565b6008546001600160a01b03163314610b545760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107a0565b61073c6009838361175f565b336001600160a01b03831603610b895760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610c4f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107a0565b60008111610c945760405162461bcd60e51b8152602060048201526012602482015271494e434f52524543545f5155414e5449545960701b60448201526064016107a0565b6001546000546108ae9183910360001901610caf9190611c08565b1115610af05760405162461bcd60e51b815260206004820152600a60248201526914d0531157d35056115160b21b60448201526064016107a0565b610cf5848484610fea565b6001600160a01b0383163b15158015610d175750610d1584848484611380565b155b15610d35576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610d4682610f48565b610d6357604051630a14c4b560e41b815260040160405180910390fd5b6000610d6e8361146c565b905060098054610d7d90611b6f565b9050600003610d9b5760405180602001604052806000815250610dbf565b600981604051602001610daf929190611c3c565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610e205760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107a0565b600a80546bffffffffffffffffffffffff19166bffffffffffffffffffffffff92909216919091179055565b6001600160a01b03811660009081526005602052604081205468010000000000000000900467ffffffffffffffff166105d8565b6008546001600160a01b03163314610eda5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107a0565b6001600160a01b038116610f3f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107a0565b61087c81611303565b600081600111158015610f5c575060005482105b80156105d8575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610ff5826111da565b9050836001600160a01b031681600001516001600160a01b03161461102c5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061104a575061104a853361053e565b8061106557503361105a84610670565b6001600160a01b0316145b90508061108557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166110ac57604051633a954ecd60e21b815260040160405180910390fd5b6110b860008487610f81565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661118e57600054821461118e578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152818060011115801561120a575060005481105b156112ea57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906112e85780516001600160a01b03161561127e579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156112e3579392505050565b61127e565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61137c828260405180602001604052806000815250611585565b5050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906113b5903390899088908890600401611cf6565b6020604051808303816000875af19250505080156113f0575060408051601f3d908101601f191682019092526113ed91810190611d32565b60015b61144e573d80801561141e576040519150601f19603f3d011682016040523d82523d6000602084013e611423565b606091505b508051600003611446576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036114935750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114bd57806114a781611d4f565b91506114b69050600a83611bf4565b9150611497565b60008167ffffffffffffffff8111156114d8576114d8611a1c565b6040519080825280601f01601f191660200182016040528015611502576020820181803683370190505b5090505b841561146457611517600183611d68565b9150611524600a86611d7f565b61152f906030611c08565b60f81b81838151811061154457611544611d93565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061157e600a86611bf4565b9450611506565b61073c83838360016000546001600160a01b0385166115b657604051622e076360e81b815260040160405180910390fd5b836000036115d75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561168957506001600160a01b0387163b15155b15611711575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46116da6000888480600101955088611380565b6116f7576040516368d2bf6b60e11b815260040160405180910390fd5b80820361168f57826000541461170c57600080fd5b611756565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611712575b506000556111d3565b82805461176b90611b6f565b90600052602060002090601f01602090048101928261178d57600085556117d3565b82601f106117a65782800160ff198235161785556117d3565b828001600101855582156117d3579182015b828111156117d35782358255916020019190600101906117b8565b506117df9291506117e3565b5090565b5b808211156117df57600081556001016117e4565b6001600160e01b03198116811461087c57600080fd5b60006020828403121561182057600080fd5b8135610dbf816117f8565b60005b8381101561184657818101518382015260200161182e565b83811115610d355750506000910152565b6000815180845261186f81602086016020860161182b565b601f01601f19169290920160200192915050565b602081526000610dbf6020830184611857565b6000602082840312156118a857600080fd5b5035919050565b80356001600160a01b03811681146118c657600080fd5b919050565b600080604083850312156118de57600080fd5b6118e7836118af565b946020939093013593505050565b60008060006060848603121561190a57600080fd5b611913846118af565b9250611921602085016118af565b9150604084013590509250925092565b6000806040838503121561194457600080fd5b50508035926020909101359150565b60006020828403121561196557600080fd5b610dbf826118af565b6000806020838503121561198157600080fd5b823567ffffffffffffffff8082111561199957600080fd5b818501915085601f8301126119ad57600080fd5b8135818111156119bc57600080fd5b8660208285010111156119ce57600080fd5b60209290920196919550909350505050565b600080604083850312156119f357600080fd5b6119fc836118af565b915060208301358015158114611a1157600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611a4857600080fd5b611a51856118af565b9350611a5f602086016118af565b925060408501359150606085013567ffffffffffffffff80821115611a8357600080fd5b818701915087601f830112611a9757600080fd5b813581811115611aa957611aa9611a1c565b604051601f8201601f19908116603f01168101908382118183101715611ad157611ad1611a1c565b816040528281528a6020848701011115611aea57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600060208284031215611b2057600080fd5b81356bffffffffffffffffffffffff81168114610dbf57600080fd5b60008060408385031215611b4f57600080fd5b611b58836118af565b9150611b66602084016118af565b90509250929050565b600181811c90821680611b8357607f821691505b602082108103611ba357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611bd957611bd9611ba9565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611c0357611c03611bde565b500490565b60008219821115611c1b57611c1b611ba9565b500190565b60008151611c3281856020860161182b565b9290920192915050565b600080845481600182811c915080831680611c5857607f831692505b60208084108203611c7757634e487b7160e01b86526022600452602486fd5b818015611c8b5760018114611c9c57611cc9565b60ff19861689528489019650611cc9565b60008b81526020902060005b86811015611cc15781548b820152908501908301611ca8565b505084890196505b505050505050611ced611cdc8286611c20565b64173539b7b760d91b815260050190565b95945050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611d286080830184611857565b9695505050505050565b600060208284031215611d4457600080fd5b8151610dbf816117f8565b600060018201611d6157611d61611ba9565b5060010190565b600082821015611d7a57611d7a611ba9565b500390565b600082611d8e57611d8e611bde565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212204f63d265e8bab8908c637e084948111de473ecc30a69b04665a2d11ff563991764736f6c634300080d0033
Deployed Bytecode Sourcemap
44836:2514:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27014:305;;;;;;;;;;-1:-1:-1;27014:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;27014:305:0;;;;;;;;30127:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31630:204::-;;;;;;;;;;-1:-1:-1;31630:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:55:1;;;1696:74;;1684:2;1669:18;31630:204:0;1550:226:1;31193:371:0;;;;;;;;;;-1:-1:-1;31193:371:0;;;;;:::i;:::-;;:::i;:::-;;44989:40;;;;;;;;;;;;45028:1;44989:40;;;;;2413:4:1;2401:17;;;2383:36;;2371:2;2356:18;44989:40:0;2241:184:1;26263:303:0;;;;;;;;;;-1:-1:-1;46301:1:0;26517:12;26307:7;26501:13;:28;-1:-1:-1;;26501:46:0;26263:303;;;2576:25:1;;;2564:2;2549:18;26263:303:0;2430:177:1;32495:170:0;;;;;;;;;;-1:-1:-1;32495:170:0;;;;;:::i;:::-;;:::i;46939:279::-;;;;;;;;;;-1:-1:-1;46939:279:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3390:55:1;;;3372:74;;3477:2;3462:18;;3455:34;;;;3345:18;46939:279:0;3198:297:1;44940:40:0;;;;;;;;;;;;44976:4;44940:40;;;;;3674:6:1;3662:19;;;3644:38;;3632:2;3617:18;44940:40:0;3500:188:1;47230:115:0;;;;;;;;;;;;;:::i;32736:185::-;;;;;;;;;;-1:-1:-1;32736:185:0;;;;;:::i;:::-;;:::i;29935:125::-;;;;;;;;;;-1:-1:-1;29935:125:0;;;;;:::i;:::-;;:::i;27383:206::-;;;;;;;;;;-1:-1:-1;27383:206:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;45268:105::-;;;;;;;;;;;;;:::i;44888:43::-;;;;;;;;;;;;44920:11;44888:43;;4079:87;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;30296:104;;;;;;;;;;;;;:::i;45516:409::-;;;;;;:::i;:::-;;:::i;46324:106::-;;;;;;;;;;-1:-1:-1;46324:106:0;;;;;:::i;:::-;;:::i;31906:287::-;;;;;;;;;;-1:-1:-1;31906:287:0;;;;;:::i;:::-;;:::i;45937:258::-;;;;;;;;;;-1:-1:-1;45937:258:0;;;;;:::i;:::-;;:::i;32992:369::-;;;;;;;;;;-1:-1:-1;32992:369:0;;;;;:::i;:::-;;:::i;46442:343::-;;;;;;;;;;-1:-1:-1;46442:343:0;;;;;:::i;:::-;;:::i;46797:130::-;;;;;;;;;;-1:-1:-1;46797:130:0;;;;;:::i;:::-;;:::i;45385:119::-;;;;;;;;;;-1:-1:-1;45385:119:0;;;;;:::i;:::-;;:::i;32264:164::-;;;;;;;;;;-1:-1:-1;32264:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32385:25:0;;;32361:4;32385:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32264:164;4988:201;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;27014:305::-;27116:4;-1:-1:-1;;;;;;27153:40:0;;-1:-1:-1;;;27153:40:0;;:105;;-1:-1:-1;;;;;;;27210:48:0;;-1:-1:-1;;;27210:48:0;27153:105;:158;;;-1:-1:-1;;;;;;;;;;16972:40:0;;;27275:36;27133:178;27014:305;-1:-1:-1;;27014:305:0:o;30127:100::-;30181:13;30214:5;30207:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30127:100;:::o;31630:204::-;31698:7;31723:16;31731:7;31723;:16::i;:::-;31718:64;;31748:34;;-1:-1:-1;;;31748:34:0;;;;;;;;;;;31718:64;-1:-1:-1;31802:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31802:24:0;;31630:204::o;31193:371::-;31266:13;31282:24;31298:7;31282:15;:24::i;:::-;31266:40;;31327:5;-1:-1:-1;;;;;31321:11:0;:2;-1:-1:-1;;;;;31321:11:0;;31317:48;;31341:24;;-1:-1:-1;;;31341:24:0;;;;;;;;;;;31317:48;2883:10;-1:-1:-1;;;;;31382:21:0;;;;;;:63;;-1:-1:-1;31408:37:0;31425:5;2883:10;32264:164;:::i;31408:37::-;31407:38;31382:63;31378:138;;;31469:35;;-1:-1:-1;;;31469:35:0;;;;;;;;;;;31378:138;31528:28;31537:2;31541:7;31550:5;31528:8;:28::i;:::-;31255:309;31193:371;;:::o;32495:170::-;32629:28;32639:4;32645:2;32649:7;32629:9;:28::i;46939:279::-;47021:16;47039:21;47083:17;47091:8;47083:7;:17::i;:::-;47075:61;;;;-1:-1:-1;;;47075:61:0;;7257:2:1;47075:61:0;;;7239:21:1;7296:2;7276:18;;;7269:30;7335:33;7315:18;;;7308:61;7386:18;;47075:61:0;;;;;;;;;4152:6;;-1:-1:-1;;;;;4152:6:0;47180:18;;47202:5;;47167:31;;47180:18;;47167:10;:31;:::i;:::-;47166:41;;;;:::i;:::-;47149:59;;;;46939:279;;;;;:::o;47230:115::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8179:2:1;4291:68:0;;;8161:21:1;;;8198:18;;;8191:30;8257:34;8237:18;;;8230:62;8309:18;;4291:68:0;7977:356:1;4291:68:0;4152:6;;47287:48:::1;::::0;-1:-1:-1;;;;;4152:6:0;;;;47313:21:::1;47287:48:::0;::::1;;;::::0;::::1;::::0;;;47313:21;4152:6;47287:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;47230:115::o:0;32736:185::-;32874:39;32891:4;32897:2;32901:7;32874:39;;;;;;;;;;;;:16;:39::i;29935:125::-;29999:7;30026:21;30039:7;30026:12;:21::i;:::-;:26;;29935:125;-1:-1:-1;;29935:125:0:o;27383:206::-;27447:7;-1:-1:-1;;;;;27471:19:0;;27467:60;;27499:28;;-1:-1:-1;;;27499:28:0;;;;;;;;;;;27467:60;-1:-1:-1;;;;;;27553:19:0;;;;;:12;:19;;;;;:27;;;;27383:206::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8179:2:1;4291:68:0;;;8161:21:1;;;8198:18;;;8191:30;8257:34;8237:18;;;8230:62;8309:18;;4291:68:0;7977:356:1;4291:68:0;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;45268:105::-;45310:4;44976;45336:13;46301:1;26517:12;26307:7;26501:13;-1:-1:-1;;26501:28:0;;;:46;;26263:303;45336:13;:27;45329:34;;45268:105;:::o;30296:104::-;30352:13;30385:7;30378:14;;;;;:::i;45516:409::-;45599:1;45587:9;:13;45579:44;;;;-1:-1:-1;;;45579:44:0;;8540:2:1;45579:44:0;;;8522:21:1;8579:2;8559:18;;;8552:30;-1:-1:-1;;;8598:18:1;;;8591:48;8656:18;;45579:44:0;8338:342:1;45579:44:0;45658:10;27732:7;27767:19;;;:12;:19;;;;;:32;45028:1;;45672:9;;27767:32;;;;;45644:37;;;;:::i;:::-;:55;;45636:86;;;;-1:-1:-1;;;45636:86:0;;8540:2:1;45636:86:0;;;8522:21:1;8579:2;8559:18;;;8552:30;-1:-1:-1;;;8598:18:1;;;8591:48;8656:18;;45636:86:0;8338:342:1;45636:86:0;46301:1;26517:12;26307:7;26501:13;44976:4;;45759:9;;26501:28;-1:-1:-1;;26501:46:0;45743:25;;;;:::i;:::-;:39;;45735:62;;;;-1:-1:-1;;;45735:62:0;;9020:2:1;45735:62:0;;;9002:21:1;9059:2;9039:18;;;9032:30;-1:-1:-1;;;9078:18:1;;;9071:40;9128:18;;45735:62:0;8818:334:1;45735:62:0;45831:17;45839:9;44920:11;45831:17;:::i;:::-;45818:9;:30;45810:56;;;;-1:-1:-1;;;45810:56:0;;9359:2:1;45810:56:0;;;9341:21:1;9398:2;9378:18;;;9371:30;-1:-1:-1;;;9417:18:1;;;9410:43;9470:18;;45810:56:0;9157:337:1;45810:56:0;45883:32;45893:10;45905:9;45883;:32::i;46324:106::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8179:2:1;4291:68:0;;;8161:21:1;;;8198:18;;;8191:30;8257:34;8237:18;;;8230:62;8309:18;;4291:68:0;7977:356:1;4291:68:0;46402:18:::1;:7;46412:8:::0;;46402:18:::1;:::i;31906:287::-:0;2883:10;-1:-1:-1;;;;;32005:24:0;;;32001:54;;32038:17;;-1:-1:-1;;;32038:17:0;;;;;;;;;;;32001:54;2883:10;32068:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32068:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32068:53:0;;;;;;;;;;32137:48;;540:41:1;;;32068:42:0;;2883:10;32137:48;;513:18:1;32137:48:0;;;;;;;31906:287;;:::o;45937:258::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8179:2:1;4291:68:0;;;8161:21:1;;;8198:18;;;8191:30;8257:34;8237:18;;;8230:62;8309:18;;4291:68:0;7977:356:1;4291:68:0;46029:1:::1;46017:9;:13;46009:44;;;::::0;-1:-1:-1;;;46009:44:0;;8540:2:1;46009:44:0::1;::::0;::::1;8522:21:1::0;8579:2;8559:18;;;8552:30;-1:-1:-1;;;8598:18:1;;;8591:48;8656:18;;46009:44:0::1;8338:342:1::0;46009:44:0::1;46301:1:::0;26517:12;26307:7;26501:13;44976:4:::1;::::0;46090:9;;26501:28;-1:-1:-1;;26501:46:0;46074:25:::1;;;;:::i;:::-;:39;;46066:62;;;::::0;-1:-1:-1;;;46066:62:0;;9020:2:1;46066:62:0::1;::::0;::::1;9002:21:1::0;9059:2;9039:18;;;9032:30;-1:-1:-1;;;9078:18:1;;;9071:40;9128:18;;46066:62:0::1;8818:334:1::0;32992:369:0;33159:28;33169:4;33175:2;33179:7;33159:9;:28::i;:::-;-1:-1:-1;;;;;33202:13:0;;7075:19;:23;;33202:76;;;;;33222:56;33253:4;33259:2;33263:7;33272:5;33222:30;:56::i;:::-;33221:57;33202:76;33198:156;;;33302:40;;-1:-1:-1;;;33302:40:0;;;;;;;;;;;33198:156;32992:369;;;;:::o;46442:343::-;46515:13;46548:16;46556:7;46548;:16::i;:::-;46543:59;;46573:29;;-1:-1:-1;;;46573:29:0;;;;;;;;;;;46543:59;46619:22;46644:25;46661:7;46644:16;:25::i;:::-;46619:50;;46695:7;46689:21;;;;;:::i;:::-;;;46714:1;46689:26;:86;;;;;;;;;;;;;;;;;46742:7;46751:8;46725:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46689:86;46682:93;46442:343;-1:-1:-1;;;46442:343:0:o;46797:130::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8179:2:1;4291:68:0;;;8161:21:1;;;8198:18;;;8191:30;8257:34;8237:18;;;8230:62;8309:18;;4291:68:0;7977:356:1;4291:68:0;46877:18:::1;:40:::0;;-1:-1:-1;;46877:40:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;46797:130::o;45385:119::-;-1:-1:-1;;;;;27767:19:0;;45445:7;27767:19;;;:12;:19;;;;;:32;;;;;;45474:20;27671:137;4988:201;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8179:2:1;4291:68:0;;;8161:21:1;;;8198:18;;;8191:30;8257:34;8237:18;;;8230:62;8309:18;;4291:68:0;7977:356:1;4291:68:0;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;11441:2:1;5069:73:0::1;::::0;::::1;11423:21:1::0;11480:2;11460:18;;;11453:30;11519:34;11499:18;;;11492:62;-1:-1:-1;;;11570:18:1;;;11563:36;11616:19;;5069:73:0::1;11239:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;33616:187::-:0;33673:4;33716:7;46301:1;33697:26;;:53;;;;;33737:13;;33727:7;:23;33697:53;:98;;;;-1:-1:-1;;33768:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33768:27:0;;;;33767:28;;33616:187::o;41786:196::-;41901:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;41901:29:0;-1:-1:-1;;;;;41901:29:0;;;;;;;;;41946:28;;41901:24;;41946:28;;;;;;;41786:196;;;:::o;36729:2130::-;36844:35;36882:21;36895:7;36882:12;:21::i;:::-;36844:59;;36942:4;-1:-1:-1;;;;;36920:26:0;:13;:18;;;-1:-1:-1;;;;;36920:26:0;;36916:67;;36955:28;;-1:-1:-1;;;36955:28:0;;;;;;;;;;;36916:67;36996:22;2883:10;-1:-1:-1;;;;;37022:20:0;;;;:73;;-1:-1:-1;37059:36:0;37076:4;2883:10;32264:164;:::i;37059:36::-;37022:126;;;-1:-1:-1;2883:10:0;37112:20;37124:7;37112:11;:20::i;:::-;-1:-1:-1;;;;;37112:36:0;;37022:126;36996:153;;37167:17;37162:66;;37193:35;;-1:-1:-1;;;37193:35:0;;;;;;;;;;;37162:66;-1:-1:-1;;;;;37243:16:0;;37239:52;;37268:23;;-1:-1:-1;;;37268:23:0;;;;;;;;;;;37239:52;37412:35;37429:1;37433:7;37442:4;37412:8;:35::i;:::-;-1:-1:-1;;;;;37743:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37743:31:0;;;;;;;-1:-1:-1;;37743:31:0;;;;;;;37789:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37789:29:0;;;;;;;;;;;37869:20;;;:11;:20;;;;;;37904:18;;-1:-1:-1;;;;;;37937:49:0;;;;-1:-1:-1;;;37970:15:0;37937:49;;;;;;;;;;38260:11;;38320:24;;;;;38363:13;;37869:20;;38320:24;;38363:13;38359:384;;38573:13;;38558:11;:28;38554:174;;38611:20;;38680:28;;;;38654:54;;-1:-1:-1;;;38654:54:0;-1:-1:-1;;;;;;38654:54:0;;;-1:-1:-1;;;;;38611:20:0;;38654:54;;;;38554:174;37718:1036;;;38790:7;38786:2;-1:-1:-1;;;;;38771:27:0;38780:4;-1:-1:-1;;;;;38771:27:0;;;;;;;;;;;38809:42;36833:2026;;36729:2130;;;:::o;28764:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28875:7:0;;46301:1;28924:23;;:47;;;;;28958:13;;28951:4;:20;28924:47;28920:886;;;28992:31;29026:17;;;:11;:17;;;;;;;;;28992:51;;;;;;;;;-1:-1:-1;;;;;28992:51:0;;;;-1:-1:-1;;;28992:51:0;;;;;;;;;;;-1:-1:-1;;;28992:51:0;;;;;;;;;;;;;;29062:729;;29112:14;;-1:-1:-1;;;;;29112:28:0;;29108:101;;29176:9;28764:1109;-1:-1:-1;;;28764:1109:0:o;29108:101::-;-1:-1:-1;;;29551:6:0;29596:17;;;;:11;:17;;;;;;;;;29584:29;;;;;;;;;-1:-1:-1;;;;;29584:29:0;;;;;-1:-1:-1;;;29584:29:0;;;;;;;;;;;-1:-1:-1;;;29584:29:0;;;;;;;;;;;;;29644:28;29640:109;;29712:9;28764:1109;-1:-1:-1;;;28764:1109:0:o;29640:109::-;29511:261;;;28973:833;28920:886;29834:31;;-1:-1:-1;;;29834:31:0;;;;;;;;;;;5349:191;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;33811:104::-;33880:27;33890:2;33894:8;33880:27;;;;;;;;;;;;:9;:27::i;:::-;33811:104;;:::o;42474:667::-;42658:72;;-1:-1:-1;;;42658:72:0;;42637:4;;-1:-1:-1;;;;;42658:36:0;;;;;:72;;2883:10;;42709:4;;42715:7;;42724:5;;42658:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42658:72:0;;;;;;;;-1:-1:-1;;42658:72:0;;;;;;;;;;;;:::i;:::-;;;42654:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42892:6;:13;42909:1;42892:18;42888:235;;42938:40;;-1:-1:-1;;;42938:40:0;;;;;;;;;;;42888:235;43081:6;43075:13;43066:6;43062:2;43058:15;43051:38;42654:480;-1:-1:-1;;;;;;42777:55:0;-1:-1:-1;;;42777:55:0;;-1:-1:-1;42654:480:0;42474:667;;;;;;:::o;365:723::-;421:13;642:5;651:1;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;34278:163;34401:32;34407:2;34411:8;34421:5;34428:4;34839:20;34862:13;-1:-1:-1;;;;;34890:16:0;;34886:48;;34915:19;;-1:-1:-1;;;34915:19:0;;;;;;;;;;;34886:48;34949:8;34961:1;34949:13;34945:44;;34971:18;;-1:-1:-1;;;34971:18:0;;;;;;;;;;;34945:44;-1:-1:-1;;;;;35340:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35399:49:0;;35340:44;;;;;;;;35399:49;;;;-1:-1:-1;;35340:44:0;;;;;;35399:49;;;;;;;;;;;;;;;;35465:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35515:66:0;;;;-1:-1:-1;;;35565:15:0;35515:66;;;;;;;;;;35465:25;35662:23;;;35706:4;:23;;;;-1:-1:-1;;;;;;35714:13:0;;7075:19;:23;;35714:15;35702:641;;;35750:314;35781:38;;35806:12;;-1:-1:-1;;;;;35781:38:0;;;35798:1;;35781:38;;35798:1;;35781:38;35847:69;35886:1;35890:2;35894:14;;;;;;35910:5;35847:30;:69::i;:::-;35842:174;;35952:40;;-1:-1:-1;;;35952:40:0;;;;;;;;;;;35842:174;36059:3;36043:12;:19;35750:314;;36145:12;36128:13;;:29;36124:43;;36159:8;;;36124:43;35702:641;;;36208:120;36239:40;;36264:14;;;;;-1:-1:-1;;;;;36239:40:0;;;36256:1;;36239:40;;36256:1;;36239:40;36323:3;36307:12;:19;36208:120;;35702:641;-1:-1:-1;36357:13:0;:28;36407:60;32992:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1781:196::-;1849:20;;-1:-1:-1;;;;;1898:54:1;;1888:65;;1878:93;;1967:1;1964;1957:12;1878:93;1781:196;;;:::o;1982:254::-;2050:6;2058;2111:2;2099:9;2090:7;2086:23;2082:32;2079:52;;;2127:1;2124;2117:12;2079:52;2150:29;2169:9;2150:29;:::i;:::-;2140:39;2226:2;2211:18;;;;2198:32;;-1:-1:-1;;;1982:254:1:o;2612:328::-;2689:6;2697;2705;2758:2;2746:9;2737:7;2733:23;2729:32;2726:52;;;2774:1;2771;2764:12;2726:52;2797:29;2816:9;2797:29;:::i;:::-;2787:39;;2845:38;2879:2;2868:9;2864:18;2845:38;:::i;:::-;2835:48;;2930:2;2919:9;2915:18;2902:32;2892:42;;2612:328;;;;;:::o;2945:248::-;3013:6;3021;3074:2;3062:9;3053:7;3049:23;3045:32;3042:52;;;3090:1;3087;3080:12;3042:52;-1:-1:-1;;3113:23:1;;;3183:2;3168:18;;;3155:32;;-1:-1:-1;2945:248:1:o;3693:186::-;3752:6;3805:2;3793:9;3784:7;3780:23;3776:32;3773:52;;;3821:1;3818;3811:12;3773:52;3844:29;3863:9;3844:29;:::i;3884:592::-;3955:6;3963;4016:2;4004:9;3995:7;3991:23;3987:32;3984:52;;;4032:1;4029;4022:12;3984:52;4072:9;4059:23;4101:18;4142:2;4134:6;4131:14;4128:34;;;4158:1;4155;4148:12;4128:34;4196:6;4185:9;4181:22;4171:32;;4241:7;4234:4;4230:2;4226:13;4222:27;4212:55;;4263:1;4260;4253:12;4212:55;4303:2;4290:16;4329:2;4321:6;4318:14;4315:34;;;4345:1;4342;4335:12;4315:34;4390:7;4385:2;4376:6;4372:2;4368:15;4364:24;4361:37;4358:57;;;4411:1;4408;4401:12;4358:57;4442:2;4434:11;;;;;4464:6;;-1:-1:-1;3884:592:1;;-1:-1:-1;;;;3884:592:1:o;4481:347::-;4546:6;4554;4607:2;4595:9;4586:7;4582:23;4578:32;4575:52;;;4623:1;4620;4613:12;4575:52;4646:29;4665:9;4646:29;:::i;:::-;4636:39;;4725:2;4714:9;4710:18;4697:32;4772:5;4765:13;4758:21;4751:5;4748:32;4738:60;;4794:1;4791;4784:12;4738:60;4817:5;4807:15;;;4481:347;;;;;:::o;4833:127::-;4894:10;4889:3;4885:20;4882:1;4875:31;4925:4;4922:1;4915:15;4949:4;4946:1;4939:15;4965:1138;5060:6;5068;5076;5084;5137:3;5125:9;5116:7;5112:23;5108:33;5105:53;;;5154:1;5151;5144:12;5105:53;5177:29;5196:9;5177:29;:::i;:::-;5167:39;;5225:38;5259:2;5248:9;5244:18;5225:38;:::i;:::-;5215:48;;5310:2;5299:9;5295:18;5282:32;5272:42;;5365:2;5354:9;5350:18;5337:32;5388:18;5429:2;5421:6;5418:14;5415:34;;;5445:1;5442;5435:12;5415:34;5483:6;5472:9;5468:22;5458:32;;5528:7;5521:4;5517:2;5513:13;5509:27;5499:55;;5550:1;5547;5540:12;5499:55;5586:2;5573:16;5608:2;5604;5601:10;5598:36;;;5614:18;;:::i;:::-;5689:2;5683:9;5657:2;5743:13;;-1:-1:-1;;5739:22:1;;;5763:2;5735:31;5731:40;5719:53;;;5787:18;;;5807:22;;;5784:46;5781:72;;;5833:18;;:::i;:::-;5873:10;5869:2;5862:22;5908:2;5900:6;5893:18;5948:7;5943:2;5938;5934;5930:11;5926:20;5923:33;5920:53;;;5969:1;5966;5959:12;5920:53;6025:2;6020;6016;6012:11;6007:2;5999:6;5995:15;5982:46;6070:1;6065:2;6060;6052:6;6048:15;6044:24;6037:35;6091:6;6081:16;;;;;;;4965:1138;;;;;;;:::o;6108:292::-;6166:6;6219:2;6207:9;6198:7;6194:23;6190:32;6187:52;;;6235:1;6232;6225:12;6187:52;6274:9;6261:23;6324:26;6317:5;6313:38;6306:5;6303:49;6293:77;;6366:1;6363;6356:12;6405:260;6473:6;6481;6534:2;6522:9;6513:7;6509:23;6505:32;6502:52;;;6550:1;6547;6540:12;6502:52;6573:29;6592:9;6573:29;:::i;:::-;6563:39;;6621:38;6655:2;6644:9;6640:18;6621:38;:::i;:::-;6611:48;;6405:260;;;;;:::o;6670:380::-;6749:1;6745:12;;;;6792;;;6813:61;;6867:4;6859:6;6855:17;6845:27;;6813:61;6920:2;6912:6;6909:14;6889:18;6886:38;6883:161;;6966:10;6961:3;6957:20;6954:1;6947:31;7001:4;6998:1;6991:15;7029:4;7026:1;7019:15;6883:161;;6670:380;;;:::o;7415:127::-;7476:10;7471:3;7467:20;7464:1;7457:31;7507:4;7504:1;7497:15;7531:4;7528:1;7521:15;7547:168;7587:7;7653:1;7649;7645:6;7641:14;7638:1;7635:21;7630:1;7623:9;7616:17;7612:45;7609:71;;;7660:18;;:::i;:::-;-1:-1:-1;7700:9:1;;7547:168::o;7720:127::-;7781:10;7776:3;7772:20;7769:1;7762:31;7812:4;7809:1;7802:15;7836:4;7833:1;7826:15;7852:120;7892:1;7918;7908:35;;7923:18;;:::i;:::-;-1:-1:-1;7957:9:1;;7852:120::o;8685:128::-;8725:3;8756:1;8752:6;8749:1;8746:13;8743:39;;;8762:18;;:::i;:::-;-1:-1:-1;8798:9:1;;8685:128::o;9625:185::-;9667:3;9705:5;9699:12;9720:52;9765:6;9760:3;9753:4;9746:5;9742:16;9720:52;:::i;:::-;9788:16;;;;;9625:185;-1:-1:-1;;9625:185:1:o;9933:1301::-;10210:3;10239:1;10272:6;10266:13;10302:3;10324:1;10352:9;10348:2;10344:18;10334:28;;10412:2;10401:9;10397:18;10434;10424:61;;10478:4;10470:6;10466:17;10456:27;;10424:61;10504:2;10552;10544:6;10541:14;10521:18;10518:38;10515:165;;-1:-1:-1;;;10579:33:1;;10635:4;10632:1;10625:15;10665:4;10586:3;10653:17;10515:165;10696:18;10723:104;;;;10841:1;10836:320;;;;10689:467;;10723:104;-1:-1:-1;;10756:24:1;;10744:37;;10801:16;;;;-1:-1:-1;10723:104:1;;10836:320;9572:1;9565:14;;;9609:4;9596:18;;10931:1;10945:165;10959:6;10956:1;10953:13;10945:165;;;11037:14;;11024:11;;;11017:35;11080:16;;;;10974:10;;10945:165;;;10949:3;;11139:6;11134:3;11130:16;11123:23;;10689:467;;;;;;;11172:56;11197:30;11223:3;11215:6;11197:30;:::i;:::-;-1:-1:-1;;;9875:20:1;;9920:1;9911:11;;9815:113;11172:56;11165:63;9933:1301;-1:-1:-1;;;;;9933:1301:1:o;11646:523::-;11840:4;-1:-1:-1;;;;;11950:2:1;11942:6;11938:15;11927:9;11920:34;12002:2;11994:6;11990:15;11985:2;11974:9;11970:18;11963:43;;12042:6;12037:2;12026:9;12022:18;12015:34;12085:3;12080:2;12069:9;12065:18;12058:31;12106:57;12158:3;12147:9;12143:19;12135:6;12106:57;:::i;:::-;12098:65;11646:523;-1:-1:-1;;;;;;11646:523:1:o;12174:249::-;12243:6;12296:2;12284:9;12275:7;12271:23;12267:32;12264:52;;;12312:1;12309;12302:12;12264:52;12344:9;12338:16;12363:30;12387:5;12363:30;:::i;12428:135::-;12467:3;12488:17;;;12485:43;;12508:18;;:::i;:::-;-1:-1:-1;12555:1:1;12544:13;;12428:135::o;12568:125::-;12608:4;12636:1;12633;12630:8;12627:34;;;12641:18;;:::i;:::-;-1:-1:-1;12678:9:1;;12568:125::o;12698:112::-;12730:1;12756;12746:35;;12761:18;;:::i;:::-;-1:-1:-1;12795:9:1;;12698:112::o;12815:127::-;12876:10;12871:3;12867:20;12864:1;12857:31;12907:4;12904:1;12897:15;12931:4;12928:1;12921:15
Swarm Source
ipfs://4f63d265e8bab8908c637e084948111de473ecc30a69b04665a2d11ff5639917
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.