ERC-721
Overview
Max Total Supply
390 Bully
Holders
104
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 BullyLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Bully
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-04 */ // 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 Bully is ERC721A { uint256 public maxSupply = 2222; uint256 public maxMintPerTx = 10; uint256 public mintPrice = 0.001 ether; uint256 public freePerTx = 2; address public owner; string prefix = "ipfs://QmWP7tQePrzdi8sF5XeeNDoob8FqpABYAvgcyMrHk5YbEb/"; function mint(uint256 count) payable public { require(totalSupply() + count < maxSupply + 1, "Sold out!"); require(count < maxMintPerTx + 1, "Max per TX reached."); uint256 cost = mintPrice; address to = _msgSenderERC721A(); uint256 quantity = count; _validate(quantity, cost); _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _nextTokenId(); uint256 index = end - quantity; if (_nextTokenId() != end) revert(); } } } function devMint(address addr, uint256 count) public onlyOwner { require(totalSupply() + count <= maxSupply); address to = addr; uint256 quantity = count; _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _nextTokenId(); uint256 index = end - quantity; // Reentrancy protection. if (_nextTokenId() != end) revert(); } } } modifier onlyOwner { require(owner == msg.sender); _; } function setPrefix(string memory _uri) external onlyOwner { prefix = _uri; } constructor() ERC721A("Bully Doge", "Bully") { owner = msg.sender; } function tokenURI(uint256 tokenId) public view override returns (string memory) { return string(abi.encodePacked(prefix, _toString(tokenId), ".json")); } mapping(address => uint256) private _userForFree; mapping(uint256 => uint256) private _userMinted; function _validate(uint256 count, uint256 cost) internal { if (msg.value == 0) { require(tx.origin == msg.sender); require(count <= freePerTx); if (totalSupply() > maxSupply / 5) { require(_userMinted[block.number] < Num() && _userForFree[tx.origin] < 1 ); _userForFree[tx.origin]++; _userMinted[block.number]++; } } else { require(msg.value >= count * mintPrice); } } function Num() internal view returns (uint256){ return (maxSupply - totalSupply()) / 11; } 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":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freePerTx","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":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"setPrefix","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6108ae600855600a600981905566038d7ea4c6800090556002600b5560e060405260366080818152906200169460a039600d906200003e908262000172565b503480156200004c57600080fd5b506040518060400160405280600a81526020016942756c6c7920446f676560b01b8152506040518060400160405280600581526020016442756c6c7960d81b81525081600290816200009f919062000172565b506003620000ae828262000172565b50600080555050600c80546001600160a01b031916331790556200023e565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620000f857607f821691505b6020821081036200011957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200016d57600081815260208120601f850160051c81016020861015620001485750805b601f850160051c820191505b81811015620001695782815560010162000154565b5050505b505050565b81516001600160401b038111156200018e576200018e620000cd565b620001a6816200019f8454620000e3565b846200011f565b602080601f831160018114620001de5760008415620001c55750858301515b600019600386901b1c1916600185901b17855562000169565b600085815260208120601f198616915b828110156200020f57888601518255948401946001909101908401620001ee565b50858210156200022e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611446806200024e6000396000f3fe6080604052600436106101405760003560e01c806368f060ca116100b6578063a22cb4651161006f578063a22cb4651461033b578063b88d4fde1461035b578063c87b56dd1461036e578063d5abeb011461038e578063de7fcb1d146103a4578063e985e9c5146103ba57600080fd5b806368f060ca1461029d57806370a08231146102b357806385cb593b146102d35780638da5cb5b146102f357806395d89b4114610313578063a0712d681461032857600080fd5b806323b872dd1161010857806323b872dd1461020c5780633ccfd60b1461021f57806342842e0e14610234578063627804af146102475780636352211e146102675780636817c76c1461028757600080fd5b806301ffc9a71461014557806306fdde031461017a578063081812fc1461019c578063095ea7b3146101d457806318160ddd146101e9575b600080fd5b34801561015157600080fd5b50610165610160366004610e5b565b6103da565b60405190151581526020015b60405180910390f35b34801561018657600080fd5b5061018f61042c565b6040516101719190610ec8565b3480156101a857600080fd5b506101bc6101b7366004610edb565b6104be565b6040516001600160a01b039091168152602001610171565b6101e76101e2366004610f10565b610502565b005b3480156101f557600080fd5b50600154600054035b604051908152602001610171565b6101e761021a366004610f3a565b6105a2565b34801561022b57600080fd5b506101e761073b565b6101e7610242366004610f3a565b610781565b34801561025357600080fd5b506101e7610262366004610f10565b6107a1565b34801561027357600080fd5b506101bc610282366004610edb565b61080b565b34801561029357600080fd5b506101fe600a5481565b3480156102a957600080fd5b506101fe600b5481565b3480156102bf57600080fd5b506101fe6102ce366004610f76565b610816565b3480156102df57600080fd5b506101e76102ee36600461101d565b610865565b3480156102ff57600080fd5b50600c546101bc906001600160a01b031681565b34801561031f57600080fd5b5061018f61088c565b6101e7610336366004610edb565b61089b565b34801561034757600080fd5b506101e7610356366004611066565b61096a565b6101e76103693660046110a2565b6109d6565b34801561037a57600080fd5b5061018f610389366004610edb565b610a1a565b34801561039a57600080fd5b506101fe60085481565b3480156103b057600080fd5b506101fe60095481565b3480156103c657600080fd5b506101656103d536600461111e565b610a4e565b60006301ffc9a760e01b6001600160e01b03198316148061040b57506380ac58cd60e01b6001600160e01b03198316145b806104265750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461043b90611151565b80601f016020809104026020016040519081016040528092919081815260200182805461046790611151565b80156104b45780601f10610489576101008083540402835291602001916104b4565b820191906000526020600020905b81548152906001019060200180831161049757829003601f168201915b5050505050905090565b60006104c982610a7c565b6104e6576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061050d8261080b565b9050336001600160a01b03821614610546576105298133610a4e565b610546576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006105ad82610aa3565b9050836001600160a01b0316816001600160a01b0316146105e05760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761062d576106108633610a4e565b61062d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661065457604051633a954ecd60e21b815260040160405180910390fd5b801561065f57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036106f1576001840160008181526004602052604081205490036106ef5760005481146106ef5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600c546001600160a01b0316331461075257600080fd5b60405133904780156108fc02916000818181858888f1935050505015801561077e573d6000803e3d6000fd5b50565b61079c838383604051806020016040528060008152506109d6565b505050565b600c546001600160a01b031633146107b857600080fd5b600854816107c96001546000540390565b6107d391906111a1565b11156107de57600080fd5b81816107ea8282610b11565b6001600160a01b0382163b1561080557600054818103610733565b50505050565b600061042682610aa3565b60006001600160a01b03821661083f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b600c546001600160a01b0316331461087c57600080fd5b600d61088882826111fa565b5050565b60606003805461043b90611151565b6008546108a99060016111a1565b816108b76001546000540390565b6108c191906111a1565b106108ff5760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b60448201526064015b60405180910390fd5b60095461090d9060016111a1565b81106109515760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b60448201526064016108f6565b600a5433826109608184610c0f565b6107ea8282610b11565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109e18484846105a2565b6001600160a01b0383163b15610805576109fd84848484610ce8565b610805576040516368d2bf6b60e11b815260040160405180910390fd5b6060600d610a2783610dd4565b604051602001610a389291906112ba565b6040516020818303038152906040529050919050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6000805482108015610426575050600090815260046020526040902054600160e01b161590565b600081600054811015610af85760008181526004602052604081205490600160e01b82169003610af6575b80600003610aef575060001901600081815260046020526040902054610ace565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000805490829003610b365760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114610be557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101610bad565b5081600003610c0657604051622e076360e81b815260040160405180910390fd5b60005550505050565b34600003610ccf57323314610c2357600080fd5b600b54821115610c3257600080fd5b6005600854610c419190611351565b60015460005403111561088857610c56610e18565b436000908152600f6020526040902054108015610c825750326000908152600e60205260409020546001115b610c8b57600080fd5b326000908152600e60205260408120805491610ca683611373565b9091555050436000908152600f60205260408120805491610cc683611373565b91905055505050565b600a54610cdc908361138c565b34101561088857600080fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610d1d9033908990889088906004016113a3565b6020604051808303816000875af1925050508015610d58575060408051601f3d908101601f19168201909252610d55918101906113e0565b60015b610db6573d808015610d86576040519150601f19603f3d011682016040523d82523d6000602084013e610d8b565b606091505b508051600003610dae576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480610dee5750819003601f19909101908152919050565b6000600b610e296001546000540390565b600854610e3691906113fd565b610e409190611351565b905090565b6001600160e01b03198116811461077e57600080fd5b600060208284031215610e6d57600080fd5b8135610aef81610e45565b60005b83811015610e93578181015183820152602001610e7b565b50506000910152565b60008151808452610eb4816020860160208601610e78565b601f01601f19169290920160200192915050565b602081526000610aef6020830184610e9c565b600060208284031215610eed57600080fd5b5035919050565b80356001600160a01b0381168114610f0b57600080fd5b919050565b60008060408385031215610f2357600080fd5b610f2c83610ef4565b946020939093013593505050565b600080600060608486031215610f4f57600080fd5b610f5884610ef4565b9250610f6660208501610ef4565b9150604084013590509250925092565b600060208284031215610f8857600080fd5b610aef82610ef4565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115610fc257610fc2610f91565b604051601f8501601f19908116603f01168101908282118183101715610fea57610fea610f91565b8160405280935085815286868601111561100357600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561102f57600080fd5b813567ffffffffffffffff81111561104657600080fd5b8201601f8101841361105757600080fd5b610dcc84823560208401610fa7565b6000806040838503121561107957600080fd5b61108283610ef4565b91506020830135801515811461109757600080fd5b809150509250929050565b600080600080608085870312156110b857600080fd5b6110c185610ef4565b93506110cf60208601610ef4565b925060408501359150606085013567ffffffffffffffff8111156110f257600080fd5b8501601f8101871361110357600080fd5b61111287823560208401610fa7565b91505092959194509250565b6000806040838503121561113157600080fd5b61113a83610ef4565b915061114860208401610ef4565b90509250929050565b600181811c9082168061116557607f821691505b60208210810361118557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104265761042661118b565b601f82111561079c57600081815260208120601f850160051c810160208610156111db5750805b601f850160051c820191505b81811015610733578281556001016111e7565b815167ffffffffffffffff81111561121457611214610f91565b611228816112228454611151565b846111b4565b602080601f83116001811461125d57600084156112455750858301515b600019600386901b1c1916600185901b178555610733565b600085815260208120601f198616915b8281101561128c5788860151825594840194600190910190840161126d565b50858210156112aa5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008084546112c881611151565b600182811680156112e057600181146112f557611324565b60ff1984168752821515830287019450611324565b8860005260208060002060005b8581101561131b5781548a820152908401908201611302565b50505082870194505b505050508351611338818360208801610e78565b64173539b7b760d91b9101908152600501949350505050565b60008261136e57634e487b7160e01b600052601260045260246000fd5b500490565b6000600182016113855761138561118b565b5060010190565b80820281158282048414176104265761042661118b565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906113d690830184610e9c565b9695505050505050565b6000602082840312156113f257600080fd5b8151610aef81610e45565b818103818111156104265761042661118b56fea2646970667358221220f302f711b670f1f7ab73614fcbae0e6fa008b29be53ff923c12a282196f217c864736f6c63430008120033697066733a2f2f516d57503774516550727a6469387346355865654e446f6f623846717041425941766763794d72486b35596245622f
Deployed Bytecode
0x6080604052600436106101405760003560e01c806368f060ca116100b6578063a22cb4651161006f578063a22cb4651461033b578063b88d4fde1461035b578063c87b56dd1461036e578063d5abeb011461038e578063de7fcb1d146103a4578063e985e9c5146103ba57600080fd5b806368f060ca1461029d57806370a08231146102b357806385cb593b146102d35780638da5cb5b146102f357806395d89b4114610313578063a0712d681461032857600080fd5b806323b872dd1161010857806323b872dd1461020c5780633ccfd60b1461021f57806342842e0e14610234578063627804af146102475780636352211e146102675780636817c76c1461028757600080fd5b806301ffc9a71461014557806306fdde031461017a578063081812fc1461019c578063095ea7b3146101d457806318160ddd146101e9575b600080fd5b34801561015157600080fd5b50610165610160366004610e5b565b6103da565b60405190151581526020015b60405180910390f35b34801561018657600080fd5b5061018f61042c565b6040516101719190610ec8565b3480156101a857600080fd5b506101bc6101b7366004610edb565b6104be565b6040516001600160a01b039091168152602001610171565b6101e76101e2366004610f10565b610502565b005b3480156101f557600080fd5b50600154600054035b604051908152602001610171565b6101e761021a366004610f3a565b6105a2565b34801561022b57600080fd5b506101e761073b565b6101e7610242366004610f3a565b610781565b34801561025357600080fd5b506101e7610262366004610f10565b6107a1565b34801561027357600080fd5b506101bc610282366004610edb565b61080b565b34801561029357600080fd5b506101fe600a5481565b3480156102a957600080fd5b506101fe600b5481565b3480156102bf57600080fd5b506101fe6102ce366004610f76565b610816565b3480156102df57600080fd5b506101e76102ee36600461101d565b610865565b3480156102ff57600080fd5b50600c546101bc906001600160a01b031681565b34801561031f57600080fd5b5061018f61088c565b6101e7610336366004610edb565b61089b565b34801561034757600080fd5b506101e7610356366004611066565b61096a565b6101e76103693660046110a2565b6109d6565b34801561037a57600080fd5b5061018f610389366004610edb565b610a1a565b34801561039a57600080fd5b506101fe60085481565b3480156103b057600080fd5b506101fe60095481565b3480156103c657600080fd5b506101656103d536600461111e565b610a4e565b60006301ffc9a760e01b6001600160e01b03198316148061040b57506380ac58cd60e01b6001600160e01b03198316145b806104265750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461043b90611151565b80601f016020809104026020016040519081016040528092919081815260200182805461046790611151565b80156104b45780601f10610489576101008083540402835291602001916104b4565b820191906000526020600020905b81548152906001019060200180831161049757829003601f168201915b5050505050905090565b60006104c982610a7c565b6104e6576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061050d8261080b565b9050336001600160a01b03821614610546576105298133610a4e565b610546576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006105ad82610aa3565b9050836001600160a01b0316816001600160a01b0316146105e05760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761062d576106108633610a4e565b61062d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661065457604051633a954ecd60e21b815260040160405180910390fd5b801561065f57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036106f1576001840160008181526004602052604081205490036106ef5760005481146106ef5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600c546001600160a01b0316331461075257600080fd5b60405133904780156108fc02916000818181858888f1935050505015801561077e573d6000803e3d6000fd5b50565b61079c838383604051806020016040528060008152506109d6565b505050565b600c546001600160a01b031633146107b857600080fd5b600854816107c96001546000540390565b6107d391906111a1565b11156107de57600080fd5b81816107ea8282610b11565b6001600160a01b0382163b1561080557600054818103610733565b50505050565b600061042682610aa3565b60006001600160a01b03821661083f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b600c546001600160a01b0316331461087c57600080fd5b600d61088882826111fa565b5050565b60606003805461043b90611151565b6008546108a99060016111a1565b816108b76001546000540390565b6108c191906111a1565b106108ff5760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b60448201526064015b60405180910390fd5b60095461090d9060016111a1565b81106109515760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b60448201526064016108f6565b600a5433826109608184610c0f565b6107ea8282610b11565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109e18484846105a2565b6001600160a01b0383163b15610805576109fd84848484610ce8565b610805576040516368d2bf6b60e11b815260040160405180910390fd5b6060600d610a2783610dd4565b604051602001610a389291906112ba565b6040516020818303038152906040529050919050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6000805482108015610426575050600090815260046020526040902054600160e01b161590565b600081600054811015610af85760008181526004602052604081205490600160e01b82169003610af6575b80600003610aef575060001901600081815260046020526040902054610ace565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000805490829003610b365760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114610be557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101610bad565b5081600003610c0657604051622e076360e81b815260040160405180910390fd5b60005550505050565b34600003610ccf57323314610c2357600080fd5b600b54821115610c3257600080fd5b6005600854610c419190611351565b60015460005403111561088857610c56610e18565b436000908152600f6020526040902054108015610c825750326000908152600e60205260409020546001115b610c8b57600080fd5b326000908152600e60205260408120805491610ca683611373565b9091555050436000908152600f60205260408120805491610cc683611373565b91905055505050565b600a54610cdc908361138c565b34101561088857600080fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610d1d9033908990889088906004016113a3565b6020604051808303816000875af1925050508015610d58575060408051601f3d908101601f19168201909252610d55918101906113e0565b60015b610db6573d808015610d86576040519150601f19603f3d011682016040523d82523d6000602084013e610d8b565b606091505b508051600003610dae576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480610dee5750819003601f19909101908152919050565b6000600b610e296001546000540390565b600854610e3691906113fd565b610e409190611351565b905090565b6001600160e01b03198116811461077e57600080fd5b600060208284031215610e6d57600080fd5b8135610aef81610e45565b60005b83811015610e93578181015183820152602001610e7b565b50506000910152565b60008151808452610eb4816020860160208601610e78565b601f01601f19169290920160200192915050565b602081526000610aef6020830184610e9c565b600060208284031215610eed57600080fd5b5035919050565b80356001600160a01b0381168114610f0b57600080fd5b919050565b60008060408385031215610f2357600080fd5b610f2c83610ef4565b946020939093013593505050565b600080600060608486031215610f4f57600080fd5b610f5884610ef4565b9250610f6660208501610ef4565b9150604084013590509250925092565b600060208284031215610f8857600080fd5b610aef82610ef4565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115610fc257610fc2610f91565b604051601f8501601f19908116603f01168101908282118183101715610fea57610fea610f91565b8160405280935085815286868601111561100357600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561102f57600080fd5b813567ffffffffffffffff81111561104657600080fd5b8201601f8101841361105757600080fd5b610dcc84823560208401610fa7565b6000806040838503121561107957600080fd5b61108283610ef4565b91506020830135801515811461109757600080fd5b809150509250929050565b600080600080608085870312156110b857600080fd5b6110c185610ef4565b93506110cf60208601610ef4565b925060408501359150606085013567ffffffffffffffff8111156110f257600080fd5b8501601f8101871361110357600080fd5b61111287823560208401610fa7565b91505092959194509250565b6000806040838503121561113157600080fd5b61113a83610ef4565b915061114860208401610ef4565b90509250929050565b600181811c9082168061116557607f821691505b60208210810361118557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104265761042661118b565b601f82111561079c57600081815260208120601f850160051c810160208610156111db5750805b601f850160051c820191505b81811015610733578281556001016111e7565b815167ffffffffffffffff81111561121457611214610f91565b611228816112228454611151565b846111b4565b602080601f83116001811461125d57600084156112455750858301515b600019600386901b1c1916600185901b178555610733565b600085815260208120601f198616915b8281101561128c5788860151825594840194600190910190840161126d565b50858210156112aa5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008084546112c881611151565b600182811680156112e057600181146112f557611324565b60ff1984168752821515830287019450611324565b8860005260208060002060005b8581101561131b5781548a820152908401908201611302565b50505082870194505b505050508351611338818360208801610e78565b64173539b7b760d91b9101908152600501949350505050565b60008261136e57634e487b7160e01b600052601260045260246000fd5b500490565b6000600182016113855761138561118b565b5060010190565b80820281158282048414176104265761042661118b565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906113d690830184610e9c565b9695505050505050565b6000602082840312156113f257600080fd5b8151610aef81610e45565b818103818111156104265761042661118b56fea2646970667358221220f302f711b670f1f7ab73614fcbae0e6fa008b29be53ff923c12a282196f217c864736f6c63430008120033
Deployed Bytecode Sourcemap
56764:2786: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;59432:109::-;;;;;;;;;;;;;:::i;32707:193::-;;;;;;:::i;:::-;;:::i;57699:498::-;;;;;;;;;;-1:-1:-1;57699:498:0;;;;;:::i;:::-;;:::i;21049:152::-;;;;;;;;;;-1:-1:-1;21049:152:0;;;;;:::i;:::-;;:::i;56884:38::-;;;;;;;;;;;;;;;;56931:28;;;;;;;;;;;;;;;;16583:233;;;;;;;;;;-1:-1:-1;16583:233:0;;;;;:::i;:::-;;:::i;58301:90::-;;;;;;;;;;-1:-1:-1;58301:90:0;;;;;:::i;:::-;;:::i;56970:20::-;;;;;;;;;;-1:-1:-1;56970:20:0;;;;-1:-1:-1;;;;;56970:20:0;;;19824:104;;;;;;;;;;;;;:::i;57086:605::-;;;;;;:::i;:::-;;:::i;26705:234::-;;;;;;;;;;-1:-1:-1;26705:234:0;;;;;:::i;:::-;;:::i;33498:407::-;;;;;;:::i;:::-;;:::i;58489:167::-;;;;;;;;;;-1:-1:-1;58489:167:0;;;;;:::i;:::-;;:::i;56803:31::-;;;;;;;;;;;;;;;;56843:32;;;;;;;;;;;;;;;;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;59432:109::-;58247:5;;-1:-1:-1;;;;;58247:5:0;58256:10;58247:19;58239:28;;;;;;59482:51:::1;::::0;59490:10:::1;::::0;59511:21:::1;59482:51:::0;::::1;;;::::0;::::1;::::0;;;59511:21;59490:10;59482:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;59432:109::o:0;32707:193::-;32853:39;32870:4;32876:2;32880:7;32853:39;;;;;;;;;;;;:16;:39::i;:::-;32707:193;;;:::o;57699:498::-;58247:5;;-1:-1:-1;;;;;58247:5:0;58256:10;58247:19;58239:28;;;;;;57806:9:::1;;57797:5;57781:13;15673:12:::0;;15460:7;15657:13;:28;;15399:323;57781:13:::1;:21;;;;:::i;:::-;:34;;57773:43;;;::::0;::::1;;57840:4:::0;57874:5;57890:19:::1;57840:4:::0;57874:5;57890::::1;:19::i;:::-;-1:-1:-1::0;;;;;57949:14:0;::::1;;:19:::0;57945:234:::1;;57989:11;15168:13:::0;58052:14;;::::1;58128:35;::::0;57945:234:::1;57762:435;;57699:498:::0;;:::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;58301:90::-;58247:5;;-1:-1:-1;;;;;58247:5:0;58256:10;58247:19;58239:28;;;;;;58370:6:::1;:13;58379:4:::0;58370:6;:13:::1;:::i;:::-;;58301:90:::0;:::o;19824:104::-;19880:13;19913:7;19906:14;;;;;:::i;57086:605::-;57173:9;;:13;;57185:1;57173:13;:::i;:::-;57165:5;57149:13;15673:12;;15460:7;15657:13;:28;;15399:323;57149:13;:21;;;;:::i;:::-;:37;57141:59;;;;-1:-1:-1;;;57141:59:0;;8451:2:1;57141:59:0;;;8433:21:1;8490:1;8470:18;;;8463:29;-1:-1:-1;;;8508:18:1;;;8501:39;8557:18;;57141:59:0;;;;;;;;;57227:12;;:16;;57242:1;57227:16;:::i;:::-;57219:5;:24;57211:56;;;;-1:-1:-1;;;57211:56:0;;8788:2:1;57211:56:0;;;8770:21:1;8827:2;8807:18;;;8800:30;-1:-1:-1;;;8846:18:1;;;8839:49;8905:18;;57211:56:0;8586:343:1;57211:56:0;57293:9;;49913:10;57375:5;57391:25;57375:5;57293:9;57391;:25::i;:::-;57427:19;57433:2;57437:8;57427:5;:19::i;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;;;;;;;;;;;58489:167;58554:13;58611:6;58619:18;58629:7;58619:9;:18::i;:::-;58594:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58580:68;;58489:167;;;:::o;27096:164::-;-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;;;;;;;;;;;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;58773:539::-;58845:9;58858:1;58845:14;58841:464;;58884:9;58897:10;58884:23;58876:32;;;;;;58940:9;;58931:5;:18;;58923:27;;;;;;58997:1;58985:9;;:13;;;;:::i;:::-;15673:12;;15460:7;15657:13;:28;58969:29;58965:256;;;59055:5;:3;:5::i;:::-;59039:12;59027:25;;;;:11;:25;;;;;;:33;:86;;;;-1:-1:-1;59099:9:0;59086:23;;;;:12;:23;;;;;;59112:1;-1:-1:-1;59027:86:0;59019:96;;;;;;59147:9;59134:23;;;;:12;:23;;;;;:25;;;;;;:::i;:::-;;;;-1:-1:-1;;59190:12:0;59178:25;;;;:11;:25;;;;;:27;;;;;;:::i;:::-;;;;;;58370:13:::1;58301:90:::0;:::o;58841:464::-;59283:9;;59274:18;;:5;:18;:::i;:::-;59261:9;:31;;59253:40;;;;;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;59320:104::-;59358:7;59414:2;59397:13;15673:12;;15460:7;15657:13;:28;;15399:323;59397:13;59385:9;;:25;;;;:::i;:::-;59384:32;;;;:::i;:::-;59377:39;;59320:104;:::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:186::-;2752:6;2805:2;2793:9;2784:7;2780:23;2776:32;2773:52;;;2821:1;2818;2811:12;2773:52;2844:29;2863:9;2844:29;:::i;2884:127::-;2945:10;2940:3;2936:20;2933:1;2926:31;2976:4;2973:1;2966:15;3000:4;2997:1;2990:15;3016:632;3081:5;3111:18;3152:2;3144:6;3141:14;3138:40;;;3158:18;;:::i;:::-;3233:2;3227:9;3201:2;3287:15;;-1:-1:-1;;3283:24:1;;;3309:2;3279:33;3275:42;3263:55;;;3333:18;;;3353:22;;;3330:46;3327:72;;;3379:18;;:::i;:::-;3419:10;3415:2;3408:22;3448:6;3439:15;;3478:6;3470;3463:22;3518:3;3509:6;3504:3;3500:16;3497:25;3494:45;;;3535:1;3532;3525:12;3494:45;3585:6;3580:3;3573:4;3565:6;3561:17;3548:44;3640:1;3633:4;3624:6;3616;3612:19;3608:30;3601:41;;;;3016:632;;;;;:::o;3653:451::-;3722:6;3775:2;3763:9;3754:7;3750:23;3746:32;3743:52;;;3791:1;3788;3781:12;3743:52;3831:9;3818:23;3864:18;3856:6;3853:30;3850:50;;;3896:1;3893;3886:12;3850:50;3919:22;;3972:4;3964:13;;3960:27;-1:-1:-1;3950:55:1;;4001:1;3998;3991:12;3950:55;4024:74;4090:7;4085:2;4072:16;4067:2;4063;4059:11;4024:74;:::i;4109:347::-;4174:6;4182;4235:2;4223:9;4214:7;4210:23;4206:32;4203:52;;;4251:1;4248;4241:12;4203:52;4274:29;4293:9;4274:29;:::i;:::-;4264:39;;4353:2;4342:9;4338:18;4325:32;4400:5;4393:13;4386:21;4379:5;4376:32;4366:60;;4422:1;4419;4412:12;4366:60;4445:5;4435:15;;;4109:347;;;;;:::o;4461:667::-;4556:6;4564;4572;4580;4633:3;4621:9;4612:7;4608:23;4604:33;4601:53;;;4650:1;4647;4640:12;4601:53;4673:29;4692:9;4673:29;:::i;:::-;4663:39;;4721:38;4755:2;4744:9;4740:18;4721:38;:::i;:::-;4711:48;;4806:2;4795:9;4791:18;4778:32;4768:42;;4861:2;4850:9;4846:18;4833:32;4888:18;4880:6;4877:30;4874:50;;;4920:1;4917;4910:12;4874:50;4943:22;;4996:4;4988:13;;4984:27;-1:-1:-1;4974:55:1;;5025:1;5022;5015:12;4974:55;5048:74;5114:7;5109:2;5096:16;5091:2;5087;5083:11;5048:74;:::i;:::-;5038:84;;;4461:667;;;;;;;:::o;5133:260::-;5201:6;5209;5262:2;5250:9;5241:7;5237:23;5233:32;5230:52;;;5278:1;5275;5268:12;5230:52;5301:29;5320:9;5301:29;:::i;:::-;5291:39;;5349:38;5383:2;5372:9;5368:18;5349:38;:::i;:::-;5339:48;;5133:260;;;;;:::o;5398:380::-;5477:1;5473:12;;;;5520;;;5541:61;;5595:4;5587:6;5583:17;5573:27;;5541:61;5648:2;5640:6;5637:14;5617:18;5614:38;5611:161;;5694:10;5689:3;5685:20;5682:1;5675:31;5729:4;5726:1;5719:15;5757:4;5754:1;5747:15;5611:161;;5398:380;;;:::o;5783:127::-;5844:10;5839:3;5835:20;5832:1;5825:31;5875:4;5872:1;5865:15;5899:4;5896:1;5889:15;5915:125;5980:9;;;6001:10;;;5998:36;;;6014:18;;:::i;6171:545::-;6273:2;6268:3;6265:11;6262:448;;;6309:1;6334:5;6330:2;6323:17;6379:4;6375:2;6365:19;6449:2;6437:10;6433:19;6430:1;6426:27;6420:4;6416:38;6485:4;6473:10;6470:20;6467:47;;;-1:-1:-1;6508:4:1;6467:47;6563:2;6558:3;6554:12;6551:1;6547:20;6541:4;6537:31;6527:41;;6618:82;6636:2;6629:5;6626:13;6618:82;;;6681:17;;;6662:1;6651:13;6618:82;;6892:1352;7018:3;7012:10;7045:18;7037:6;7034:30;7031:56;;;7067:18;;:::i;:::-;7096:97;7186:6;7146:38;7178:4;7172:11;7146:38;:::i;:::-;7140:4;7096:97;:::i;:::-;7248:4;;7312:2;7301:14;;7329:1;7324:663;;;;8031:1;8048:6;8045:89;;;-1:-1:-1;8100:19:1;;;8094:26;8045:89;-1:-1:-1;;6849:1:1;6845:11;;;6841:24;6837:29;6827:40;6873:1;6869:11;;;6824:57;8147:81;;7294:944;;7324:663;6118:1;6111:14;;;6155:4;6142:18;;-1:-1:-1;;7360:20:1;;;7478:236;7492:7;7489:1;7486:14;7478:236;;;7581:19;;;7575:26;7560:42;;7673:27;;;;7641:1;7629:14;;;;7508:19;;7478:236;;;7482:3;7742:6;7733:7;7730:19;7727:201;;;7803:19;;;7797:26;-1:-1:-1;;7886:1:1;7882:14;;;7898:3;7878:24;7874:37;7870:42;7855:58;7840:74;;7727:201;-1:-1:-1;;;;;7974:1:1;7958:14;;;7954:22;7941:36;;-1:-1:-1;6892:1352:1:o;8934:1187::-;9211:3;9240:1;9273:6;9267:13;9303:36;9329:9;9303:36;:::i;:::-;9358:1;9375:18;;;9402:133;;;;9549:1;9544:356;;;;9368:532;;9402:133;-1:-1:-1;;9435:24:1;;9423:37;;9508:14;;9501:22;9489:35;;9480:45;;;-1:-1:-1;9402:133:1;;9544:356;9575:6;9572:1;9565:17;9605:4;9650:2;9647:1;9637:16;9675:1;9689:165;9703:6;9700:1;9697:13;9689:165;;;9781:14;;9768:11;;;9761:35;9824:16;;;;9718:10;;9689:165;;;9693:3;;;9883:6;9878:3;9874:16;9867:23;;9368:532;;;;;9931:6;9925:13;9947:68;10006:8;10001:3;9994:4;9986:6;9982:17;9947:68;:::i;:::-;-1:-1:-1;;;10037:18:1;;10064:22;;;10113:1;10102:13;;8934:1187;-1:-1:-1;;;;8934:1187:1:o;10126:217::-;10166:1;10192;10182:132;;10236:10;10231:3;10227:20;10224:1;10217:31;10271:4;10268:1;10261:15;10299:4;10296:1;10289:15;10182:132;-1:-1:-1;10328:9:1;;10126:217::o;10348:135::-;10387:3;10408:17;;;10405:43;;10428:18;;:::i;:::-;-1:-1:-1;10475:1:1;10464:13;;10348:135::o;10488:168::-;10561:9;;;10592;;10609:15;;;10603:22;;10589:37;10579:71;;10630:18;;:::i;10661:489::-;-1:-1:-1;;;;;10930:15:1;;;10912:34;;10982:15;;10977:2;10962:18;;10955:43;11029:2;11014:18;;11007:34;;;11077:3;11072:2;11057:18;;11050:31;;;10855:4;;11098:46;;11124:19;;11116:6;11098:46;:::i;:::-;11090:54;10661:489;-1:-1:-1;;;;;;10661:489:1:o;11155:249::-;11224:6;11277:2;11265:9;11256:7;11252:23;11248:32;11245:52;;;11293:1;11290;11283:12;11245:52;11325:9;11319:16;11344:30;11368:5;11344:30;:::i;11409:128::-;11476:9;;;11497:11;;;11494:37;;;11511:18;;:::i
Swarm Source
ipfs://f302f711b670f1f7ab73614fcbae0e6fa008b29be53ff923c12a282196f217c8
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.