Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 151 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 17325919 | 583 days ago | IN | 0 ETH | 0.00078498 | ||||
Set Approval For... | 15875386 | 787 days ago | IN | 0 ETH | 0.00054114 | ||||
Free Mint | 15822475 | 794 days ago | IN | 0 ETH | 0.00129135 | ||||
Free Mint | 15822461 | 794 days ago | IN | 0 ETH | 0.00112682 | ||||
Free Mint | 15822429 | 794 days ago | IN | 0 ETH | 0.0012638 | ||||
Free Mint | 15822039 | 794 days ago | IN | 0 ETH | 0.00106105 | ||||
Free Mint | 15822036 | 794 days ago | IN | 0 ETH | 0.00112257 | ||||
Free Mint | 15822031 | 794 days ago | IN | 0 ETH | 0.00116285 | ||||
Set Approval For... | 15822029 | 794 days ago | IN | 0 ETH | 0.00060234 | ||||
Free Mint | 15822018 | 794 days ago | IN | 0 ETH | 0.00126693 | ||||
Free Mint | 15822005 | 794 days ago | IN | 0 ETH | 0.00116766 | ||||
Free Mint | 15821998 | 794 days ago | IN | 0 ETH | 0.00121988 | ||||
Free Mint | 15821930 | 794 days ago | IN | 0 ETH | 0.00097457 | ||||
Free Mint | 15821896 | 794 days ago | IN | 0 ETH | 0.00121492 | ||||
Free Mint | 15821891 | 794 days ago | IN | 0 ETH | 0.00119039 | ||||
Free Mint | 15821889 | 794 days ago | IN | 0 ETH | 0.00117461 | ||||
Free Mint | 15821883 | 794 days ago | IN | 0 ETH | 0.00133214 | ||||
Free Mint | 15821859 | 794 days ago | IN | 0 ETH | 0.00188817 | ||||
Free Mint | 15821857 | 794 days ago | IN | 0 ETH | 0.00181836 | ||||
Free Mint | 15821837 | 794 days ago | IN | 0 ETH | 0.0017033 | ||||
Free Mint | 15821821 | 794 days ago | IN | 0 ETH | 0.00188706 | ||||
Free Mint | 15821801 | 794 days ago | IN | 0 ETH | 0.00134483 | ||||
Free Mint | 15821799 | 794 days ago | IN | 0 ETH | 0.00130707 | ||||
Free Mint | 15821774 | 794 days ago | IN | 0 ETH | 0.00118029 | ||||
Set Approval For... | 15821773 | 794 days ago | IN | 0 ETH | 0.00059337 |
Loading...
Loading
Contract Name:
Freddits
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-25 */ // File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @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, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` 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 payable; /** * @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 payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _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 {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary 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 virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ 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, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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 { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @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 for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, 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. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev 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 { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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 { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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 _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev 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: freddits.sol pragma solidity 0.8.15; /** ____ ___ ____ ___ ___ _ _____ __ | |_ | |_) | |_ | | \ | | \ | | | | ( (` |_| |_| \ |_|__ |_|_/ |_|_/ |_| |_| _)_) Fake Reddits - Freddits. Reddit NFTs, but on ETH. Stay tuned for the Season 2 + Spooky seasn Airdrop and other announcements, announced (and verified) on Mirror. First 500 Free, then the rest are 0.015Eth. Enjoy! */ contract Freddits is ERC721A, Ownable { using Strings for uint256; uint256 public constant MAX_SUPPLY = 5395; uint256 public constant MAX_FREE_MINT = 500; mapping(address => uint) public freeMintTracker; uint256 public price = 0.015 ether; uint256 public MAX_PER_TXN = 20; string public baseURI = "ipfs://QmQroLMibDRYzxYLm6hkRrzonJd4tPWjrs3qDypd5U4yAB/"; constructor() ERC721A("Freddits (Fake Reddits)", "FREDDITS") {} function freeMint() external payable{ require(totalSupply() < MAX_FREE_MINT, "Free mint is over!"); require(freeMintTracker[msg.sender] < 1, "Only 1 per wallet is allowed"); freeMintTracker[msg.sender]+=1; _mint(msg.sender, 1); } function mint(uint256 quantity) external payable{ require(quantity <= MAX_PER_TXN, "20 per txn, pls"); require(quantity * price <= msg.value, "Need to send more eth"); _mint(msg.sender, quantity); } function setBaseURI(string memory _baseURI) external onlyOwner { baseURI = _baseURI; } function withdraw() external onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success, "Transfer failed."); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : ""; } function getBaseURI() external view returns (string memory) { return baseURI; } }
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":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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_FREE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintTracker","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":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","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":"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
66354a6ba7a18000600a556014600b5560e0604052603660808181529062001ad560a039600c90620000329082620001c7565b503480156200004057600080fd5b506040518060400160405280601781526020017f4672656464697473202846616b6520526564646974732900000000000000000081525060405180604001604052806008815260200167465245444449545360c01b8152508160029081620000a99190620001c7565b506003620000b88282620001c7565b50506000805550620000ca33620000d0565b62000293565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200014d57607f821691505b6020821081036200016e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001c257600081815260208120601f850160051c810160208610156200019d5750805b601f850160051c820191505b81811015620001be57828155600101620001a9565b5050505b505050565b81516001600160401b03811115620001e357620001e362000122565b620001fb81620001f4845462000138565b8462000174565b602080601f8311600181146200023357600084156200021a5750858301515b600019600386901b1c1916600185901b178555620001be565b600085815260208120601f198616915b82811015620002645788860151825594840194600190910190840162000243565b5085821015620002835787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61183280620002a36000396000f3fe6080604052600436106101b75760003560e01c80636352211e116100ec578063a035b1fe1161008a578063b88d4fde11610064578063b88d4fde14610454578063c87b56dd14610467578063e985e9c514610487578063f2fde38b146104d057600080fd5b8063a035b1fe1461040b578063a0712d6814610421578063a22cb4651461043457600080fd5b8063714c5398116100c6578063714c5398146103ae578063715018a6146103c35780638da5cb5b146103d857806395d89b41146103f657600080fd5b80636352211e146103595780636c0360eb1461037957806370a082311461038e57600080fd5b806332cb6b0c1161015957806342842e0e1161013357806342842e0e1461030857806351b96d921461031b57806355f804b3146103315780635b70ea9f1461035157600080fd5b806332cb6b0c146102c75780633ccfd60b146102dd57806341cda203146102f257600080fd5b8063095ea7b311610195578063095ea7b31461024b578063106c46b61461026057806318160ddd1461029b57806323b872dd146102b457600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d73660046111fc565b6104f0565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610542565b6040516101e89190611271565b34801561021f57600080fd5b5061023361022e366004611284565b6105d4565b6040516001600160a01b0390911681526020016101e8565b61025e6102593660046112b9565b610618565b005b34801561026c57600080fd5b5061028d61027b3660046112e3565b60096020526000908152604090205481565b6040519081526020016101e8565b3480156102a757600080fd5b506001546000540361028d565b61025e6102c23660046112fe565b6106b8565b3480156102d357600080fd5b5061028d61151381565b3480156102e957600080fd5b5061025e610851565b3480156102fe57600080fd5b5061028d6101f481565b61025e6103163660046112fe565b6108ec565b34801561032757600080fd5b5061028d600b5481565b34801561033d57600080fd5b5061025e61034c3660046113c6565b61090c565b61025e610924565b34801561036557600080fd5b50610233610374366004611284565b610a08565b34801561038557600080fd5b50610206610a13565b34801561039a57600080fd5b5061028d6103a93660046112e3565b610aa1565b3480156103ba57600080fd5b50610206610af0565b3480156103cf57600080fd5b5061025e610aff565b3480156103e457600080fd5b506008546001600160a01b0316610233565b34801561040257600080fd5b50610206610b11565b34801561041757600080fd5b5061028d600a5481565b61025e61042f366004611284565b610b20565b34801561044057600080fd5b5061025e61044f36600461140f565b610bc3565b61025e61046236600461144b565b610c2f565b34801561047357600080fd5b50610206610482366004611284565b610c79565b34801561049357600080fd5b506101dc6104a23660046114c7565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104dc57600080fd5b5061025e6104eb3660046112e3565b610d44565b60006301ffc9a760e01b6001600160e01b03198316148061052157506380ac58cd60e01b6001600160e01b03198316145b8061053c5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610551906114fa565b80601f016020809104026020016040519081016040528092919081815260200182805461057d906114fa565b80156105ca5780601f1061059f576101008083540402835291602001916105ca565b820191906000526020600020905b8154815290600101906020018083116105ad57829003601f168201915b5050505050905090565b60006105df82610dba565b6105fc576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061062382610a08565b9050336001600160a01b0382161461065c5761063f81336104a2565b61065c576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006106c382610de1565b9050836001600160a01b0316816001600160a01b0316146106f65760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176107435761072686336104a2565b61074357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661076a57604051633a954ecd60e21b815260040160405180910390fd5b801561077557600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610807576001840160008181526004602052604081205490036108055760005481146108055760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610859610e4f565b604051600090339047908381818185875af1925050503d806000811461089b576040519150601f19603f3d011682016040523d82523d6000602084013e6108a0565b606091505b50509050806108e95760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064015b60405180910390fd5b50565b61090783838360405180602001604052806000815250610c2f565b505050565b610914610e4f565b600c610920828261157a565b5050565b6101f46109346001546000540390565b106109765760405162461bcd60e51b815260206004820152601260248201527146726565206d696e74206973206f7665722160701b60448201526064016108e0565b336000908152600960205260409020546001116109d55760405162461bcd60e51b815260206004820152601c60248201527f4f6e6c792031207065722077616c6c657420697320616c6c6f7765640000000060448201526064016108e0565b3360009081526009602052604081208054600192906109f5908490611650565b90915550610a069050336001610ea9565b565b600061053c82610de1565b600c8054610a20906114fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4c906114fa565b8015610a995780601f10610a6e57610100808354040283529160200191610a99565b820191906000526020600020905b815481529060010190602001808311610a7c57829003601f168201915b505050505081565b60006001600160a01b038216610aca576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6060600c8054610551906114fa565b610b07610e4f565b610a066000610fa7565b606060038054610551906114fa565b600b54811115610b645760405162461bcd60e51b815260206004820152600f60248201526e3230207065722074786e2c20706c7360881b60448201526064016108e0565b34600a5482610b739190611668565b1115610bb95760405162461bcd60e51b815260206004820152601560248201527409ccacac840e8de40e6cadcc840dadee4ca40cae8d605b1b60448201526064016108e0565b6108e93382610ea9565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c3a8484846106b8565b6001600160a01b0383163b15610c7357610c5684848484610ff9565b610c73576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c8482610dba565b610ce85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108e0565b6000600c8054610cf7906114fa565b905011610d13576040518060200160405280600081525061053c565b600c610d1e836110e5565b604051602001610d2f929190611687565b60405160208183030381529060405292915050565b610d4c610e4f565b6001600160a01b038116610db15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e0565b6108e981610fa7565b600080548210801561053c575050600090815260046020526040902054600160e01b161590565b600081600054811015610e365760008181526004602052604081205490600160e01b82169003610e34575b80600003610e2d575060001901600081815260046020526040902054610e0c565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610a065760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108e0565b6000805490829003610ece5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114610f7d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101610f45565b5081600003610f9e57604051622e076360e81b815260040160405180910390fd5b60005550505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061102e90339089908890889060040161171e565b6020604051808303816000875af1925050508015611069575060408051601f3d908101601f191682019092526110669181019061175b565b60015b6110c7573d808015611097576040519150601f19603f3d011682016040523d82523d6000602084013e61109c565b606091505b5080516000036110bf576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608160000361110c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611136578061112081611778565b915061112f9050600a836117a7565b9150611110565b60008167ffffffffffffffff8111156111515761115161133a565b6040519080825280601f01601f19166020018201604052801561117b576020820181803683370190505b5090505b84156110dd576111906001836117bb565b915061119d600a866117d2565b6111a8906030611650565b60f81b8183815181106111bd576111bd6117e6565b60200101906001600160f81b031916908160001a9053506111df600a866117a7565b945061117f565b6001600160e01b0319811681146108e957600080fd5b60006020828403121561120e57600080fd5b8135610e2d816111e6565b60005b8381101561123457818101518382015260200161121c565b83811115610c735750506000910152565b6000815180845261125d816020860160208601611219565b601f01601f19169290920160200192915050565b602081526000610e2d6020830184611245565b60006020828403121561129657600080fd5b5035919050565b80356001600160a01b03811681146112b457600080fd5b919050565b600080604083850312156112cc57600080fd5b6112d58361129d565b946020939093013593505050565b6000602082840312156112f557600080fd5b610e2d8261129d565b60008060006060848603121561131357600080fd5b61131c8461129d565b925061132a6020850161129d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561136b5761136b61133a565b604051601f8501601f19908116603f011681019082821181831017156113935761139361133a565b816040528093508581528686860111156113ac57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156113d857600080fd5b813567ffffffffffffffff8111156113ef57600080fd5b8201601f8101841361140057600080fd5b6110dd84823560208401611350565b6000806040838503121561142257600080fd5b61142b8361129d565b91506020830135801515811461144057600080fd5b809150509250929050565b6000806000806080858703121561146157600080fd5b61146a8561129d565b93506114786020860161129d565b925060408501359150606085013567ffffffffffffffff81111561149b57600080fd5b8501601f810187136114ac57600080fd5b6114bb87823560208401611350565b91505092959194509250565b600080604083850312156114da57600080fd5b6114e38361129d565b91506114f16020840161129d565b90509250929050565b600181811c9082168061150e57607f821691505b60208210810361152e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561090757600081815260208120601f850160051c8101602086101561155b5750805b601f850160051c820191505b8181101561084957828155600101611567565b815167ffffffffffffffff8111156115945761159461133a565b6115a8816115a284546114fa565b84611534565b602080601f8311600181146115dd57600084156115c55750858301515b600019600386901b1c1916600185901b178555610849565b600085815260208120601f198616915b8281101561160c578886015182559484019460019091019084016115ed565b508582101561162a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600082198211156116635761166361163a565b500190565b60008160001904831182151516156116825761168261163a565b500290565b6000808454611695816114fa565b600182811680156116ad57600181146116c2576116f1565b60ff19841687528215158302870194506116f1565b8860005260208060002060005b858110156116e85781548a8201529084019082016116cf565b50505082870194505b505050508351611705818360208801611219565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061175190830184611245565b9695505050505050565b60006020828403121561176d57600080fd5b8151610e2d816111e6565b60006001820161178a5761178a61163a565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826117b6576117b6611791565b500490565b6000828210156117cd576117cd61163a565b500390565b6000826117e1576117e1611791565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220310d571afba17f382497e4938724afdbf3565cc84dfa507267aa254b111755b664736f6c634300080f0033697066733a2f2f516d51726f4c4d69624452597a78594c6d36686b52727a6f6e4a64347450576a72733371447970643555347941422f
Deployed Bytecode
0x6080604052600436106101b75760003560e01c80636352211e116100ec578063a035b1fe1161008a578063b88d4fde11610064578063b88d4fde14610454578063c87b56dd14610467578063e985e9c514610487578063f2fde38b146104d057600080fd5b8063a035b1fe1461040b578063a0712d6814610421578063a22cb4651461043457600080fd5b8063714c5398116100c6578063714c5398146103ae578063715018a6146103c35780638da5cb5b146103d857806395d89b41146103f657600080fd5b80636352211e146103595780636c0360eb1461037957806370a082311461038e57600080fd5b806332cb6b0c1161015957806342842e0e1161013357806342842e0e1461030857806351b96d921461031b57806355f804b3146103315780635b70ea9f1461035157600080fd5b806332cb6b0c146102c75780633ccfd60b146102dd57806341cda203146102f257600080fd5b8063095ea7b311610195578063095ea7b31461024b578063106c46b61461026057806318160ddd1461029b57806323b872dd146102b457600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d73660046111fc565b6104f0565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610542565b6040516101e89190611271565b34801561021f57600080fd5b5061023361022e366004611284565b6105d4565b6040516001600160a01b0390911681526020016101e8565b61025e6102593660046112b9565b610618565b005b34801561026c57600080fd5b5061028d61027b3660046112e3565b60096020526000908152604090205481565b6040519081526020016101e8565b3480156102a757600080fd5b506001546000540361028d565b61025e6102c23660046112fe565b6106b8565b3480156102d357600080fd5b5061028d61151381565b3480156102e957600080fd5b5061025e610851565b3480156102fe57600080fd5b5061028d6101f481565b61025e6103163660046112fe565b6108ec565b34801561032757600080fd5b5061028d600b5481565b34801561033d57600080fd5b5061025e61034c3660046113c6565b61090c565b61025e610924565b34801561036557600080fd5b50610233610374366004611284565b610a08565b34801561038557600080fd5b50610206610a13565b34801561039a57600080fd5b5061028d6103a93660046112e3565b610aa1565b3480156103ba57600080fd5b50610206610af0565b3480156103cf57600080fd5b5061025e610aff565b3480156103e457600080fd5b506008546001600160a01b0316610233565b34801561040257600080fd5b50610206610b11565b34801561041757600080fd5b5061028d600a5481565b61025e61042f366004611284565b610b20565b34801561044057600080fd5b5061025e61044f36600461140f565b610bc3565b61025e61046236600461144b565b610c2f565b34801561047357600080fd5b50610206610482366004611284565b610c79565b34801561049357600080fd5b506101dc6104a23660046114c7565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104dc57600080fd5b5061025e6104eb3660046112e3565b610d44565b60006301ffc9a760e01b6001600160e01b03198316148061052157506380ac58cd60e01b6001600160e01b03198316145b8061053c5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610551906114fa565b80601f016020809104026020016040519081016040528092919081815260200182805461057d906114fa565b80156105ca5780601f1061059f576101008083540402835291602001916105ca565b820191906000526020600020905b8154815290600101906020018083116105ad57829003601f168201915b5050505050905090565b60006105df82610dba565b6105fc576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061062382610a08565b9050336001600160a01b0382161461065c5761063f81336104a2565b61065c576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006106c382610de1565b9050836001600160a01b0316816001600160a01b0316146106f65760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176107435761072686336104a2565b61074357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661076a57604051633a954ecd60e21b815260040160405180910390fd5b801561077557600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610807576001840160008181526004602052604081205490036108055760005481146108055760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610859610e4f565b604051600090339047908381818185875af1925050503d806000811461089b576040519150601f19603f3d011682016040523d82523d6000602084013e6108a0565b606091505b50509050806108e95760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064015b60405180910390fd5b50565b61090783838360405180602001604052806000815250610c2f565b505050565b610914610e4f565b600c610920828261157a565b5050565b6101f46109346001546000540390565b106109765760405162461bcd60e51b815260206004820152601260248201527146726565206d696e74206973206f7665722160701b60448201526064016108e0565b336000908152600960205260409020546001116109d55760405162461bcd60e51b815260206004820152601c60248201527f4f6e6c792031207065722077616c6c657420697320616c6c6f7765640000000060448201526064016108e0565b3360009081526009602052604081208054600192906109f5908490611650565b90915550610a069050336001610ea9565b565b600061053c82610de1565b600c8054610a20906114fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4c906114fa565b8015610a995780601f10610a6e57610100808354040283529160200191610a99565b820191906000526020600020905b815481529060010190602001808311610a7c57829003601f168201915b505050505081565b60006001600160a01b038216610aca576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6060600c8054610551906114fa565b610b07610e4f565b610a066000610fa7565b606060038054610551906114fa565b600b54811115610b645760405162461bcd60e51b815260206004820152600f60248201526e3230207065722074786e2c20706c7360881b60448201526064016108e0565b34600a5482610b739190611668565b1115610bb95760405162461bcd60e51b815260206004820152601560248201527409ccacac840e8de40e6cadcc840dadee4ca40cae8d605b1b60448201526064016108e0565b6108e93382610ea9565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c3a8484846106b8565b6001600160a01b0383163b15610c7357610c5684848484610ff9565b610c73576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c8482610dba565b610ce85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108e0565b6000600c8054610cf7906114fa565b905011610d13576040518060200160405280600081525061053c565b600c610d1e836110e5565b604051602001610d2f929190611687565b60405160208183030381529060405292915050565b610d4c610e4f565b6001600160a01b038116610db15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e0565b6108e981610fa7565b600080548210801561053c575050600090815260046020526040902054600160e01b161590565b600081600054811015610e365760008181526004602052604081205490600160e01b82169003610e34575b80600003610e2d575060001901600081815260046020526040902054610e0c565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610a065760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108e0565b6000805490829003610ece5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114610f7d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101610f45565b5081600003610f9e57604051622e076360e81b815260040160405180910390fd5b60005550505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061102e90339089908890889060040161171e565b6020604051808303816000875af1925050508015611069575060408051601f3d908101601f191682019092526110669181019061175b565b60015b6110c7573d808015611097576040519150601f19603f3d011682016040523d82523d6000602084013e61109c565b606091505b5080516000036110bf576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608160000361110c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611136578061112081611778565b915061112f9050600a836117a7565b9150611110565b60008167ffffffffffffffff8111156111515761115161133a565b6040519080825280601f01601f19166020018201604052801561117b576020820181803683370190505b5090505b84156110dd576111906001836117bb565b915061119d600a866117d2565b6111a8906030611650565b60f81b8183815181106111bd576111bd6117e6565b60200101906001600160f81b031916908160001a9053506111df600a866117a7565b945061117f565b6001600160e01b0319811681146108e957600080fd5b60006020828403121561120e57600080fd5b8135610e2d816111e6565b60005b8381101561123457818101518382015260200161121c565b83811115610c735750506000910152565b6000815180845261125d816020860160208601611219565b601f01601f19169290920160200192915050565b602081526000610e2d6020830184611245565b60006020828403121561129657600080fd5b5035919050565b80356001600160a01b03811681146112b457600080fd5b919050565b600080604083850312156112cc57600080fd5b6112d58361129d565b946020939093013593505050565b6000602082840312156112f557600080fd5b610e2d8261129d565b60008060006060848603121561131357600080fd5b61131c8461129d565b925061132a6020850161129d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561136b5761136b61133a565b604051601f8501601f19908116603f011681019082821181831017156113935761139361133a565b816040528093508581528686860111156113ac57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156113d857600080fd5b813567ffffffffffffffff8111156113ef57600080fd5b8201601f8101841361140057600080fd5b6110dd84823560208401611350565b6000806040838503121561142257600080fd5b61142b8361129d565b91506020830135801515811461144057600080fd5b809150509250929050565b6000806000806080858703121561146157600080fd5b61146a8561129d565b93506114786020860161129d565b925060408501359150606085013567ffffffffffffffff81111561149b57600080fd5b8501601f810187136114ac57600080fd5b6114bb87823560208401611350565b91505092959194509250565b600080604083850312156114da57600080fd5b6114e38361129d565b91506114f16020840161129d565b90509250929050565b600181811c9082168061150e57607f821691505b60208210810361152e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561090757600081815260208120601f850160051c8101602086101561155b5750805b601f850160051c820191505b8181101561084957828155600101611567565b815167ffffffffffffffff8111156115945761159461133a565b6115a8816115a284546114fa565b84611534565b602080601f8311600181146115dd57600084156115c55750858301515b600019600386901b1c1916600185901b178555610849565b600085815260208120601f198616915b8281101561160c578886015182559484019460019091019084016115ed565b508582101561162a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600082198211156116635761166361163a565b500190565b60008160001904831182151516156116825761168261163a565b500290565b6000808454611695816114fa565b600182811680156116ad57600181146116c2576116f1565b60ff19841687528215158302870194506116f1565b8860005260208060002060005b858110156116e85781548a8201529084019082016116cf565b50505082870194505b505050508351611705818360208801611219565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061175190830184611245565b9695505050505050565b60006020828403121561176d57600080fd5b8151610e2d816111e6565b60006001820161178a5761178a61163a565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826117b6576117b6611791565b500490565b6000828210156117cd576117cd61163a565b500390565b6000826117e1576117e1611791565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220310d571afba17f382497e4938724afdbf3565cc84dfa507267aa254b111755b664736f6c634300080f0033
Deployed Bytecode Sourcemap
58038:1716:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18484:639;;;;;;;;;;-1:-1:-1;18484:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;18484:639:0;;;;;;;;19386:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25877:218::-;;;;;;;;;;-1:-1:-1;25877:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;25877:218:0;1528:203:1;25310:408:0;;;;;;:::i;:::-;;:::i;:::-;;58219:47;;;;;;;;;;-1:-1:-1;58219:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;2510:25:1;;;2498:2;2483:18;58219:47:0;2364:177:1;15137:323:0;;;;;;;;;;-1:-1:-1;15411:12:0;;15198:7;15395:13;:28;15137:323;;29516:2825;;;;;;:::i;:::-;;:::i;58119:41::-;;;;;;;;;;;;58156:4;58119:41;;59164:182;;;;;;;;;;;;;:::i;58167:43::-;;;;;;;;;;;;58207:3;58167:43;;32437:193;;;;;;:::i;:::-;;:::i;58316:31::-;;;;;;;;;;;;;;;;59056:100;;;;;;;;;;-1:-1:-1;59056:100:0;;;;;:::i;:::-;;:::i;58516:290::-;;;:::i;20779:152::-;;;;;;;;;;-1:-1:-1;20779:152:0;;;;;:::i;:::-;;:::i;58356:80::-;;;;;;;;;;;;;:::i;16321:233::-;;;;;;;;;;-1:-1:-1;16321:233:0;;;;;:::i;:::-;;:::i;59658:93::-;;;;;;;;;;;;;:::i;56788:103::-;;;;;;;;;;;;;:::i;56140:87::-;;;;;;;;;;-1:-1:-1;56213:6:0;;-1:-1:-1;;;;;56213:6:0;56140:87;;19562:104;;;;;;;;;;;;;:::i;58275:34::-;;;;;;;;;;;;;;;;58814:234;;;;;;:::i;:::-;;:::i;26435:::-;;;;;;;;;;-1:-1:-1;26435:234:0;;;;;:::i;:::-;;:::i;33228:407::-;;;;;;:::i;:::-;;:::i;59354:296::-;;;;;;;;;;-1:-1:-1;59354:296:0;;;;;:::i;:::-;;:::i;26826:164::-;;;;;;;;;;-1:-1:-1;26826:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26947:25:0;;;26923:4;26947:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26826:164;57046:201;;;;;;;;;;-1:-1:-1;57046:201:0;;;;;:::i;:::-;;:::i;18484:639::-;18569:4;-1:-1:-1;;;;;;;;;18893:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;18970:25:0;;;18893:102;:179;;;-1:-1:-1;;;;;;;;;;19047:25:0;;;18893:179;18873:199;18484:639;-1:-1:-1;;18484:639:0:o;19386:100::-;19440:13;19473:5;19466:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19386:100;:::o;25877:218::-;25953:7;25978:16;25986:7;25978;:16::i;:::-;25973:64;;26003:34;;-1:-1:-1;;;26003:34:0;;;;;;;;;;;25973:64;-1:-1:-1;26057:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;26057:30:0;;25877:218::o;25310:408::-;25399:13;25415:16;25423:7;25415;:16::i;:::-;25399:32;-1:-1:-1;49643:10:0;-1:-1:-1;;;;;25448:28:0;;;25444:175;;25496:44;25513:5;49643:10;26826:164;:::i;25496:44::-;25491:128;;25568:35;;-1:-1:-1;;;25568:35:0;;;;;;;;;;;25491:128;25631:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;25631:35:0;-1:-1:-1;;;;;25631:35:0;;;;;;;;;25682:28;;25631:24;;25682:28;;;;;;;25388:330;25310:408;;:::o;29516:2825::-;29658:27;29688;29707:7;29688:18;:27::i;:::-;29658:57;;29773:4;-1:-1:-1;;;;;29732:45:0;29748:19;-1:-1:-1;;;;;29732:45:0;;29728:86;;29786:28;;-1:-1:-1;;;29786:28:0;;;;;;;;;;;29728:86;29828:27;28624:24;;;:15;:24;;;;;28852:26;;49643:10;28249:30;;;-1:-1:-1;;;;;27942:28:0;;28227:20;;;28224:56;30014:180;;30107:43;30124:4;49643:10;26826:164;:::i;30107:43::-;30102:92;;30159:35;;-1:-1:-1;;;30159:35:0;;;;;;;;;;;30102:92;-1:-1:-1;;;;;30211:16:0;;30207:52;;30236:23;;-1:-1:-1;;;30236:23:0;;;;;;;;;;;30207:52;30408:15;30405:160;;;30548:1;30527:19;30520:30;30405:160;-1:-1:-1;;;;;30945:24:0;;;;;;;:18;:24;;;;;;30943:26;;-1:-1:-1;;30943:26:0;;;31014:22;;;;;;;;;31012:24;;-1:-1:-1;31012:24:0;;;24168:11;24143:23;24139:41;24126:63;-1:-1:-1;;;24126:63:0;31307:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;31602:47:0;;:52;;31598:627;;31707:1;31697:11;;31675:19;31830:30;;;:17;:30;;;;;;:35;;31826:384;;31968:13;;31953:11;:28;31949:242;;32115:30;;;;:17;:30;;;;;:52;;;31949:242;31656:569;31598:627;32272:7;32268:2;-1:-1:-1;;;;;32253:27:0;32262:4;-1:-1:-1;;;;;32253:27:0;;;;;;;;;;;32291:42;29647:2694;;;29516:2825;;;:::o;59164:182::-;56026:13;:11;:13::i;:::-;59233:58:::1;::::0;59215:12:::1;::::0;59241:10:::1;::::0;59265:21:::1;::::0;59215:12;59233:58;59215:12;59233:58;59265:21;59241:10;59233:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59214:77;;;59310:7;59302:36;;;::::0;-1:-1:-1;;;59302:36:0;;6190:2:1;59302:36:0::1;::::0;::::1;6172:21:1::0;6229:2;6209:18;;;6202:30;-1:-1:-1;;;6248:18:1;;;6241:46;6304:18;;59302:36:0::1;;;;;;;;;59203:143;59164:182::o:0;32437:193::-;32583:39;32600:4;32606:2;32610:7;32583:39;;;;;;;;;;;;:16;:39::i;:::-;32437:193;;;:::o;59056:100::-;56026:13;:11;:13::i;:::-;59130:7:::1;:18;59140:8:::0;59130:7;:18:::1;:::i;:::-;;59056:100:::0;:::o;58516:290::-;58207:3;58581:13;15411:12;;15198:7;15395:13;:28;;15137:323;58581:13;:29;58573:60;;;;-1:-1:-1;;;58573:60:0;;8739:2:1;58573:60:0;;;8721:21:1;8778:2;8758:18;;;8751:30;-1:-1:-1;;;8797:18:1;;;8790:48;8855:18;;58573:60:0;8537:342:1;58573:60:0;58668:10;58652:27;;;;:15;:27;;;;;;58682:1;-1:-1:-1;58644:72:0;;;;-1:-1:-1;;;58644:72:0;;9086:2:1;58644:72:0;;;9068:21:1;9125:2;9105:18;;;9098:30;9164;9144:18;;;9137:58;9212:18;;58644:72:0;8884:352:1;58644:72:0;58753:10;58737:27;;;;:15;:27;;;;;:30;;58766:1;;58737:27;:30;;58766:1;;58737:30;:::i;:::-;;;;-1:-1:-1;58778:20:0;;-1:-1:-1;58784:10:0;58796:1;58778:5;:20::i;:::-;58516:290::o;20779:152::-;20851:7;20894:27;20913:7;20894:18;:27::i;58356:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16321:233::-;16393:7;-1:-1:-1;;;;;16417:19:0;;16413:60;;16445:28;;-1:-1:-1;;;16445:28:0;;;;;;;;;;;16413:60;-1:-1:-1;;;;;;16491:25:0;;;;;:18;:25;;;;;;10480:13;16491:55;;16321:233::o;59658:93::-;59703:13;59736:7;59729:14;;;;;:::i;56788:103::-;56026:13;:11;:13::i;:::-;56853:30:::1;56880:1;56853:18;:30::i;19562:104::-:0;19618:13;19651:7;19644:14;;;;;:::i;58814:234::-;58895:11;;58883:8;:23;;58875:51;;;;-1:-1:-1;;;58875:51:0;;9708:2:1;58875:51:0;;;9690:21:1;9747:2;9727:18;;;9720:30;-1:-1:-1;;;9766:18:1;;;9759:45;9821:18;;58875:51:0;9506:339:1;58875:51:0;58965:9;58956:5;;58945:8;:16;;;;:::i;:::-;:29;;58937:63;;;;-1:-1:-1;;;58937:63:0;;10225:2:1;58937:63:0;;;10207:21:1;10264:2;10244:18;;;10237:30;-1:-1:-1;;;10283:18:1;;;10276:51;10344:18;;58937:63:0;10023:345:1;58937:63:0;59013:27;59019:10;59031:8;59013:5;:27::i;26435:234::-;49643:10;26530:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26530:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26530:60:0;;;;;;;;;;26606:55;;540:41:1;;;26530:49:0;;49643:10;26606:55;;513:18:1;26606:55:0;;;;;;;26435:234;;:::o;33228:407::-;33403:31;33416:4;33422:2;33426:7;33403:12;:31::i;:::-;-1:-1:-1;;;;;33449:14:0;;;:19;33445:183;;33488:56;33519:4;33525:2;33529:7;33538:5;33488:30;:56::i;:::-;33483:145;;33572:40;;-1:-1:-1;;;33572:40:0;;;;;;;;;;;33483:145;33228:407;;;;:::o;59354:296::-;59427:13;59461:16;59469:7;59461;:16::i;:::-;59453:76;;;;-1:-1:-1;;;59453:76:0;;10575:2:1;59453:76:0;;;10557:21:1;10614:2;10594:18;;;10587:30;10653:34;10633:18;;;10626:62;-1:-1:-1;;;10704:18:1;;;10697:45;10759:19;;59453:76:0;10373:411:1;59453:76:0;59571:1;59553:7;59547:21;;;;;:::i;:::-;;;:25;:95;;;;;;;;;;;;;;;;;59599:7;59608:18;:7;:16;:18::i;:::-;59582:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59540:102;59354:296;-1:-1:-1;;59354:296:0:o;57046:201::-;56026:13;:11;:13::i;:::-;-1:-1:-1;;;;;57135:22:0;::::1;57127:73;;;::::0;-1:-1:-1;;;57127:73:0;;12170:2:1;57127:73:0::1;::::0;::::1;12152:21:1::0;12209:2;12189:18;;;12182:30;12248:34;12228:18;;;12221:62;-1:-1:-1;;;12299:18:1;;;12292:36;12345:19;;57127:73:0::1;11968:402:1::0;57127:73:0::1;57211:28;57230:8;57211:18;:28::i;27248:282::-:0;27313:4;27403:13;;27393:7;:23;27350:153;;;;-1:-1:-1;;27454:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;27454:44:0;:49;;27248:282::o;21934:1275::-;22001:7;22036;22138:13;;22131:4;:20;22127:1015;;;22176:14;22193:23;;;:17;:23;;;;;;;-1:-1:-1;;;22282:24:0;;:29;;22278:845;;22947:113;22954:6;22964:1;22954:11;22947:113;;-1:-1:-1;;;23025:6:0;23007:25;;;;:17;:25;;;;;;22947:113;;;23093:6;21934:1275;-1:-1:-1;;;21934:1275:0:o;22278:845::-;22153:989;22127:1015;23170:31;;-1:-1:-1;;;23170:31:0;;;;;;;;;;;56305:132;56213:6;;-1:-1:-1;;;;;56213:6:0;49643:10;56369:23;56361:68;;;;-1:-1:-1;;;56361:68:0;;12577:2:1;56361:68:0;;;12559:21:1;;;12596:18;;;12589:30;12655:34;12635:18;;;12628:62;12707:18;;56361:68:0;12375:356:1;36897:2966:0;36970:20;36993:13;;;37021;;;37017:44;;37043:18;;-1:-1:-1;;;37043:18:0;;;;;;;;;;;37017:44;-1:-1:-1;;;;;37549:22:0;;;;;;:18;:22;;;;10618:2;37549:22;;;:71;;37587:32;37575:45;;37549:71;;;37863:31;;;:17;:31;;;;;-1:-1:-1;24599:15:0;;24573:24;24569:46;24168:11;24143:23;24139:41;24136:52;24126:63;;37863:173;;38098:23;;;;37863:31;;37549:22;;38863:25;37549:22;;38716:335;39377:1;39363:12;39359:20;39317:346;39418:3;39409:7;39406:16;39317:346;;39636:7;39626:8;39623:1;39596:25;39593:1;39590;39585:59;39471:1;39458:15;39317:346;;;39321:77;39696:8;39708:1;39696:13;39692:45;;39718:19;;-1:-1:-1;;;39718:19:0;;;;;;;;;;;39692:45;39754:13;:19;-1:-1:-1;32437:193:0;;;:::o;57407:191::-;57500:6;;;-1:-1:-1;;;;;57517:17:0;;;-1:-1:-1;;;;;;57517:17:0;;;;;;;57550:40;;57500:6;;;57517:17;57500:6;;57550:40;;57481:16;;57550:40;57470:128;57407:191;:::o;35719:716::-;35903:88;;-1:-1:-1;;;35903:88:0;;35882:4;;-1:-1:-1;;;;;35903:45:0;;;;;:88;;49643:10;;35970:4;;35976:7;;35985:5;;35903:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35903:88:0;;;;;;;;-1:-1:-1;;35903:88:0;;;;;;;;;;;;:::i;:::-;;;35899:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36186:6;:13;36203:1;36186:18;36182:235;;36232:40;;-1:-1:-1;;;36232:40:0;;;;;;;;;;;36182:235;36375:6;36369:13;36360:6;36356:2;36352:15;36345:38;35899:529;-1:-1:-1;;;;;;36062:64:0;-1:-1:-1;;;36062:64:0;;-1:-1:-1;35899:529:0;35719:716;;;;;;:::o;51945:723::-;52001:13;52222:5;52231:1;52222:10;52218:53;;-1:-1:-1;;52249:10:0;;;;;;;;;;;;-1:-1:-1;;;52249:10:0;;;;;51945:723::o;52218:53::-;52296:5;52281:12;52337:78;52344:9;;52337:78;;52370:8;;;;:::i;:::-;;-1:-1:-1;52393:10:0;;-1:-1:-1;52401:2:0;52393:10;;:::i;:::-;;;52337:78;;;52425:19;52457:6;52447:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52447:17:0;;52425:39;;52475:154;52482:10;;52475:154;;52509:11;52519:1;52509:11;;:::i;:::-;;-1:-1:-1;52578:10:0;52586:2;52578:5;:10;:::i;:::-;52565:24;;:2;:24;:::i;:::-;52552:39;;52535:6;52542;52535:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;52535:56:0;;;;;;;;-1:-1:-1;52606:11:0;52615:2;52606:11;;:::i;:::-;;;52475:154;;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:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:186::-;2232:6;2285:2;2273:9;2264:7;2260:23;2256:32;2253:52;;;2301:1;2298;2291:12;2253:52;2324:29;2343:9;2324:29;:::i;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:632;3076:5;3106:18;3147:2;3139:6;3136:14;3133:40;;;3153:18;;:::i;:::-;3228:2;3222:9;3196:2;3282:15;;-1:-1:-1;;3278:24:1;;;3304:2;3274:33;3270:42;3258:55;;;3328:18;;;3348:22;;;3325:46;3322:72;;;3374:18;;:::i;:::-;3414:10;3410:2;3403:22;3443:6;3434:15;;3473:6;3465;3458:22;3513:3;3504:6;3499:3;3495:16;3492:25;3489:45;;;3530:1;3527;3520:12;3489:45;3580:6;3575:3;3568:4;3560:6;3556:17;3543:44;3635:1;3628:4;3619:6;3611;3607:19;3603:30;3596:41;;;;3011:632;;;;;:::o;3648:451::-;3717:6;3770:2;3758:9;3749:7;3745:23;3741:32;3738:52;;;3786:1;3783;3776:12;3738:52;3826:9;3813:23;3859:18;3851:6;3848:30;3845:50;;;3891:1;3888;3881:12;3845:50;3914:22;;3967:4;3959:13;;3955:27;-1:-1:-1;3945:55:1;;3996:1;3993;3986:12;3945:55;4019:74;4085:7;4080:2;4067:16;4062:2;4058;4054:11;4019:74;:::i;4104:347::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;:::-;4259:39;;4348:2;4337:9;4333:18;4320:32;4395:5;4388:13;4381:21;4374:5;4371:32;4361:60;;4417:1;4414;4407:12;4361:60;4440:5;4430:15;;;4104:347;;;;;:::o;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:1;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5393:380::-;5472:1;5468:12;;;;5515;;;5536:61;;5590:4;5582:6;5578:17;5568:27;;5536:61;5643:2;5635:6;5632:14;5612:18;5609:38;5606:161;;5689:10;5684:3;5680:20;5677:1;5670:31;5724:4;5721:1;5714:15;5752:4;5749:1;5742:15;5606:161;;5393:380;;;:::o;6459:545::-;6561:2;6556:3;6553:11;6550:448;;;6597:1;6622:5;6618:2;6611:17;6667:4;6663:2;6653:19;6737:2;6725:10;6721:19;6718:1;6714:27;6708:4;6704:38;6773:4;6761:10;6758:20;6755:47;;;-1:-1:-1;6796:4:1;6755:47;6851:2;6846:3;6842:12;6839:1;6835:20;6829:4;6825:31;6815:41;;6906:82;6924:2;6917:5;6914:13;6906:82;;;6969:17;;;6950:1;6939:13;6906:82;;7180:1352;7306:3;7300:10;7333:18;7325:6;7322:30;7319:56;;;7355:18;;:::i;:::-;7384:97;7474:6;7434:38;7466:4;7460:11;7434:38;:::i;:::-;7428:4;7384:97;:::i;:::-;7536:4;;7600:2;7589:14;;7617:1;7612:663;;;;8319:1;8336:6;8333:89;;;-1:-1:-1;8388:19:1;;;8382:26;8333:89;-1:-1:-1;;7137:1:1;7133:11;;;7129:24;7125:29;7115:40;7161:1;7157:11;;;7112:57;8435:81;;7582:944;;7612:663;6406:1;6399:14;;;6443:4;6430:18;;-1:-1:-1;;7648:20:1;;;7766:236;7780:7;7777:1;7774:14;7766:236;;;7869:19;;;7863:26;7848:42;;7961:27;;;;7929:1;7917:14;;;;7796:19;;7766:236;;;7770:3;8030:6;8021:7;8018:19;8015:201;;;8091:19;;;8085:26;-1:-1:-1;;8174:1:1;8170:14;;;8186:3;8166:24;8162:37;8158:42;8143:58;8128:74;;8015:201;-1:-1:-1;;;;;8262:1:1;8246:14;;;8242:22;8229:36;;-1:-1:-1;7180:1352:1:o;9241:127::-;9302:10;9297:3;9293:20;9290:1;9283:31;9333:4;9330:1;9323:15;9357:4;9354:1;9347:15;9373:128;9413:3;9444:1;9440:6;9437:1;9434:13;9431:39;;;9450:18;;:::i;:::-;-1:-1:-1;9486:9:1;;9373:128::o;9850:168::-;9890:7;9956:1;9952;9948:6;9944:14;9941:1;9938:21;9933:1;9926:9;9919:17;9915:45;9912:71;;;9963:18;;:::i;:::-;-1:-1:-1;10003:9:1;;9850:168::o;10789:1174::-;11066:3;11095:1;11128:6;11122:13;11158:36;11184:9;11158:36;:::i;:::-;11213:1;11230:18;;;11257:133;;;;11404:1;11399:356;;;;11223:532;;11257:133;-1:-1:-1;;11290:24:1;;11278:37;;11363:14;;11356:22;11344:35;;11335:45;;;-1:-1:-1;11257:133:1;;11399:356;11430:6;11427:1;11420:17;11460:4;11505:2;11502:1;11492:16;11530:1;11544:165;11558:6;11555:1;11552:13;11544:165;;;11636:14;;11623:11;;;11616:35;11679:16;;;;11573:10;;11544:165;;;11548:3;;;11738:6;11733:3;11729:16;11722:23;;11223:532;;;;;11786:6;11780:13;11802:55;11848:8;11843:3;11836:4;11828:6;11824:17;11802:55;:::i;:::-;-1:-1:-1;;;11879:18:1;;11906:22;;;11955:1;11944:13;;10789:1174;-1:-1:-1;;;;10789:1174:1:o;12736:489::-;-1:-1:-1;;;;;13005:15:1;;;12987:34;;13057:15;;13052:2;13037:18;;13030:43;13104:2;13089:18;;13082:34;;;13152:3;13147:2;13132:18;;13125:31;;;12930:4;;13173:46;;13199:19;;13191:6;13173:46;:::i;:::-;13165:54;12736:489;-1:-1:-1;;;;;;12736:489:1:o;13230:249::-;13299:6;13352:2;13340:9;13331:7;13327:23;13323:32;13320:52;;;13368:1;13365;13358:12;13320:52;13400:9;13394:16;13419:30;13443:5;13419:30;:::i;13484:135::-;13523:3;13544:17;;;13541:43;;13564:18;;:::i;:::-;-1:-1:-1;13611:1:1;13600:13;;13484:135::o;13624:127::-;13685:10;13680:3;13676:20;13673:1;13666:31;13716:4;13713:1;13706:15;13740:4;13737:1;13730:15;13756:120;13796:1;13822;13812:35;;13827:18;;:::i;:::-;-1:-1:-1;13861:9:1;;13756:120::o;13881:125::-;13921:4;13949:1;13946;13943:8;13940:34;;;13954:18;;:::i;:::-;-1:-1:-1;13991:9:1;;13881:125::o;14011:112::-;14043:1;14069;14059:35;;14074:18;;:::i;:::-;-1:-1:-1;14108:9:1;;14011:112::o;14128:127::-;14189:10;14184:3;14180:20;14177:1;14170:31;14220:4;14217:1;14210:15;14244:4;14241:1;14234:15
Swarm Source
ipfs://310d571afba17f382497e4938724afdbf3565cc84dfa507267aa254b111755b6
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.