ERC-721
Overview
Max Total Supply
999 SAFTB
Holders
406
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SAFTBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
StayAwayFromTheBirds
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-10 */ // SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.0; /** * @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); } /** * @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). */ 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) } } } interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) { revert OperatorNotAllowed(msg.sender); } } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } _; } } contract StayAwayFromTheBirds is ERC721A { uint256 public maxSupply = 999; uint256 public price = 0 ether; address public owner; string uri; modifier onlyOwner { require(owner == msg.sender); _; } constructor() ERC721A("StayAwayFromTheBirds", "SAFTB") { owner = msg.sender; price = 0.002 ether; uri = "ipfs://QmYmZbmeNPmr73dR8KF1GMzYYwrebCk2YWY5MxSKmBdv6X/"; } mapping(uint256 => uint256) free; function publicMint(uint256 amount) payable public { require(totalSupply() + amount <= maxSupply); _mint(amount); } function setUri(string memory _uri) external onlyOwner { uri = _uri; } function _mint(uint256 amount) internal { if (msg.value == 0) { require(amount == 1); require(msg.sender == tx.origin); uint256 t = totalSupply(); if (t > maxSupply / 3) { require(balanceOf(msg.sender) == 0); uint256 freeNum = (maxSupply - t) / 12; require(free[block.number] < freeNum); free[block.number]++; } _safeMint(msg.sender, 1); return; } require(msg.value >= amount * price); _safeMint(msg.sender, amount); } function treasuMint(uint16 _mintAmount, address _addr) external onlyOwner { require(totalSupply() + _mintAmount <= maxSupply, "Exceeds max supply."); _safeMint(_addr, _mintAmount); } function tokenURI(uint256 tokenId) public view override returns (string memory) { return string(abi.encodePacked(uri, _toString(tokenId), ".json")); } function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual returns (address, uint256) { uint256 royaltyAmount = (_salePrice * 50) / 1000; return (owner, royaltyAmount); } function withdraw() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"_uri","type":"string"}],"name":"setUri","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":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_addr","type":"address"}],"name":"treasuMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526103e760085560006009553480156200001c57600080fd5b506040518060400160405280601481526020017f537461794177617946726f6d54686542697264730000000000000000000000008152506040518060400160405280600581526020016429a0a32a2160d91b815250816002908162000082919062000189565b50600362000091828262000189565b50600080555050600a80546001600160a01b0319163317905566071afd498d000060095560408051606081019091526036808252620017166020830139600b90620000dd908262000189565b5062000255565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010f57607f821691505b6020821081036200013057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018457600081815260208120601f850160051c810160208610156200015f5750805b601f850160051c820191505b8181101562000180578281556001016200016b565b5050505b505050565b81516001600160401b03811115620001a557620001a5620000e4565b620001bd81620001b68454620000fa565b8462000136565b602080601f831160018114620001f55760008415620001dc5750858301515b600019600386901b1c1916600185901b17855562000180565b600085815260208120601f198616915b82811015620002265788860151825594840194600190910190840162000205565b5085821015620002455787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6114b180620002656000396000f3fe6080604052600436106101355760003560e01c806370a08231116100ab578063a22cb4651161006f578063a22cb46514610339578063b88d4fde14610359578063c87b56dd1461036c578063c8adcb6d1461038c578063d5abeb01146103ac578063e985e9c5146103c257600080fd5b806370a08231146102ae5780638da5cb5b146102ce57806395d89b41146102ee5780639b642de114610303578063a035b1fe1461032357600080fd5b806323b872dd116100fd57806323b872dd146102015780632a55205a146102145780632db11544146102535780633ccfd60b1461026657806342842e0e1461027b5780636352211e1461028e57600080fd5b806301ffc9a71461013a57806306fdde031461016f578063081812fc14610191578063095ea7b3146101c957806318160ddd146101de575b600080fd5b34801561014657600080fd5b5061015a610155366004610e7f565b6103e2565b60405190151581526020015b60405180910390f35b34801561017b57600080fd5b50610184610434565b6040516101669190610eec565b34801561019d57600080fd5b506101b16101ac366004610eff565b6104c6565b6040516001600160a01b039091168152602001610166565b6101dc6101d7366004610f34565b61050a565b005b3480156101ea57600080fd5b50600154600054035b604051908152602001610166565b6101dc61020f366004610f5e565b6105aa565b34801561022057600080fd5b5061023461022f366004610f9a565b610743565b604080516001600160a01b039093168352602083019190915201610166565b6101dc610261366004610eff565b610776565b34801561027257600080fd5b506101dc6107a8565b6101dc610289366004610f5e565b6107eb565b34801561029a57600080fd5b506101b16102a9366004610eff565b61080b565b3480156102ba57600080fd5b506101f36102c9366004610fbc565b610816565b3480156102da57600080fd5b50600a546101b1906001600160a01b031681565b3480156102fa57600080fd5b50610184610865565b34801561030f57600080fd5b506101dc61031e366004611063565b610874565b34801561032f57600080fd5b506101f360095481565b34801561034557600080fd5b506101dc6103543660046110ac565b61089b565b6101dc6103673660046110e8565b610907565b34801561037857600080fd5b50610184610387366004610eff565b610951565b34801561039857600080fd5b506101dc6103a7366004611164565b610985565b3480156103b857600080fd5b506101f360085481565b3480156103ce57600080fd5b5061015a6103dd3660046111a0565b610a11565b60006301ffc9a760e01b6001600160e01b03198316148061041357506380ac58cd60e01b6001600160e01b03198316145b8061042e5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610443906111bc565b80601f016020809104026020016040519081016040528092919081815260200182805461046f906111bc565b80156104bc5780601f10610491576101008083540402835291602001916104bc565b820191906000526020600020905b81548152906001019060200180831161049f57829003601f168201915b5050505050905090565b60006104d182610a3f565b6104ee576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105158261080b565b9050336001600160a01b0382161461054e576105318133610a11565b61054e576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006105b582610a66565b9050836001600160a01b0316816001600160a01b0316146105e85760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610635576106188633610a11565b61063557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661065c57604051633a954ecd60e21b815260040160405180910390fd5b801561066757600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036106f9576001840160008181526004602052604081205490036106f75760005481146106f75760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600080806103e861075585603261120c565b61075f9190611223565b600a546001600160a01b0316969095509350505050565b600854816107876001546000540390565b6107919190611245565b111561079c57600080fd5b6107a581610ad4565b50565b600a546001600160a01b031633146107bf57600080fd5b60405133904780156108fc02916000818181858888f193505050501580156107a5573d6000803e3d6000fd5b61080683838360405180602001604052806000815250610907565b505050565b600061042e82610a66565b60006001600160a01b03821661083f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b606060038054610443906111bc565b600a546001600160a01b0316331461088b57600080fd5b600b610897828261129e565b5050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109128484846105aa565b6001600160a01b0383163b1561094b5761092e84848484610bb9565b61094b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060600b61095e83610ca5565b60405160200161096f92919061135e565b6040516020818303038152906040529050919050565b600a546001600160a01b0316331461099c57600080fd5b6008548261ffff166109b16001546000540390565b6109bb9190611245565b1115610a035760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604482015260640160405180910390fd5b610897818361ffff16610ce9565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600080548210801561042e575050600090815260046020526040902054600160e01b161590565b600081600054811015610abb5760008181526004602052604081205490600160e01b82169003610ab9575b80600003610ab2575060001901600081815260046020526040902054610a91565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b34600003610b965780600114610ae957600080fd5b333214610af557600080fd5b6000610b046001546000540390565b90506003600854610b159190611223565b811115610b8b57610b2533610816565b15610b2f57600080fd5b6000600c82600854610b4191906113f5565b610b4b9190611223565b436000908152600c60205260409020549091508111610b6957600080fd5b436000908152600c60205260408120805491610b8483611408565b9190505550505b610897336001610ce9565b600954610ba3908261120c565b341015610baf57600080fd5b6107a53382610ce9565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610bee903390899088908890600401611421565b6020604051808303816000875af1925050508015610c29575060408051601f3d908101601f19168201909252610c269181019061145e565b60015b610c87573d808015610c57576040519150601f19603f3d011682016040523d82523d6000602084013e610c5c565b606091505b508051600003610c7f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480610cbf5750819003601f19909101908152919050565b610897828260405180602001604052806000815250610d088383610d6b565b6001600160a01b0383163b15610806576000548281035b610d326000868380600101945086610bb9565b610d4f576040516368d2bf6b60e11b815260040160405180910390fd5b818110610d1f578160005414610d6457600080fd5b5050505050565b6000805490829003610d905760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114610e3f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101610e07565b5081600003610e6057604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b0319811681146107a557600080fd5b600060208284031215610e9157600080fd5b8135610ab281610e69565b60005b83811015610eb7578181015183820152602001610e9f565b50506000910152565b60008151808452610ed8816020860160208601610e9c565b601f01601f19169290920160200192915050565b602081526000610ab26020830184610ec0565b600060208284031215610f1157600080fd5b5035919050565b80356001600160a01b0381168114610f2f57600080fd5b919050565b60008060408385031215610f4757600080fd5b610f5083610f18565b946020939093013593505050565b600080600060608486031215610f7357600080fd5b610f7c84610f18565b9250610f8a60208501610f18565b9150604084013590509250925092565b60008060408385031215610fad57600080fd5b50508035926020909101359150565b600060208284031215610fce57600080fd5b610ab282610f18565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561100857611008610fd7565b604051601f8501601f19908116603f0116810190828211818310171561103057611030610fd7565b8160405280935085815286868601111561104957600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561107557600080fd5b813567ffffffffffffffff81111561108c57600080fd5b8201601f8101841361109d57600080fd5b610c9d84823560208401610fed565b600080604083850312156110bf57600080fd5b6110c883610f18565b9150602083013580151581146110dd57600080fd5b809150509250929050565b600080600080608085870312156110fe57600080fd5b61110785610f18565b935061111560208601610f18565b925060408501359150606085013567ffffffffffffffff81111561113857600080fd5b8501601f8101871361114957600080fd5b61115887823560208401610fed565b91505092959194509250565b6000806040838503121561117757600080fd5b823561ffff8116811461118957600080fd5b915061119760208401610f18565b90509250929050565b600080604083850312156111b357600080fd5b61118983610f18565b600181811c908216806111d057607f821691505b6020821081036111f057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761042e5761042e6111f6565b60008261124057634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561042e5761042e6111f6565b601f82111561080657600081815260208120601f850160051c8101602086101561127f5750805b601f850160051c820191505b8181101561073b5782815560010161128b565b815167ffffffffffffffff8111156112b8576112b8610fd7565b6112cc816112c684546111bc565b84611258565b602080601f83116001811461130157600084156112e95750858301515b600019600386901b1c1916600185901b17855561073b565b600085815260208120601f198616915b8281101561133057888601518255948401946001909101908401611311565b508582101561134e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600080845461136c816111bc565b600182811680156113845760018114611399576113c8565b60ff19841687528215158302870194506113c8565b8860005260208060002060005b858110156113bf5781548a8201529084019082016113a6565b50505082870194505b5050505083516113dc818360208801610e9c565b64173539b7b760d91b9101908152600501949350505050565b8181038181111561042e5761042e6111f6565b60006001820161141a5761141a6111f6565b5060010190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061145490830184610ec0565b9695505050505050565b60006020828403121561147057600080fd5b8151610ab281610e6956fea2646970667358221220e56f13347a4014cee838858400d3a4b2ec61d0537c12f0634f13f0a6775df26a64736f6c63430008120033697066733a2f2f516d596d5a626d654e506d7237336452384b4631474d7a595977726562436b32595759354d78534b6d42647636582f
Deployed Bytecode
0x6080604052600436106101355760003560e01c806370a08231116100ab578063a22cb4651161006f578063a22cb46514610339578063b88d4fde14610359578063c87b56dd1461036c578063c8adcb6d1461038c578063d5abeb01146103ac578063e985e9c5146103c257600080fd5b806370a08231146102ae5780638da5cb5b146102ce57806395d89b41146102ee5780639b642de114610303578063a035b1fe1461032357600080fd5b806323b872dd116100fd57806323b872dd146102015780632a55205a146102145780632db11544146102535780633ccfd60b1461026657806342842e0e1461027b5780636352211e1461028e57600080fd5b806301ffc9a71461013a57806306fdde031461016f578063081812fc14610191578063095ea7b3146101c957806318160ddd146101de575b600080fd5b34801561014657600080fd5b5061015a610155366004610e7f565b6103e2565b60405190151581526020015b60405180910390f35b34801561017b57600080fd5b50610184610434565b6040516101669190610eec565b34801561019d57600080fd5b506101b16101ac366004610eff565b6104c6565b6040516001600160a01b039091168152602001610166565b6101dc6101d7366004610f34565b61050a565b005b3480156101ea57600080fd5b50600154600054035b604051908152602001610166565b6101dc61020f366004610f5e565b6105aa565b34801561022057600080fd5b5061023461022f366004610f9a565b610743565b604080516001600160a01b039093168352602083019190915201610166565b6101dc610261366004610eff565b610776565b34801561027257600080fd5b506101dc6107a8565b6101dc610289366004610f5e565b6107eb565b34801561029a57600080fd5b506101b16102a9366004610eff565b61080b565b3480156102ba57600080fd5b506101f36102c9366004610fbc565b610816565b3480156102da57600080fd5b50600a546101b1906001600160a01b031681565b3480156102fa57600080fd5b50610184610865565b34801561030f57600080fd5b506101dc61031e366004611063565b610874565b34801561032f57600080fd5b506101f360095481565b34801561034557600080fd5b506101dc6103543660046110ac565b61089b565b6101dc6103673660046110e8565b610907565b34801561037857600080fd5b50610184610387366004610eff565b610951565b34801561039857600080fd5b506101dc6103a7366004611164565b610985565b3480156103b857600080fd5b506101f360085481565b3480156103ce57600080fd5b5061015a6103dd3660046111a0565b610a11565b60006301ffc9a760e01b6001600160e01b03198316148061041357506380ac58cd60e01b6001600160e01b03198316145b8061042e5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610443906111bc565b80601f016020809104026020016040519081016040528092919081815260200182805461046f906111bc565b80156104bc5780601f10610491576101008083540402835291602001916104bc565b820191906000526020600020905b81548152906001019060200180831161049f57829003601f168201915b5050505050905090565b60006104d182610a3f565b6104ee576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105158261080b565b9050336001600160a01b0382161461054e576105318133610a11565b61054e576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006105b582610a66565b9050836001600160a01b0316816001600160a01b0316146105e85760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610635576106188633610a11565b61063557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661065c57604051633a954ecd60e21b815260040160405180910390fd5b801561066757600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036106f9576001840160008181526004602052604081205490036106f75760005481146106f75760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600080806103e861075585603261120c565b61075f9190611223565b600a546001600160a01b0316969095509350505050565b600854816107876001546000540390565b6107919190611245565b111561079c57600080fd5b6107a581610ad4565b50565b600a546001600160a01b031633146107bf57600080fd5b60405133904780156108fc02916000818181858888f193505050501580156107a5573d6000803e3d6000fd5b61080683838360405180602001604052806000815250610907565b505050565b600061042e82610a66565b60006001600160a01b03821661083f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b606060038054610443906111bc565b600a546001600160a01b0316331461088b57600080fd5b600b610897828261129e565b5050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109128484846105aa565b6001600160a01b0383163b1561094b5761092e84848484610bb9565b61094b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060600b61095e83610ca5565b60405160200161096f92919061135e565b6040516020818303038152906040529050919050565b600a546001600160a01b0316331461099c57600080fd5b6008548261ffff166109b16001546000540390565b6109bb9190611245565b1115610a035760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604482015260640160405180910390fd5b610897818361ffff16610ce9565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600080548210801561042e575050600090815260046020526040902054600160e01b161590565b600081600054811015610abb5760008181526004602052604081205490600160e01b82169003610ab9575b80600003610ab2575060001901600081815260046020526040902054610a91565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b34600003610b965780600114610ae957600080fd5b333214610af557600080fd5b6000610b046001546000540390565b90506003600854610b159190611223565b811115610b8b57610b2533610816565b15610b2f57600080fd5b6000600c82600854610b4191906113f5565b610b4b9190611223565b436000908152600c60205260409020549091508111610b6957600080fd5b436000908152600c60205260408120805491610b8483611408565b9190505550505b610897336001610ce9565b600954610ba3908261120c565b341015610baf57600080fd5b6107a53382610ce9565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610bee903390899088908890600401611421565b6020604051808303816000875af1925050508015610c29575060408051601f3d908101601f19168201909252610c269181019061145e565b60015b610c87573d808015610c57576040519150601f19603f3d011682016040523d82523d6000602084013e610c5c565b606091505b508051600003610c7f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480610cbf5750819003601f19909101908152919050565b610897828260405180602001604052806000815250610d088383610d6b565b6001600160a01b0383163b15610806576000548281035b610d326000868380600101945086610bb9565b610d4f576040516368d2bf6b60e11b815260040160405180910390fd5b818110610d1f578160005414610d6457600080fd5b5050505050565b6000805490829003610d905760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114610e3f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101610e07565b5081600003610e6057604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b0319811681146107a557600080fd5b600060208284031215610e9157600080fd5b8135610ab281610e69565b60005b83811015610eb7578181015183820152602001610e9f565b50506000910152565b60008151808452610ed8816020860160208601610e9c565b601f01601f19169290920160200192915050565b602081526000610ab26020830184610ec0565b600060208284031215610f1157600080fd5b5035919050565b80356001600160a01b0381168114610f2f57600080fd5b919050565b60008060408385031215610f4757600080fd5b610f5083610f18565b946020939093013593505050565b600080600060608486031215610f7357600080fd5b610f7c84610f18565b9250610f8a60208501610f18565b9150604084013590509250925092565b60008060408385031215610fad57600080fd5b50508035926020909101359150565b600060208284031215610fce57600080fd5b610ab282610f18565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561100857611008610fd7565b604051601f8501601f19908116603f0116810190828211818310171561103057611030610fd7565b8160405280935085815286868601111561104957600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561107557600080fd5b813567ffffffffffffffff81111561108c57600080fd5b8201601f8101841361109d57600080fd5b610c9d84823560208401610fed565b600080604083850312156110bf57600080fd5b6110c883610f18565b9150602083013580151581146110dd57600080fd5b809150509250929050565b600080600080608085870312156110fe57600080fd5b61110785610f18565b935061111560208601610f18565b925060408501359150606085013567ffffffffffffffff81111561113857600080fd5b8501601f8101871361114957600080fd5b61115887823560208401610fed565b91505092959194509250565b6000806040838503121561117757600080fd5b823561ffff8116811461118957600080fd5b915061119760208401610f18565b90509250929050565b600080604083850312156111b357600080fd5b61118983610f18565b600181811c908216806111d057607f821691505b6020821081036111f057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761042e5761042e6111f6565b60008261124057634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561042e5761042e6111f6565b601f82111561080657600081815260208120601f850160051c8101602086101561127f5750805b601f850160051c820191505b8181101561073b5782815560010161128b565b815167ffffffffffffffff8111156112b8576112b8610fd7565b6112cc816112c684546111bc565b84611258565b602080601f83116001811461130157600084156112e95750858301515b600019600386901b1c1916600185901b17855561073b565b600085815260208120601f198616915b8281101561133057888601518255948401946001909101908401611311565b508582101561134e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600080845461136c816111bc565b600182811680156113845760018114611399576113c8565b60ff19841687528215158302870194506113c8565b8860005260208060002060005b858110156113bf5781548a8201529084019082016113a6565b50505082870194505b5050505083516113dc818360208801610e9c565b64173539b7b760d91b9101908152600501949350505050565b8181038181111561042e5761042e6111f6565b60006001820161141a5761141a6111f6565b5060010190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061145490830184610ec0565b9695505050505050565b60006020828403121561147057600080fd5b8151610ab281610e6956fea2646970667358221220e56f13347a4014cee838858400d3a4b2ec61d0537c12f0634f13f0a6775df26a64736f6c63430008120033
Deployed Bytecode Sourcemap
56764:2082:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18746:639;;;;;;;;;;-1:-1:-1;18746:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;18746:639:0;;;;;;;;19648:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26147:218::-;;;;;;;;;;-1:-1:-1;26147:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;26147:218:0;1533:203:1;25580:408:0;;;;;;:::i;:::-;;:::i;:::-;;15399:323;;;;;;;;;;-1:-1:-1;15673:12:0;;15460:7;15657:13;:28;15399:323;;;2324:25:1;;;2312:2;2297:18;15399:323:0;2178:177:1;29786:2825:0;;;;;;:::i;:::-;;:::i;58513:213::-;;;;;;;;;;-1:-1:-1;58513:213:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3138:32:1;;;3120:51;;3202:2;3187:18;;3180:34;;;;3093:18;58513:213:0;2946:274:1;57264:138:0;;;;;;:::i;:::-;;:::i;58734:109::-;;;;;;;;;;;;;:::i;32707:193::-;;;;;;:::i;:::-;;:::i;21049:152::-;;;;;;;;;;-1:-1:-1;21049:152:0;;;;;:::i;:::-;;:::i;16583:233::-;;;;;;;;;;-1:-1:-1;16583:233:0;;;;;:::i;:::-;;:::i;56886:20::-;;;;;;;;;;-1:-1:-1;56886:20:0;;;;-1:-1:-1;;;;;56886:20:0;;;19824:104;;;;;;;;;;;;;:::i;57410:84::-;;;;;;;;;;-1:-1:-1;57410:84:0;;;;;:::i;:::-;;:::i;56849:30::-;;;;;;;;;;;;;;;;26705:234;;;;;;;;;;-1:-1:-1;26705:234:0;;;;;:::i;:::-;;:::i;33498:407::-;;;;;;:::i;:::-;;:::i;58341:164::-;;;;;;;;;;-1:-1:-1;58341:164:0;;;;;:::i;:::-;;:::i;58128:205::-;;;;;;;;;;-1:-1:-1;58128:205:0;;;;;:::i;:::-;;:::i;56812:30::-;;;;;;;;;;;;;;;;27096:164;;;;;;;;;;-1:-1:-1;27096:164:0;;;;;:::i;:::-;;:::i;18746:639::-;18831:4;-1:-1:-1;;;;;;;;;19155:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;19232:25:0;;;19155:102;:179;;;-1:-1:-1;;;;;;;;;;19309:25:0;;;19155:179;19135:199;18746:639;-1:-1:-1;;18746:639:0:o;19648:100::-;19702:13;19735:5;19728:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19648:100;:::o;26147:218::-;26223:7;26248:16;26256:7;26248;:16::i;:::-;26243:64;;26273:34;;-1:-1:-1;;;26273:34:0;;;;;;;;;;;26243:64;-1:-1:-1;26327:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;26327:30:0;;26147:218::o;25580:408::-;25669:13;25685:16;25693:7;25685;:16::i;:::-;25669:32;-1:-1:-1;49913:10:0;-1:-1:-1;;;;;25718:28:0;;;25714:175;;25766:44;25783:5;49913:10;27096:164;:::i;25766:44::-;25761:128;;25838:35;;-1:-1:-1;;;25838:35:0;;;;;;;;;;;25761:128;25901:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;25901:35:0;-1:-1:-1;;;;;25901:35:0;;;;;;;;;25952:28;;25901:24;;25952:28;;;;;;;25658:330;25580:408;;:::o;29786:2825::-;29928:27;29958;29977:7;29958:18;:27::i;:::-;29928:57;;30043:4;-1:-1:-1;;;;;30002:45:0;30018:19;-1:-1:-1;;;;;30002:45:0;;29998:86;;30056:28;;-1:-1:-1;;;30056:28:0;;;;;;;;;;;29998:86;30098:27;28894:24;;;:15;:24;;;;;29122:26;;49913:10;28519:30;;;-1:-1:-1;;;;;28212:28:0;;28497:20;;;28494:56;30284:180;;30377:43;30394:4;49913:10;27096:164;:::i;30377:43::-;30372:92;;30429:35;;-1:-1:-1;;;30429:35:0;;;;;;;;;;;30372:92;-1:-1:-1;;;;;30481:16:0;;30477:52;;30506:23;;-1:-1:-1;;;30506:23:0;;;;;;;;;;;30477:52;30678:15;30675:160;;;30818:1;30797:19;30790:30;30675:160;-1:-1:-1;;;;;31215:24:0;;;;;;;:18;:24;;;;;;31213:26;;-1:-1:-1;;31213:26:0;;;31284:22;;;;;;;;;31282:24;;-1:-1:-1;31282:24:0;;;24438:11;24413:23;24409:41;24396:63;-1:-1:-1;;;24396:63:0;31577:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;31872:47:0;;:52;;31868:627;;31977:1;31967:11;;31945:19;32100:30;;;:17;:30;;;;;;:35;;32096:384;;32238:13;;32223:11;:28;32219:242;;32385:30;;;;:17;:30;;;;;:52;;;32219:242;31926:569;31868:627;32542:7;32538:2;-1:-1:-1;;;;;32523:27:0;32532:4;-1:-1:-1;;;;;32523:27:0;;;;;;;;;;;32561:42;29917:2694;;;29786:2825;;;:::o;58513:213::-;58601:7;;;58674:4;58655:15;:10;58668:2;58655:15;:::i;:::-;58654:24;;;;:::i;:::-;58697:5;;-1:-1:-1;;;;;58697:5:0;;58630:48;;-1:-1:-1;58513:213:0;-1:-1:-1;;;;58513:213:0:o;57264:138::-;57360:9;;57350:6;57334:13;15673:12;;15460:7;15657:13;:28;;15399:323;57334:13;:22;;;;:::i;:::-;:35;;57326:44;;;;;;57381:13;57387:6;57381:5;:13::i;:::-;57264:138;:::o;58734:109::-;56970:5;;-1:-1:-1;;;;;56970:5:0;56979:10;56970:19;56962:28;;;;;;58784:51:::1;::::0;58792:10:::1;::::0;58813:21:::1;58784:51:::0;::::1;;;::::0;::::1;::::0;;;58813:21;58792:10;58784:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;32707:193:::0;32853:39;32870:4;32876:2;32880:7;32853:39;;;;;;;;;;;;:16;:39::i;:::-;32707:193;;;:::o;21049:152::-;21121:7;21164:27;21183:7;21164:18;:27::i;16583:233::-;16655:7;-1:-1:-1;;;;;16679:19:0;;16675:60;;16707:28;;-1:-1:-1;;;16707:28:0;;;;;;;;;;;16675:60;-1:-1:-1;;;;;;16753:25:0;;;;;:18;:25;;;;;;10742:13;16753:55;;16583:233::o;19824:104::-;19880:13;19913:7;19906:14;;;;;:::i;57410:84::-;56970:5;;-1:-1:-1;;;;;56970:5:0;56979:10;56970:19;56962:28;;;;;;57476:3:::1;:10;57482:4:::0;57476:3;:10:::1;:::i;:::-;;57410:84:::0;:::o;26705:234::-;49913:10;26800:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26800:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26800:60:0;;;;;;;;;;26876:55;;540:41:1;;;26800:49:0;;49913:10;26876:55;;513:18:1;26876:55:0;;;;;;;26705:234;;:::o;33498:407::-;33673:31;33686:4;33692:2;33696:7;33673:12;:31::i;:::-;-1:-1:-1;;;;;33719:14:0;;;:19;33715:183;;33758:56;33789:4;33795:2;33799:7;33808:5;33758:30;:56::i;:::-;33753:145;;33842:40;;-1:-1:-1;;;33842:40:0;;;;;;;;;;;33753:145;33498:407;;;;:::o;58341:164::-;58406:13;58463:3;58468:18;58478:7;58468:9;:18::i;:::-;58446:50;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58432:65;;58341:164;;;:::o;58128:205::-;56970:5;;-1:-1:-1;;;;;56970:5:0;56979:10;56970:19;56962:28;;;;;;58252:9:::1;;58237:11;58221:27;;:13;15673:12:::0;;15460:7;15657:13;:28;;15399:323;58221:13:::1;:27;;;;:::i;:::-;:40;;58213:72;;;::::0;-1:-1:-1;;;58213:72:0;;10921:2:1;58213:72:0::1;::::0;::::1;10903:21:1::0;10960:2;10940:18;;;10933:30;-1:-1:-1;;;10979:18:1;;;10972:49;11038:18;;58213:72:0::1;;;;;;;;58296:29;58306:5;58313:11;58296:29;;:9;:29::i;27096:164::-:0;-1:-1:-1;;;;;27217:25:0;;;27193:4;27217:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27096:164::o;27518:282::-;27583:4;27673:13;;27663:7;:23;27620:153;;;;-1:-1:-1;;27724:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;27724:44:0;:49;;27518:282::o;22204:1275::-;22271:7;22306;22408:13;;22401:4;:20;22397:1015;;;22446:14;22463:23;;;:17;:23;;;;;;;-1:-1:-1;;;22552:24:0;;:29;;22548:845;;23217:113;23224:6;23234:1;23224:11;23217:113;;-1:-1:-1;;;23295:6:0;23277:25;;;;:17;:25;;;;;;23217:113;;;23363:6;22204:1275;-1:-1:-1;;;22204:1275:0:o;22548:845::-;22423:989;22397:1015;23440:31;;-1:-1:-1;;;23440:31:0;;;;;;;;;;;57502:618;57557:9;57570:1;57557:14;57553:473;;57596:6;57606:1;57596:11;57588:20;;;;;;57631:10;57645:9;57631:23;57623:32;;;;;;57670:9;57682:13;15673:12;;15460:7;15657:13;:28;;15399:323;57682:13;57670:25;;57730:1;57718:9;;:13;;;;:::i;:::-;57714:1;:17;57710:245;;;57760:21;57770:10;57760:9;:21::i;:::-;:26;57752:35;;;;;;57806:15;57842:2;57837:1;57825:9;;:13;;;;:::i;:::-;57824:20;;;;:::i;:::-;57876:12;57871:18;;;;:4;:18;;;;;;57806:38;;-1:-1:-1;57871:28:0;-1:-1:-1;57863:37:0;;;;;;57924:12;57919:18;;;;:4;:18;;;;;:20;;;;;;:::i;:::-;;;;;;57733:222;57710:245;57969:24;57979:10;57991:1;57969:9;:24::i;57553:473::-;58066:5;;58057:14;;:6;:14;:::i;:::-;58044:9;:27;;58036:36;;;;;;58083:29;58093:10;58105:6;58083:9;:29::i;35989:716::-;36173:88;;-1:-1:-1;;;36173:88:0;;36152:4;;-1:-1:-1;;;;;36173:45:0;;;;;:88;;49913:10;;36240:4;;36246:7;;36255:5;;36173:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36173:88:0;;;;;;;;-1:-1:-1;;36173:88:0;;;;;;;;;;;;:::i;:::-;;;36169:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36456:6;:13;36473:1;36456:18;36452:235;;36502:40;;-1:-1:-1;;;36502:40:0;;;;;;;;;;;36452:235;36645:6;36639:13;36630:6;36626:2;36622:15;36615:38;36169:529;-1:-1:-1;;;;;;36332:64:0;-1:-1:-1;;;36332:64:0;;-1:-1:-1;36169:529:0;35989:716;;;;;;:::o;50033:1745::-;50098:17;50532:4;50525;50519:11;50515:22;50624:1;50618:4;50611:15;50699:4;50696:1;50692:12;50685:19;;;50781:1;50776:3;50769:14;50885:3;51124:5;51106:428;51172:1;51167:3;51163:11;51156:18;;51343:2;51337:4;51333:13;51329:2;51325:22;51320:3;51312:36;51437:2;51427:13;;51494:25;51106:428;51494:25;-1:-1:-1;51564:13:0;;;-1:-1:-1;;51679:14:0;;;51741:19;;;51679:14;50033:1745;-1:-1:-1;50033:1745:0:o;43658:112::-;43735:27;43745:2;43749:8;43735:27;;;;;;;;;;;;43016:19;43022:2;43026:8;43016:5;:19::i;:::-;-1:-1:-1;;;;;43077:14:0;;;:19;43073:483;;43117:11;43131:13;43179:14;;;43212:233;43243:62;43282:1;43286:2;43290:7;;;;;;43299:5;43243:30;:62::i;:::-;43238:167;;43341:40;;-1:-1:-1;;;43341:40:0;;;;;;;;;;;43238:167;43440:3;43432:5;:11;43212:233;;43527:3;43510:13;;:20;43506:34;;43532:8;;;43506:34;43098:458;;42885:689;;;:::o;37167:2966::-;37240:20;37263:13;;;37291;;;37287:44;;37313:18;;-1:-1:-1;;;37313:18:0;;;;;;;;;;;37287:44;-1:-1:-1;;;;;37819:22:0;;;;;;:18;:22;;;;10880:2;37819:22;;;:71;;37857:32;37845:45;;37819:71;;;38133:31;;;:17;:31;;;;;-1:-1:-1;24869:15:0;;24843:24;24839:46;24438:11;24413:23;24409:41;24406:52;24396:63;;38133:173;;38368:23;;;;38133:31;;37819:22;;39133:25;37819:22;;38986:335;39647:1;39633:12;39629:20;39587:346;39688:3;39679:7;39676:16;39587:346;;39906:7;39896:8;39893:1;39866:25;39863:1;39860;39855:59;39741:1;39728:15;39587:346;;;39591:77;39966:8;39978:1;39966:13;39962:45;;39988:19;;-1:-1:-1;;;39988:19:0;;;;;;;;;;;39962:45;40024:13;:19;-1:-1:-1;32707:193:0;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:248::-;2761:6;2769;2822:2;2810:9;2801:7;2797:23;2793:32;2790:52;;;2838:1;2835;2828:12;2790:52;-1:-1:-1;;2861:23:1;;;2931:2;2916:18;;;2903:32;;-1:-1:-1;2693:248:1:o;3225:186::-;3284:6;3337:2;3325:9;3316:7;3312:23;3308:32;3305:52;;;3353:1;3350;3343:12;3305:52;3376:29;3395:9;3376:29;:::i;3416:127::-;3477:10;3472:3;3468:20;3465:1;3458:31;3508:4;3505:1;3498:15;3532:4;3529:1;3522:15;3548:632;3613:5;3643:18;3684:2;3676:6;3673:14;3670:40;;;3690:18;;:::i;:::-;3765:2;3759:9;3733:2;3819:15;;-1:-1:-1;;3815:24:1;;;3841:2;3811:33;3807:42;3795:55;;;3865:18;;;3885:22;;;3862:46;3859:72;;;3911:18;;:::i;:::-;3951:10;3947:2;3940:22;3980:6;3971:15;;4010:6;4002;3995:22;4050:3;4041:6;4036:3;4032:16;4029:25;4026:45;;;4067:1;4064;4057:12;4026:45;4117:6;4112:3;4105:4;4097:6;4093:17;4080:44;4172:1;4165:4;4156:6;4148;4144:19;4140:30;4133:41;;;;3548:632;;;;;:::o;4185:451::-;4254:6;4307:2;4295:9;4286:7;4282:23;4278:32;4275:52;;;4323:1;4320;4313:12;4275:52;4363:9;4350:23;4396:18;4388:6;4385:30;4382:50;;;4428:1;4425;4418:12;4382:50;4451:22;;4504:4;4496:13;;4492:27;-1:-1:-1;4482:55:1;;4533:1;4530;4523:12;4482:55;4556:74;4622:7;4617:2;4604:16;4599:2;4595;4591:11;4556:74;:::i;4641:347::-;4706:6;4714;4767:2;4755:9;4746:7;4742:23;4738:32;4735:52;;;4783:1;4780;4773:12;4735:52;4806:29;4825:9;4806:29;:::i;:::-;4796:39;;4885:2;4874:9;4870:18;4857:32;4932:5;4925:13;4918:21;4911:5;4908:32;4898:60;;4954:1;4951;4944:12;4898:60;4977:5;4967:15;;;4641:347;;;;;:::o;4993:667::-;5088:6;5096;5104;5112;5165:3;5153:9;5144:7;5140:23;5136:33;5133:53;;;5182:1;5179;5172:12;5133:53;5205:29;5224:9;5205:29;:::i;:::-;5195:39;;5253:38;5287:2;5276:9;5272:18;5253:38;:::i;:::-;5243:48;;5338:2;5327:9;5323:18;5310:32;5300:42;;5393:2;5382:9;5378:18;5365:32;5420:18;5412:6;5409:30;5406:50;;;5452:1;5449;5442:12;5406:50;5475:22;;5528:4;5520:13;;5516:27;-1:-1:-1;5506:55:1;;5557:1;5554;5547:12;5506:55;5580:74;5646:7;5641:2;5628:16;5623:2;5619;5615:11;5580:74;:::i;:::-;5570:84;;;4993:667;;;;;;;:::o;5665:346::-;5732:6;5740;5793:2;5781:9;5772:7;5768:23;5764:32;5761:52;;;5809:1;5806;5799:12;5761:52;5848:9;5835:23;5898:6;5891:5;5887:18;5880:5;5877:29;5867:57;;5920:1;5917;5910:12;5867:57;5943:5;-1:-1:-1;5967:38:1;6001:2;5986:18;;5967:38;:::i;:::-;5957:48;;5665:346;;;;;:::o;6016:260::-;6084:6;6092;6145:2;6133:9;6124:7;6120:23;6116:32;6113:52;;;6161:1;6158;6151:12;6113:52;6184:29;6203:9;6184:29;:::i;6281:380::-;6360:1;6356:12;;;;6403;;;6424:61;;6478:4;6470:6;6466:17;6456:27;;6424:61;6531:2;6523:6;6520:14;6500:18;6497:38;6494:161;;6577:10;6572:3;6568:20;6565:1;6558:31;6612:4;6609:1;6602:15;6640:4;6637:1;6630:15;6494:161;;6281:380;;;:::o;6666:127::-;6727:10;6722:3;6718:20;6715:1;6708:31;6758:4;6755:1;6748:15;6782:4;6779:1;6772:15;6798:168;6871:9;;;6902;;6919:15;;;6913:22;;6899:37;6889:71;;6940:18;;:::i;6971:217::-;7011:1;7037;7027:132;;7081:10;7076:3;7072:20;7069:1;7062:31;7116:4;7113:1;7106:15;7144:4;7141:1;7134:15;7027:132;-1:-1:-1;7173:9:1;;6971:217::o;7193:125::-;7258:9;;;7279:10;;;7276:36;;;7292:18;;:::i;7449:545::-;7551:2;7546:3;7543:11;7540:448;;;7587:1;7612:5;7608:2;7601:17;7657:4;7653:2;7643:19;7727:2;7715:10;7711:19;7708:1;7704:27;7698:4;7694:38;7763:4;7751:10;7748:20;7745:47;;;-1:-1:-1;7786:4:1;7745:47;7841:2;7836:3;7832:12;7829:1;7825:20;7819:4;7815:31;7805:41;;7896:82;7914:2;7907:5;7904:13;7896:82;;;7959:17;;;7940:1;7929:13;7896:82;;8170:1352;8296:3;8290:10;8323:18;8315:6;8312:30;8309:56;;;8345:18;;:::i;:::-;8374:97;8464:6;8424:38;8456:4;8450:11;8424:38;:::i;:::-;8418:4;8374:97;:::i;:::-;8526:4;;8590:2;8579:14;;8607:1;8602:663;;;;9309:1;9326:6;9323:89;;;-1:-1:-1;9378:19:1;;;9372:26;9323:89;-1:-1:-1;;8127:1:1;8123:11;;;8119:24;8115:29;8105:40;8151:1;8147:11;;;8102:57;9425:81;;8572:944;;8602:663;7396:1;7389:14;;;7433:4;7420:18;;-1:-1:-1;;8638:20:1;;;8756:236;8770:7;8767:1;8764:14;8756:236;;;8859:19;;;8853:26;8838:42;;8951:27;;;;8919:1;8907:14;;;;8786:19;;8756:236;;;8760:3;9020:6;9011:7;9008:19;9005:201;;;9081:19;;;9075:26;-1:-1:-1;;9164:1:1;9160:14;;;9176:3;9156:24;9152:37;9148:42;9133:58;9118:74;;9005:201;-1:-1:-1;;;;;9252:1:1;9236:14;;;9232:22;9219:36;;-1:-1:-1;8170:1352:1:o;9527:1187::-;9804:3;9833:1;9866:6;9860:13;9896:36;9922:9;9896:36;:::i;:::-;9951:1;9968:18;;;9995:133;;;;10142:1;10137:356;;;;9961:532;;9995:133;-1:-1:-1;;10028:24:1;;10016:37;;10101:14;;10094:22;10082:35;;10073:45;;;-1:-1:-1;9995:133:1;;10137:356;10168:6;10165:1;10158:17;10198:4;10243:2;10240:1;10230:16;10268:1;10282:165;10296:6;10293:1;10290:13;10282:165;;;10374:14;;10361:11;;;10354:35;10417:16;;;;10311:10;;10282:165;;;10286:3;;;10476:6;10471:3;10467:16;10460:23;;9961:532;;;;;10524:6;10518:13;10540:68;10599:8;10594:3;10587:4;10579:6;10575:17;10540:68;:::i;:::-;-1:-1:-1;;;10630:18:1;;10657:22;;;10706:1;10695:13;;9527:1187;-1:-1:-1;;;;9527:1187:1:o;11067:128::-;11134:9;;;11155:11;;;11152:37;;;11169:18;;:::i;11200:135::-;11239:3;11260:17;;;11257:43;;11280:18;;:::i;:::-;-1:-1:-1;11327:1:1;11316:13;;11200:135::o;11340:489::-;-1:-1:-1;;;;;11609:15:1;;;11591:34;;11661:15;;11656:2;11641:18;;11634:43;11708:2;11693:18;;11686:34;;;11756:3;11751:2;11736:18;;11729:31;;;11534:4;;11777:46;;11803:19;;11795:6;11777:46;:::i;:::-;11769:54;11340:489;-1:-1:-1;;;;;;11340:489:1:o;11834:249::-;11903:6;11956:2;11944:9;11935:7;11931:23;11927:32;11924:52;;;11972:1;11969;11962:12;11924:52;12004:9;11998:16;12023:30;12047:5;12023:30;:::i
Swarm Source
ipfs://e56f13347a4014cee838858400d3a4b2ec61d0537c12f0634f13f0a6775df26a
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.