More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 40 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 521119 | 1 hr ago | IN | 0 ETH | 0.00000451 | ||||
Set Approval For... | 506346 | 5 hrs ago | IN | 0 ETH | 0.00000468 | ||||
Set Approval For... | 495851 | 8 hrs ago | IN | 0 ETH | 0.00000454 | ||||
Transfer From | 492865 | 9 hrs ago | IN | 0 ETH | 0.00000449 | ||||
Transfer From | 492846 | 9 hrs ago | IN | 0 ETH | 0.00000392 | ||||
Transfer From | 492810 | 9 hrs ago | IN | 0 ETH | 0.00000442 | ||||
Set Approval For... | 481978 | 12 hrs ago | IN | 0 ETH | 0.00000421 | ||||
Set Approval For... | 480419 | 13 hrs ago | IN | 0 ETH | 0.0000042 | ||||
Set Approval For... | 476595 | 14 hrs ago | IN | 0 ETH | 0.00000421 | ||||
Set Approval For... | 474810 | 14 hrs ago | IN | 0 ETH | 0.0000042 | ||||
Transfer From | 461684 | 18 hrs ago | IN | 0 ETH | 0.00000412 | ||||
Set Approval For... | 447351 | 22 hrs ago | IN | 0 ETH | 0.00000422 | ||||
Set Approval For... | 440742 | 24 hrs ago | IN | 0 ETH | 0.00000465 | ||||
Team Mint | 406303 | 34 hrs ago | IN | 0 ETH | 0.00000583 | ||||
Team Mint | 406264 | 34 hrs ago | IN | 0 ETH | 0.00000583 | ||||
Team Mint | 406227 | 34 hrs ago | IN | 0 ETH | 0.00000732 | ||||
Team Mint | 406173 | 34 hrs ago | IN | 0 ETH | 0.00000582 | ||||
Team Mint | 406091 | 34 hrs ago | IN | 0 ETH | 0.00000651 | ||||
Set Approval For... | 401870 | 35 hrs ago | IN | 0 ETH | 0.00000424 | ||||
Set Approval For... | 338944 | 2 days ago | IN | 0 ETH | 0.00000769 | ||||
Mint | 332134 | 2 days ago | IN | 0.0003 ETH | 0.00001526 | ||||
Set Approval For... | 330418 | 2 days ago | IN | 0 ETH | 0.00000712 | ||||
Set Approval For... | 327809 | 2 days ago | IN | 0 ETH | 0.00000707 | ||||
Set Approval For... | 324364 | 2 days ago | IN | 0 ETH | 0.00000695 | ||||
Set Approval For... | 268988 | 3 days ago | IN | 0 ETH | 0.00000605 |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
Derpunks
Compiler Version
v0.8.28+commit.7893614a
ZkSolc Version
v1.5.10
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.28; /** * @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(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * 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; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @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; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // 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); } library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } interface IERC2981 is IERC165 { /// ERC165 bytes to add to interface array - set in parent contract /// implementing this standard /// /// bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a /// bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a; /// _registerInterface(_INTERFACE_ID_ERC2981); /// @notice Called with the sale price to determine how much royalty // is owed and to whom. /// @param _tokenId - the NFT asset queried for royalty information /// @param _salePrice - the sale price of the NFT asset specified by _tokenId /// @return receiver - address of who should be sent the royalty payment /// @return royaltyAmount - the royalty payment amount for _salePrice function royaltyInfo( uint256 _tokenId, uint256 _salePrice ) external view returns ( address receiver, uint256 royaltyAmount ); } contract Derpunks is IERC721A { using SafeMath for uint256; address private _owner; function owner() public view returns(address){ return _owner; } mapping(address=>uint256) minted; uint256 public constant MAX_SUPPLY = 3333; uint256 public constant MAX_PER_WALLET = 5; uint256 public constant MAX_FREE_PER_WALLET = 0; uint256 public constant MAX_FREE = 0; uint256 public constant COST = 0.0003 ether; string private constant _name = "derpunks"; string private constant _symbol = "derpunks"; string private _baseURI = "QmRWas1yTNUh1K6kD9DeHFjedvG7gAxY8r9NP81uYXeVtu"; constructor() { _owner = msg.sender; } function mint(uint256 amount) external payable{ address _caller = _msgSenderERC721A(); require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out"); require(amount*COST <= msg.value, "Value to Low"); //minted[msg.sender] += amount; _mint(_caller, amount); } function freemint() external nob{ address _caller = _msgSenderERC721A(); uint256 amount = 1; require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out"); require(totalSupply() + amount <= MAX_FREE, "Value to Low"); require(minted[_caller]+amount <= MAX_FREE_PER_WALLET, "Value to Low"); minted[_caller] += amount; _mint(_caller, amount); } function freemint(address to) external nob{ address _caller = _msgSenderERC721A(); uint256 amount = 1; require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out"); require(totalSupply() + amount <= MAX_FREE, "Max reached."); require(minted[_caller]+amount <= MAX_FREE_PER_WALLET, "Max reached."); require(minted[to]+amount <= MAX_FREE_PER_WALLET, "Max reached."); minted[_caller] += amount; minted[to] += amount; _mint(_caller, amount); } // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; uint256 private constant BITPOS_NUMBER_MINTED = 64; uint256 private constant BITPOS_NUMBER_BURNED = 128; uint256 private constant BITPOS_AUX = 192; uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; uint256 private constant BITPOS_START_TIMESTAMP = 160; uint256 private constant BITMASK_BURNED = 1 << 224; uint256 private constant BITPOS_NEXT_INITIALIZED = 225; uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; uint256 private _currentIndex = 0; // 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` 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 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; function royaltyInfo(uint256, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount) { receiver = _owner; royaltyAmount = (salePrice * 500) / 10000; // Calculate royalty based on sale price } function setData(string memory _base) external onlyOwner{ _baseURI = _base; } /** * @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 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 override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: 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 == 0x2a55205a || // ERC Royalties interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (_addressToUint256(owner) == 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 auxillary 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); } /** * 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 ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * 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; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } 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("ipfs://", baseURI, "/", _toString(tokenId), ".json")) : ""; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex; } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; //if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); address approvedAddress = _tokenApprovals[tokenId]; bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // 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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // 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 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 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 returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } function teamMint(uint256 amount) external onlyOwner{ require(totalSupply() + amount < MAX_SUPPLY, "Must be below Max Supply"); _mint(msg.sender, amount); } modifier onlyOwner() { require(_owner==msg.sender, "not Owner"); _; } modifier nob() { require(tx.origin==msg.sender, "no Script"); _; } function withdraw() external onlyOwner { uint256 balance = address(this).balance; address payable recipient = payable(msg.sender); recipient.call{value:balance, gas:30000}(""); } }
{ "optimizer": { "enabled": true, "mode": "3", "runs": 200 }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "abi" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": false, "libraries": {} }
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":"ApproveToCaller","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":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"freemint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freemint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setData","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":"amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010002292cce23d53457ac6b1069a6015c9bfc7ccbd8174db00bf3b0ddfcacf000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0001000000000002000400000000000200000000000103550000008003000039000000400030043f00000001002001900000001a0000c13d0000006002100270000001b703200197000000040030008c000002e30000413d000000000201043b000000e002200270000001c00020009c0000004e0000a13d000001c10020009c000000730000213d000001cb0020009c0000009b0000a13d000001cc0020009c000000ff0000213d000001cf0020009c000001a50000613d000001d00020009c0000007b0000613d000002e30000013d0000000001000416000000000001004b000002e30000c13d0000000201000039000000000201041a000000010320019000000001022002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000043004b0000002d0000613d0000020301000041000000000010043f0000002201000039000000040010043f0000020401000041000006db00010430000000200020008c000000390000413d000000410020008c000000390000413d0000001f022000390000000502200270000001b80220009a000001b903000041000000000003041b0000000103300039000000000023004b000000350000413d0000005d02000039000000000021041b000000000010043f000001ba01000041000001bb02000041000000000012041b000001bc01000041000001bd02000041000000000012041b0000000301000039000000000001041b000000000100041a000001be011001970000000002000411000000000121019f000000000010041b000000200100003900000100001004430000012000000443000001bf01000041000006da0001042e000001d40020009c000000810000a13d000001d50020009c000000a90000a13d000001d60020009c0000011c0000213d000001d90020009c000001b60000613d000001da0020009c000002e30000c13d0000000001000416000000000001004b000002e30000c13d000000000100041a000001ea011001970000000002000411000000000021004b000002e50000c13d00000205010000410000000000100443000000000100041000000004001004430000000001000414000001b70010009c000001b701008041000000c00110021000000206011001c70000800a0200003906d906d40000040f0000000100200190000003210000613d000000000301043b000000000003004b000003480000c13d000002080100004100000000020004110000034c0000013d000001c20020009c000000cc0000a13d000001c30020009c000001850000213d000001c60020009c000001bd0000613d000001c70020009c000002e30000c13d0000000001000416000000000001004b000002e30000c13d000000800000043f000001fa01000041000006da0001042e000001de0020009c000000f10000213d000001e20020009c000001d70000613d000001e30020009c000001a50000613d000001e40020009c000002e30000c13d000000240030008c000002e30000413d0000000002000416000000000002004b000002e30000c13d0000000401100370000000000101043b0000000302000039000000000202041a000000000021004b000002ef0000813d000000000010043f0000000601000039000000200010043f000000000100001906d906be0000040f000000000101041a000000a50000013d000001d10020009c000001ea0000613d000001d20020009c000001fa0000613d000001d30020009c000002e30000c13d0000000001000416000000000001004b000002e30000c13d000000000100041a000001ea01100197000000800010043f000001fa01000041000006da0001042e000001db0020009c000002090000613d000001dc0020009c000002110000613d000001dd0020009c000002e30000c13d000000240030008c000002e30000413d0000000002000416000000000002004b000002e30000c13d0000000401100370000000000201043b000000000100041a000001ea031001970000000001000411000000000013004b000002e50000c13d0000000303000039000000000303041a000000000023001a0000031b0000413d000000000323001900000d050030008c000003050000413d000001e801000041000000800010043f0000002001000039000000840010043f0000001801000039000000a40010043f0000020c01000041000000c40010043f000001ff01000041000006db00010430000001c80020009c000002250000613d000001c90020009c000002440000613d000001ca0020009c000002e30000c13d000000240030008c000002e30000413d0000000002000416000000000002004b000002e30000c13d0000000401100370000000000301043b0000000301000039000000000101041a000000000031004b000002f30000a13d0000000204000039000000000204041a000000010520019000000001012002700000007f0110618f0000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000000270000c13d000000800010043f000000000005004b000003520000613d000000000040043f000000000001004b000003b20000c13d0000002004000039000000a002000039000003c60000013d000001df0020009c0000024b0000613d000001e00020009c000002aa0000613d000001e10020009c000002e30000c13d0000000001000416000000000001004b000002e30000c13d0000000301000039000000000101041a000000800010043f000001fa01000041000006da0001042e000001cd0020009c000002b10000613d000001ce0020009c000002e30000c13d000000440030008c000002e30000413d0000000002000416000000000002004b000002e30000c13d0000000402100370000000000202043b000400000002001d000001ea0020009c000002e30000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000300000002001d000000000012004b000002e30000c13d0000000002000411000000040020006b000003580000c13d000001fe01000041000000000010043f000001f001000041000006db00010430000001d70020009c000002c60000613d000001d80020009c000002e30000c13d000000240030008c000002e30000413d0000000002000416000000000002004b000002e30000c13d0000000402100370000000000502043b000001f70050009c000002e30000213d0000002302500039000000000032004b000002e30000813d0000000406500039000000000261034f000000000202043b000001f70020009c0000042a0000213d0000001f072000390000021c077001970000003f077000390000021c07700197000001f10070009c0000042a0000213d00000024055000390000008007700039000000400070043f000000800020043f0000000005520019000000000035004b000002e30000213d0000002003600039000000000331034f0000021c052001980000001f0620018f000000a0015000390000014a0000613d000000a007000039000000000803034f000000008908043c0000000007970436000000000017004b000001460000c13d000000000006004b000001570000613d000000000353034f0000000305600210000000000601043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000310435000000a0012000390000000000010435000000000100041a000001ea011001970000000002000411000000000021004b000004300000c13d000000800200043d000001f70020009c0000042a0000213d0000000201000039000000000501041a000000010050019000000001035002700000007f0330618f0000001f0030008c00000000060000390000000106002039000000000565013f0000000100500190000000270000c13d000000200030008c0000017d0000413d000000000010043f0000001f052000390000000505500270000001b80550009a000000200020008c000001bb050040410000001f033000390000000503300270000001b80330009a000000000035004b0000017d0000813d000000000005041b0000000105500039000000000035004b000001790000413d0000001f0020008c0000045e0000a13d000000000010043f0000021c04200198000004680000c13d000000a005000039000001bb03000041000004760000013d000001c40020009c000002da0000613d000001c50020009c000002e30000c13d0000000001000416000000000001004b000002e30000c13d000001e50100004100000000001004430000000001000414000001b70010009c000001b701008041000000c001100210000001e6011001c70000800b0200003906d906d40000040f0000000100200190000003210000613d000000000101043b0000000002000411000000000021004b000003220000c13d0000000301000039000000000101041a0000021d0010009c0000031b0000613d00000d040010008c000003cd0000213d000000400100043d0000004402100039000001e703000041000004370000013d0000000001000416000000000001004b000002e30000c13d000000c001000039000000400010043f0000000802000039000000800020043f0000021402000041000000a00020043f000000800200003906d904850000040f000000c00110008a000001b70010009c000001b701008041000000600110021000000215011001c7000006da0001042e0000000001000416000000000001004b000002e30000c13d00000d0501000039000000800010043f000001fa01000041000006da0001042e000000440030008c000002e30000413d0000000002000416000000000002004b000002e30000c13d0000000402100370000000000202043b000001ea0020009c000002e30000213d0000002401100370000000000101043b000400000001001d000001ea0010009c000002e30000213d000000000020043f0000000701000039000000200010043f000000000100001906d906be0000040f000000040200002906d904f50000040f000000000101041a000000ff001001900000000001000039000000010100c039000001f30000013d000000240030008c000002e30000413d0000000002000416000000000002004b000002e30000c13d0000000401100370000000000201043b0000021600200198000002e30000c13d0000000101000039000002170020009c000003370000213d0000021a0020009c000002ae0000613d0000021b0020009c000000000100c019000000800010043f000001fa01000041000006da0001042e000000240030008c000002e30000413d0000000002000416000000000002004b000002e30000c13d0000000401100370000000000101043b06d905190000040f000001ea01100197000000400200043d0000000000120435000001b70020009c000001b7020080410000004001200210000001ee011001c7000006da0001042e000000240030008c000002e30000413d0000000002000416000000000002004b000002e30000c13d0000000401100370000000000101043b000001ea0010009c000002e30000213d000000000001004b0000033e0000c13d0000020001000041000000000010043f000001f001000041000006db000104300000000001000416000000000001004b000002e30000c13d000000000103001906d9049a0000040f06d9054c0000040f0000000001000019000006da0001042e000000440030008c000002e30000413d0000000002000416000000000002004b000002e30000c13d000000000200041a0000002401100370000000000301043b000001f4013000c9000000000003004b0000021f0000613d00000000033100d9000001f40030008c0000031b0000c13d000001ea02200197000000800020043f000027100110011a000000a00010043f0000020d01000041000006da0001042e000000840030008c000002e30000413d0000000002000416000000000002004b000002e30000c13d0000000402100370000000000202043b000400000002001d000001ea0020009c000002e30000213d0000002402100370000000000202043b000300000002001d000001ea0020009c000002e30000213d0000006402100370000000000402043b000001f70040009c000002e30000213d0000002302400039000000000032004b000002e30000813d0000000402400039000000000221034f000000000202043b0000004401100370000000000101043b000200000001001d000000240140003906d904be0000040f000002d40000013d0000000001000416000000000001004b000002e30000c13d000001f901000041000000800010043f000001fa01000041000006da0001042e000000440030008c000002e30000413d0000000002000416000000000002004b000002e30000c13d0000000402100370000000000202043b000300000002001d000001ea0020009c000002e30000213d0000002401100370000000000201043b0000000301000039000000000101041a000000000021004b000003330000a13d000200000002001d000000000020043f0000000401000039000000200010043f0000000001000414000001b70010009c000001b701008041000000c001100210000001fb011001c7000080100200003906d906d40000040f0000000100200190000002e30000613d000000000101043b000000000101041a0000020e00100198000003330000c13d000000000001004b000002820000c13d0000000202000029000000010220008a000400000002001d000000000020043f0000000401000039000000200010043f0000000001000414000001b70010009c000001b701008041000000c001100210000001fb011001c7000080100200003906d906d40000040f0000000100200190000002e30000613d000000000101043b000000000101041a000000000001004b00000004020000290000026f0000613d0000000302000029000001ea02200197000001ea01100197000300000002001d000400000001001d000000000012004b000002e30000613d0000000002000411000000040020006c0000043b0000c13d0000000201000029000000000010043f0000000601000039000000200010043f0000000001000414000001b70010009c000001b701008041000000c001100210000001fb011001c7000080100200003906d906d40000040f0000000100200190000002e30000613d000000000101043b000000000201041a000001be022001970000000306000029000000000262019f000000000021041b0000000001000414000001b70010009c000001b701008041000000c00110021000000211011001c70000800d020000390000000403000039000002120400004100000004050000290000000207000029000003870000013d0000000001000416000000000001004b000002e30000c13d0000000501000039000000800010043f000001fa01000041000006da0001042e000000240030008c000002e30000413d0000000302000039000000000202041a0000000401100370000000000301043b000000000032001a0000031b0000413d000000000132001900000d060010008c000002f70000413d000001e801000041000000800010043f0000002001000039000000840010043f0000000801000039000000a40010043f000001ed01000041000000c40010043f000001ff01000041000006db000104300000000001000416000000000001004b000002e30000c13d000000000103001906d9049a0000040f000400000001001d000300000002001d000200000003001d000000400100043d000100000001001d000000200200003906d904ac0000040f0000000101000029000000000001043500000004010000290000000302000029000000020300002906d9054c0000040f0000000001000019000006da0001042e000000240030008c000002e30000413d0000000002000416000000000002004b000002e30000c13d0000000401100370000000000101043b000001ea0010009c000003080000a13d0000000001000019000006db00010430000001e801000041000000800010043f0000002001000039000000840010043f0000000901000039000000a40010043f0000020101000041000000c40010043f000001ff01000041000006db000104300000021301000041000000000010043f000001f001000041000006db00010430000001ef01000041000000000010043f000001f001000041000006db00010430000001f9013000d1000000000003004b000002fd0000613d00000000023100d9000001f90020009c0000031b0000c13d0000000002000416000000000021004b0000000001000039000000010100a039000400000003001d06d905050000040f0000000001000411000000040200002906d906580000040f0000000001000019000006da0001042e000001e50100004100000000001004430000000001000414000001b70010009c000001b701008041000000c001100210000001e6011001c70000800b0200003906d906d40000040f0000000100200190000003210000613d000000000101043b0000000002000411000000000021004b000003220000c13d0000000301000039000000000101041a0000021d0010009c000003cb0000c13d0000020301000041000000000010043f0000001101000039000000040010043f0000020401000041000006db00010430000000000001042f000000400100043d0000004402100039000001eb030000410000000000320435000000240210003900000009030000390000000000320435000001e8020000410000000000210435000000040210003900000020030000390000000000320435000001b70010009c000001b7010080410000004001100210000001e9011001c7000006db000104300000020f01000041000000000010043f000001f001000041000006db00010430000002180020009c000002ae0000613d000002190020009c000002ae0000613d000000800000043f000001fa01000041000006da0001042e000000000010043f0000000501000039000000200010043f000000000100001906d906be0000040f000000000101041a000001f701100197000000800010043f000001fa01000041000006da0001042e000080090200003900000207010000410000000004000411000000000500001906d906cf0000040f0000006002100270000001b7022001980000038b0000c13d0000000001000019000006da0001042e0000021e02200197000000a00020043f000000000001004b00000020020000390000000002006039000003bb0000013d000000000020043f0000000701000039000000200010043f0000000001000414000001b70010009c000001b701008041000000c001100210000001fb011001c7000080100200003906d906d40000040f0000000100200190000002e30000613d000000000101043b0000000402000029000000000020043f000000200010043f0000000001000414000001b70010009c000001b701008041000000c001100210000001fb011001c7000080100200003906d906d40000040f0000000100200190000002e30000613d000000000101043b000000000201041a0000021e022001970000000303000029000000000232019f000000000021041b000000400100043d0000000000310435000001b70010009c000001b70100804100000040011002100000000002000414000001b70020009c000001b702008041000000c002200210000000000112019f000001fc011001c70000800d020000390000000303000039000001fd040000410000000005000411000000040600002906d906cf0000040f0000000100200190000002e30000613d000003500000013d0000001f0320003900000209033001970000003f033000390000020a03300197000000400400043d0000000003340019000000000043004b00000000050000390000000105004039000001f70030009c0000042a0000213d00000001005001900000042a0000c13d000000400030043f0000001f0320018f00000000052404360000020b042001980000000002450019000003a30000613d000000000601034f000000006706043c0000000005750436000000000025004b0000039f0000c13d000000000003004b000003500000613d000000000141034f0000000303300210000000000402043300000000043401cf000000000434022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000141019f00000000001204350000000001000019000006da0001042e000001bb040000410000000002000019000000000504041a000000a006200039000000000056043500000001044000390000002002200039000000000012004b000003b40000413d0000003f022000390000021c04200197000001f10040009c0000042a0000213d0000008002400039000000800500043d000000400020043f000000000005004b000003d40000c13d000001f80020009c0000042a0000213d000000a001400039000000400010043f0000000000020435000000400100043d0000041e0000013d00000d050010008c000004340000413d000000400100043d0000004402100039000001ed03000041000000000032043500000024021000390000000803000039000003280000013d0000010002400039000000400020043f0000000a5030011a000000f805500210000000ff044000390000000006040433000001f206600197000000000565019f000001f3055001c700000000005404350000000a0030008c000003eb0000413d000000010440008a0000000005040433000001f205500197000000630030008c0000000a0330011a0000000a6030011a000000f806600210000000000556019f000001f3055001c70000000000540435000003e00000213d0000000002420049000000200340008a0000000000230435000000400200043d0000002005200039000001f40600004100000000006504350000002705200039000000800600043d000000000006004b000003fe0000613d00000000070000190000000008570019000000a009700039000000000909043300000000009804350000002007700039000000000067004b000003f70000413d0000000005560019000001f506000041000000000065043500000001055000390000000003030433000000000003004b0000040d0000613d000000000600001900000000075600190000000008460019000000000808043300000000008704350000002006600039000000000036004b000004060000413d0000000003530019000001f604000041000000000043043500000000032300490000001b0430008a000000000042043500000024033000390000021c033001970000000001230019000000000031004b00000000030000390000000103004039000001f70010009c0000042a0000213d00000001003001900000042a0000c13d000000400010043f000400000001001d06d904850000040f00000004020000290000000001210049000001b70010009c000001b7010080410000006001100210000001b70020009c000001b7020080410000004002200210000000000121019f000006da0001042e0000020301000041000000000010043f0000004101000039000000040010043f0000020401000041000006db00010430000000400100043d00000044021000390000020103000041000003250000013d000000400100043d0000004402100039000001ec03000041000000000032043500000024021000390000000c03000039000003280000013d0000000401000029000000000010043f0000000701000039000000200010043f0000000001000414000001b70010009c000001b701008041000000c001100210000001fb011001c7000080100200003906d906d40000040f0000000100200190000002e30000613d000000000101043b0000000002000411000001ea02200197000000000020043f000000200010043f0000000001000414000001b70010009c000001b701008041000000c001100210000001fb011001c7000080100200003906d906d40000040f0000000100200190000002e30000613d000000000101043b000000000101041a000000ff001001900000028c0000c13d0000021001000041000000000010043f000001f001000041000006db00010430000000000002004b0000000003000019000004620000613d000000a00300043d00000003042002100000021d0440027f0000021d04400167000000000443016f0000000103200210000004810000013d000001bb030000410000002006000039000000010540008a0000000505500270000002020550009a000000000706001900000080066000390000000006060433000000000063041b00000020067000390000000103300039000000000053004b0000046d0000c13d000000a005700039000000000024004b0000047f0000813d0000000304200210000000f80440018f0000021d0440027f0000021d044001670000000005050433000000000445016f000000000043041b00000001030000390000000104200210000000000234019f000000000021041b0000000001000019000006da0001042e00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000004940000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b0000048d0000413d000000000312001900000000000304350000001f022000390000021c022001970000000001210019000000000001042d0000021f0010009c000004aa0000213d000000630010008c000004aa0000a13d00000000030003670000000401300370000000000101043b000001ea0010009c000004aa0000213d0000002402300370000000000202043b000001ea0020009c000004aa0000213d0000004403300370000000000303043b000000000001042d0000000001000019000006db000104300000001f022000390000021c022001970000000001120019000000000021004b00000000020000390000000102004039000001f70010009c000004b80000213d0000000100200190000004b80000c13d000000400010043f000000000001042d0000020301000041000000000010043f0000004101000039000000040010043f0000020401000041000006db00010430000002200020009c000004ed0000813d0000001f042000390000021c044001970000003f044000390000021c06400197000000400400043d0000000006640019000000000046004b00000000070000390000000107004039000001f70060009c000004ed0000213d0000000100700190000004ed0000c13d000000400060043f00000000042404360000000006120019000000000036004b000004f30000213d0000021c032001980000001f0520018f00000000061003670000000001340019000004dd0000613d000000000706034f0000000008040019000000007907043c0000000008980436000000000018004b000004d90000c13d000000000005004b000004ea0000613d000000000336034f0000000305500210000000000601043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f000000000031043500000000012400190000000000010435000000000001042d0000020301000041000000000010043f0000004101000039000000040010043f0000020401000041000006db000104300000000001000019000006db00010430000001ea02200197000000000020043f000000200010043f0000000001000414000001b70010009c000001b701008041000000c001100210000001fb011001c7000080100200003906d906d40000040f0000000100200190000005030000613d000000000101043b000000000001042d0000000001000019000006db00010430000000000001004b000005080000613d000000000001042d000000400100043d0000004402100039000001e703000041000000000032043500000024021000390000000c030000390000000000320435000001e8020000410000000000210435000000040210003900000020030000390000000000320435000001b70010009c000001b7010080410000004001100210000001e9011001c7000006db0001043000010000000000020000000302000039000000000202041a000000000012004b000005480000a13d000100000001001d000000000010043f0000000401000039000000200010043f0000000001000414000001b70010009c000001b701008041000000c001100210000001fb011001c7000080100200003906d906d40000040f0000000100200190000005460000613d000000000101043b000000000101041a0000020e001001980000000102000029000005480000c13d000000000001004b000005450000c13d000000010220008a000100000002001d000000000020043f0000000401000039000000200010043f0000000001000414000001b70010009c000001b701008041000000c001100210000001fb011001c7000080100200003906d906d40000040f0000000100200190000005460000613d000000000101043b000000000101041a000000000001004b0000000102000029000005320000613d000000000001042d0000000001000019000006db000104300000020f01000041000000000010043f000001f001000041000006db000104300006000000000002000400000002001d000300000001001d0000000301000039000000000101041a000500000003001d000000000031004b0000064b0000a13d0000000501000029000000000010043f0000000401000039000000200010043f0000000001000414000001b70010009c000001b701008041000000c001100210000001fb011001c7000080100200003906d906d40000040f0000000100200190000006490000613d000000000101043b000000000101041a0000020e001001980000064b0000c13d000000000001004b0000057b0000c13d0000000502000029000000010220008a000600000002001d000000000020043f0000000401000039000000200010043f0000000001000414000001b70010009c000001b701008041000000c001100210000001fb011001c7000080100200003906d906d40000040f0000000100200190000006490000613d000000000101043b000000000101041a000000000001004b0000000602000029000005680000613d0000000302000029000001ea02200197000300000001001d000001ea01100197000600000002001d000000000021004b0000064f0000c13d0000000501000029000000000010043f0000000601000039000000200010043f0000000001000414000001b70010009c000001b701008041000000c001100210000001fb011001c7000080100200003906d906d40000040f0000000100200190000006490000613d000000000101043b000000000101041a000001ea021001970000000003000411000000060030006c000005b90000613d000200000002001d0000000601000029000000000010043f0000000701000039000000200010043f0000000001000414000001b70010009c000001b701008041000000c001100210000001fb011001c7000080100200003906d906d40000040f0000000100200190000006490000613d000000000101043b0000000002000411000001ea02200197000000000020043f000000200010043f0000000001000414000001b70010009c000001b701008041000000c001100210000001fb011001c7000080100200003906d906d40000040f0000000100200190000006490000613d000000000101043b000000000101041a000000ff001001900000000202000029000005b90000c13d0000000001000411000000000012004b000006540000c13d000000000002004b000005cc0000613d0000000501000029000000000010043f0000000601000039000000200010043f0000000001000414000001b70010009c000001b701008041000000c001100210000001fb011001c7000080100200003906d906d40000040f0000000100200190000006490000613d000000000101043b000000000201041a000001be02200197000000000021041b0000000601000029000000000010043f0000000501000039000000200010043f0000000001000414000001b70010009c000001b701008041000000c001100210000001fb011001c7000080100200003906d906d40000040f0000000100200190000006490000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000401000029000001ea01100197000200000001001d000000000010043f0000000501000039000000200010043f0000000001000414000001b70010009c000001b701008041000000c001100210000001fb011001c7000080100200003906d906d40000040f0000000100200190000006490000613d000000000101043b000000000201041a0000000102200039000000000021041b000002230100004100000000001004430000000001000414000001b70010009c000001b701008041000000c001100210000001e6011001c70000800b0200003906d906d40000040f0000000100200190000006530000613d000000000101043b000100000001001d0000000501000029000000000010043f0000000401000039000000200010043f0000000001000414000001b70010009c000001b701008041000000c001100210000001fb011001c7000080100200003906d906d40000040f0000000100200190000006490000613d0000000102000029000000a00220021000000004022001af00000224022001c7000000000101043b000000000021041b000000030100002900000224001001980000063a0000c13d00000005010000290000000101100039000400000001001d000000000010043f0000000401000039000000200010043f0000000001000414000001b70010009c000001b701008041000000c001100210000001fb011001c7000080100200003906d906d40000040f0000000100200190000006490000613d000000000101043b000000000101041a000000000001004b0000063a0000c13d0000000301000039000000000101041a000000040010006b0000063a0000613d0000000401000029000000000010043f0000000401000039000000200010043f0000000001000414000001b70010009c000001b701008041000000c001100210000001fb011001c7000080100200003906d906d40000040f0000000100200190000006490000613d000000000101043b0000000302000029000000000021041b0000000001000414000001b70010009c000001b701008041000000c00110021000000211011001c70000800d020000390000000403000039000002250400004100000006050000290000000206000029000000050700002906d906cf0000040f0000000100200190000006490000613d000000000001042d0000000001000019000006db000104300000020f01000041000000000010043f000001f001000041000006db000104300000022101000041000000000010043f000001f001000041000006db00010430000000000001042f0000022201000041000000000010043f000001f001000041000006db000104300005000000000002000400000002001d000000000002004b000006b80000613d0000000302000039000000000202041a000500000002001d000300000001001d000001ea01100197000200000001001d000000000010043f0000000501000039000000200010043f0000000001000414000001b70010009c000001b701008041000000c001100210000001fb011001c7000080100200003906d906d40000040f0000000100200190000006b30000613d000000040200002900000226022000d1000000000101043b000000000301041a0000000002230019000000000021041b000002230100004100000000001004430000000001000414000001b70010009c000001b701008041000000c001100210000001e6011001c70000800b0200003906d906d40000040f0000000100200190000006bc0000613d000000000101043b000100000001001d0000000501000029000000000010043f0000000401000039000000200010043f0000000001000414000001b70010009c000001b701008041000000c001100210000001fb011001c7000080100200003906d906d40000040f00000005070000290000000100200190000006b30000613d0000000102000029000000a0022002100000000404000029000000010040008c00000000030000190000022403006041000000000223019f00000003022001af000000000101043b000000000021041b000300000047001d0000000101000039000000030070006c000000000200003900000001020040390000000100100190000006b50000613d0000000001000414000001b70010009c000001b701008041000000c00110021000000211011001c7000400000002001d0000800d020000390000000403000039000002250400004100000000050000190000000206000029000500000007001d000000050700002906d906cf0000040f00000005070000290000000107700039000000010020019000000004010000290000069b0000c13d0000000001000019000006db000104300000000301000039000000000071041b000000000001042d0000022701000041000000000010043f000001f001000041000006db00010430000000000001042f000000000001042f0000000002000414000001b70020009c000001b702008041000000c002200210000001b70010009c000001b7010080410000004001100210000000000121019f000001fb011001c7000080100200003906d906d40000040f0000000100200190000006cd0000613d000000000101043b000000000001042d0000000001000019000006db00010430000006d2002104210000000102000039000000000001042d0000000002000019000000000001042d000006d7002104230000000102000039000000000001042d0000000002000019000000000001042d000006d900000432000006da0001042e000006db0001043000000000000000000000000000000000000000000000000000000000ffffffffbfa87805ed57dc1f0d489ce33be4c4577d74ccde357eeeee058a32c55c44a532405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ad0516d525761733179544e5568314b366b4439446548466a656476473767417859405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace3872394e50383175595865567475000000000000000000000000000000000000405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acfffffffffffffffffffffffff00000000000000000000000000000000000000000000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000006352211d00000000000000000000000000000000000000000000000000000000b88d4fdd00000000000000000000000000000000000000000000000000000000e985e9c400000000000000000000000000000000000000000000000000000000f2c05b2d00000000000000000000000000000000000000000000000000000000f2c05b2e00000000000000000000000000000000000000000000000000000000f9cb63ac00000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000ed6661c200000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000bf8fbbd200000000000000000000000000000000000000000000000000000000c87b56dd0000000000000000000000000000000000000000000000000000000095d89b4000000000000000000000000000000000000000000000000000000000a0712d6700000000000000000000000000000000000000000000000000000000a0712d6800000000000000000000000000000000000000000000000000000000a22cb4650000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000098710d1e000000000000000000000000000000000000000000000000000000006352211e0000000000000000000000000000000000000000000000000000000070a08231000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000032cb6b0b0000000000000000000000000000000000000000000000000000000042842e0d0000000000000000000000000000000000000000000000000000000042842e0e0000000000000000000000000000000000000000000000000000000047064d6a0000000000000000000000000000000000000000000000000000000032cb6b0c000000000000000000000000000000000000000000000000000000003ccfd60b0000000000000000000000000000000000000000000000000000000023b872dd000000000000000000000000000000000000000000000000000000002a55205a000000000000000000000000000000000000000000000000000000002fbba11500000000000000000000000000000000000000000000000000000000095ea7b200000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000000f2cdd6c0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000081812fc938b5f3299a1f3b18e458564efbb950733226014eece26fae19012d850b48d83020000020000000000000000000000000000000400000000000000000000000056616c756520746f204c6f77000000000000000000000000000000000000000008c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff6e6f2053637269707400000000000000000000000000000000000000000000004d617820726561636865642e0000000000000000000000000000000000000000536f6c64204f75740000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000a14c4b50000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff3000000000000000000000000000000000000000000000000000000000000000697066733a2f2f000000000000000000000000000000000000000000000000002f000000000000000000000000000000000000000000000000000000000000002e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffdf000000000000000000000000000000000000000000000000000110d9316ec00000000000000000000000000000000000000000200000008000000000000000000200000000000000000000000000000000000040000000000000000000000000020000000000000000000000000000000000002000000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31b06307db0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000008000000000000000008f4eb604000000000000000000000000000000000000000000000000000000006e6f74204f776e65720000000000000000000000000000000000000000000000bfa87805ed57dc1f0d489ce33be4c4577d74ccde357eeeee058a32c55c44a5314e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f3902000002000000000000000000000000000000240000000000000000000000000200000000007530000000000000000000000000000000000000000000000000000000000000753000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000003ffffffe000000000000000000000000000000000000000000000000000000000ffffffe04d7573742062652062656c6f77204d617820537570706c79000000000000000000000000000000000000000000000000000000400000008000000000000000000000000100000000000000000000000000000000000000000000000000000000df2d9b4200000000000000000000000000000000000000000000000000000000cfb3b9420000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925cf4700e40000000000000000000000000000000000000000000000000000000064657270756e6b730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b5e139effffffffffffffffffffffffffffffffffffffffffffffffffffffff5b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000002a55205a00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000010000000000000000a11481000000000000000000000000000000000000000000000000000000000059c896be00000000000000000000000000000000000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d955391320000000200000000000000000000000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0000000000000000000000000000000000000000000000010000000000000001b562e8dd000000000000000000000000000000000000000000000000000000004143a45c37a83323c4f32ee7c3ac53cfa17d505f018888d970159b84841f7cef
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.