Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 50 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Free Mint | 16981925 | 1074 days ago | IN | 0 ETH | 0.00217162 | ||||
| Free Mint | 16981807 | 1074 days ago | IN | 0 ETH | 0.00255716 | ||||
| Free Mint | 16981726 | 1074 days ago | IN | 0 ETH | 0.00229154 | ||||
| Free Mint | 16981719 | 1074 days ago | IN | 0 ETH | 0.0022505 | ||||
| Free Mint | 16981716 | 1074 days ago | IN | 0 ETH | 0.00226543 | ||||
| Free Mint | 16981705 | 1074 days ago | IN | 0 ETH | 0.00246306 | ||||
| Free Mint | 16981704 | 1074 days ago | IN | 0 ETH | 0.00256584 | ||||
| Free Mint | 16981702 | 1074 days ago | IN | 0 ETH | 0.00239984 | ||||
| Free Mint | 15754325 | 1246 days ago | IN | 0 ETH | 0.00152857 | ||||
| Free Mint | 15752454 | 1246 days ago | IN | 0 ETH | 0.00119371 | ||||
| Free Mint | 15752392 | 1246 days ago | IN | 0 ETH | 0.00117896 | ||||
| Free Mint | 15752390 | 1246 days ago | IN | 0 ETH | 0.00121634 | ||||
| Free Mint | 15752377 | 1246 days ago | IN | 0 ETH | 0.00108886 | ||||
| Free Mint | 15752372 | 1246 days ago | IN | 0 ETH | 0.00125527 | ||||
| Free Mint | 15752371 | 1246 days ago | IN | 0 ETH | 0.00123652 | ||||
| Free Mint | 15752369 | 1246 days ago | IN | 0 ETH | 0.00127573 | ||||
| Free Mint | 15752364 | 1246 days ago | IN | 0 ETH | 0.00108725 | ||||
| Free Mint | 15752361 | 1246 days ago | IN | 0 ETH | 0.0011994 | ||||
| Free Mint | 15752356 | 1246 days ago | IN | 0 ETH | 0.00126223 | ||||
| Free Mint | 15752355 | 1246 days ago | IN | 0 ETH | 0.00120632 | ||||
| Free Mint | 15752352 | 1246 days ago | IN | 0 ETH | 0.00135814 | ||||
| Free Mint | 15752349 | 1246 days ago | IN | 0 ETH | 0.00128621 | ||||
| Free Mint | 15752345 | 1246 days ago | IN | 0 ETH | 0.00126502 | ||||
| Free Mint | 15752344 | 1246 days ago | IN | 0 ETH | 0.00113745 | ||||
| Free Mint | 15752342 | 1246 days ago | IN | 0 ETH | 0.00113775 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
GenPunks
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-10-15
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
/**
* @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);
}
contract GenPunks is IERC721A {
address private _owner;
modifier onlyOwner() {
require(_owner==msg.sender);
_;
}
uint256 public MAX_SUPPLY = 999;
uint256 public MAX_FREE_PER_WALLET = 1;
uint256 public MAX_FREE = 666;
uint256 public COST = 0.002 ether;
string private constant _name = "GenPunks";
string private constant _symbol = "GENPUNK";
string private constant _baseURI = "QmcdEzyA8UZwKr3tuAeAUWoSKDM3hRDAjEFMV2A7LEna8q";
constructor() {
_owner = msg.sender;
_mint(msg.sender, 10);
}
function mint(uint256 amount) external payable{
address _caller = _msgSenderERC721A();
require(totalSupply() + amount <= MAX_SUPPLY, "SoldOut");
require(amount*COST <= msg.value, "Value to Low");
_mint(_caller, amount);
}
function freeMint() external{
address _caller = _msgSenderERC721A();
uint256 amount = MAX_FREE_PER_WALLET;
require(totalSupply() + amount <= MAX_FREE, "Freemint SoldOut");
require(amount + _numberMinted(_caller) <= MAX_FREE_PER_WALLET, "AccLimit");
_mint(_caller, amount);
}
// 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 tokenId of the next token to be minted.
uint256 private _currentIndex = 0;
// The number of tokens burned.
// uint256 private _burnCounter;
// 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 setData(string memory _contract, string memory _base) external onlyOwner{
//_contractURI = _contract;
_baseURI = _base;
}
*/
function setData(uint256 _MAX_SUPPLY, uint256 _MAX_FREE, uint256 _COST) external onlyOwner{
MAX_SUPPLY = _MAX_SUPPLY;
MAX_FREE = _MAX_FREE;
COST = _COST;
}
/**
* @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 == 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);
}
/**
* Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
* If there are multiple variables, please pack them into a uint64.
*/
function _setAux(address owner, uint64 aux) internal {
uint256 packed = _packedAddressData[owner];
uint256 auxCasted;
assembly { // Cast aux without masking.
auxCasted := aux
}
packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
_packedAddressData[owner] = packed;
}
/**
* 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 Equivalent to `_safeMint(to, quantity, '')`.
*/
/*
function _safeMint(address to, uint256 quantity) internal {
_safeMint(to, quantity, '');
}
*/
/**
* @dev Safely mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement
* {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
/*
function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal {
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;
if (to.code.length != 0) {
do {
emit Transfer(address(0), to, updatedIndex);
} while (updatedIndex < end);
// Reentrancy protection
if (_currentIndex != startTokenId) revert();
} else {
do {
emit Transfer(address(0), to, updatedIndex++);
} while (updatedIndex < end);
}
_currentIndex = updatedIndex;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
*/
/**
* @dev 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();
//X if (_addressToUint256(to) == 0) revert TransferToZeroAddress();
// 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 withdraw() external onlyOwner {
uint256 balance = address(this).balance;
payable(msg.sender).transfer(balance);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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_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":[],"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":[{"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":"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":"uint256","name":"_MAX_SUPPLY","type":"uint256"},{"internalType":"uint256","name":"_MAX_FREE","type":"uint256"},{"internalType":"uint256","name":"_COST","type":"uint256"}],"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":"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
60806040526103e7600155600160025561029a60035566071afd498d0000600455600060055534801561003157600080fd5b50600080546001600160a01b0319163390811790915561005290600a610057565b610132565b6005548260000361007a57604051622e076360e81b815260040160405180910390fd5b8160000361009b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526007602090815260408083208054680100000000000000018702019055838352600690915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106100e65750600555505050565b611028806101416000396000f3fe6080604052600436106101355760003560e01c80636352211e116100ab578063a22cb4651161006f578063a22cb4651461035b578063b88d4fde1461037b578063bf8fbbd21461039b578063c87b56dd146103b1578063e985e9c5146103d1578063ed6661c2146103f157600080fd5b80636352211e146102c257806370a08231146102e257806395d89b411461030257806398710d1e14610332578063a0712d681461034857600080fd5b806323b872dd116100fd57806323b872dd146102225780632909f6381461024257806332cb6b0c146102625780633ccfd60b1461027857806342842e0e1461028d5780635b70ea9f146102ad57600080fd5b806301ffc9a71461013a57806306fdde031461016f578063081812fc146101a9578063095ea7b3146101e157806318160ddd14610203575b600080fd5b34801561014657600080fd5b5061015a610155366004610c5f565b610407565b60405190151581526020015b60405180910390f35b34801561017b57600080fd5b5060408051808201909152600881526747656e50756e6b7360c01b60208201525b6040516101669190610cad565b3480156101b557600080fd5b506101c96101c4366004610ce0565b610459565b6040516001600160a01b039091168152602001610166565b3480156101ed57600080fd5b506102016101fc366004610d15565b61049f565b005b34801561020f57600080fd5b506005545b604051908152602001610166565b34801561022e57600080fd5b5061020161023d366004610d3f565b61055d565b34801561024e57600080fd5b5061020161025d366004610d7b565b61056d565b34801561026e57600080fd5b5061021460015481565b34801561028457600080fd5b50610201610592565b34801561029957600080fd5b506102016102a8366004610d3f565b6105dc565b3480156102b957600080fd5b506102016105f7565b3480156102ce57600080fd5b506101c96102dd366004610ce0565b6106d0565b3480156102ee57600080fd5b506102146102fd366004610da7565b6106db565b34801561030e57600080fd5b5060408051808201909152600781526647454e50554e4b60c81b602082015261019c565b34801561033e57600080fd5b5061021460025481565b610201610356366004610ce0565b610724565b34801561036757600080fd5b50610201610376366004610dc2565b6107cb565b34801561038757600080fd5b50610201610396366004610e14565b610860565b3480156103a757600080fd5b5061021460045481565b3480156103bd57600080fd5b5061019c6103cc366004610ce0565b610871565b3480156103dd57600080fd5b5061015a6103ec366004610ef0565b610908565b3480156103fd57600080fd5b5061021460035481565b60006301ffc9a760e01b6001600160e01b03198316148061043857506380ac58cd60e01b6001600160e01b03198316145b806104535750635b5e139f60e01b6001600160e01b03198316145b92915050565b6000610466826005541190565b610483576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b60006104aa82610936565b9050806001600160a01b0316836001600160a01b0316036104ca57600080fd5b336001600160a01b03821614610501576104e48133610908565b610501576040516367d9dca160e11b815260040160405180910390fd5b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61056883838361099d565b505050565b6000546001600160a01b0316331461058457600080fd5b600192909255600355600455565b6000546001600160a01b031633146105a957600080fd5b6040514790339082156108fc029083906000818181858888f193505050501580156105d8573d6000803e3d6000fd5b5050565b61056883838360405180602001604052806000815250610860565b6002546003543391908161060a60055490565b6106149190610f39565b111561065a5760405162461bcd60e51b815260206004820152601060248201526f119c99595b5a5b9d0814dbdb1913dd5d60821b60448201526064015b60405180910390fd5b6002546001600160a01b038316600090815260076020526040908190205461068d911c67ffffffffffffffff1683610f39565b11156106c65760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b6044820152606401610651565b6105d88282610b35565b600061045382610936565b6000816000036106fe576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b60015433908261073360055490565b61073d9190610f39565b11156107755760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b6044820152606401610651565b34600454836107849190610f4c565b11156107c15760405162461bcd60e51b815260206004820152600c60248201526b56616c756520746f204c6f7760a01b6044820152606401610651565b6105d88183610b35565b336001600160a01b038316036107f45760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61086b84848461099d565b50505050565b606061087e826005541190565b61089b57604051630a14c4b560e41b815260040160405180910390fd5b60006040518060600160405280602e8152602001610fc5602e9139905080516000036108d65760405180602001604052806000815250610901565b806108e084610c10565b6040516020016108f1929190610f63565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b6000816005548110156109845760008181526006602052604081205490600160e01b82169003610982575b80600003610901575060001901600081815260066020526040902054610961565b505b604051636f96cda160e11b815260040160405180910390fd5b60006109a882610936565b9050836001600160a01b0316816001600160a01b0316146109db5760405162a1148160e81b815260040160405180910390fd5b6000828152600860205260408120546001600160a01b0390811691908616331480610a0b5750610a0b8633610908565b80610a1e57506001600160a01b03821633145b905080610a3e57604051632ce44b5f60e11b815260040160405180910390fd5b8115610a6157600084815260086020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600760209081526040808320805460001901905592881682528282208054600101905586825260069052908120600160e11b4260a01b8817811790915584169003610aec57600184016000818152600660205260408120549003610aea576005548114610aea5760008181526006602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b60055482600003610b5857604051622e076360e81b815260040160405180910390fd5b81600003610b795760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526007602090815260408083208054680100000000000000018702019055838352600690915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610bc45750600555505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610c4d57600183039250600a81066030018353600a9004610c2f565b50819003601f19909101908152919050565b600060208284031215610c7157600080fd5b81356001600160e01b03198116811461090157600080fd5b60005b83811015610ca4578181015183820152602001610c8c565b50506000910152565b6020815260008251806020840152610ccc816040850160208701610c89565b601f01601f19169190910160400192915050565b600060208284031215610cf257600080fd5b5035919050565b80356001600160a01b0381168114610d1057600080fd5b919050565b60008060408385031215610d2857600080fd5b610d3183610cf9565b946020939093013593505050565b600080600060608486031215610d5457600080fd5b610d5d84610cf9565b9250610d6b60208501610cf9565b9150604084013590509250925092565b600080600060608486031215610d9057600080fd5b505081359360208301359350604090920135919050565b600060208284031215610db957600080fd5b61090182610cf9565b60008060408385031215610dd557600080fd5b610dde83610cf9565b915060208301358015158114610df357600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215610e2a57600080fd5b610e3385610cf9565b9350610e4160208601610cf9565b925060408501359150606085013567ffffffffffffffff80821115610e6557600080fd5b818701915087601f830112610e7957600080fd5b813581811115610e8b57610e8b610dfe565b604051601f8201601f19908116603f01168101908382118183101715610eb357610eb3610dfe565b816040528281528a6020848701011115610ecc57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215610f0357600080fd5b610f0c83610cf9565b9150610f1a60208401610cf9565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561045357610453610f23565b808202811582820484141761045357610453610f23565b66697066733a2f2f60c81b815260008351610f85816007850160208801610c89565b602f60f81b6007918401918201528351610fa6816008840160208801610c89565b64173539b7b760d91b60089290910191820152600d0194935050505056fe516d6364457a794138555a774b7233747541654155576f534b444d33685244416a45464d563241374c456e613871a26469706673582212207bfead561d3df629efd13435af646131bfb51462a3f97d39177aaffc5162e35064736f6c63430008110033
Deployed Bytecode
0x6080604052600436106101355760003560e01c80636352211e116100ab578063a22cb4651161006f578063a22cb4651461035b578063b88d4fde1461037b578063bf8fbbd21461039b578063c87b56dd146103b1578063e985e9c5146103d1578063ed6661c2146103f157600080fd5b80636352211e146102c257806370a08231146102e257806395d89b411461030257806398710d1e14610332578063a0712d681461034857600080fd5b806323b872dd116100fd57806323b872dd146102225780632909f6381461024257806332cb6b0c146102625780633ccfd60b1461027857806342842e0e1461028d5780635b70ea9f146102ad57600080fd5b806301ffc9a71461013a57806306fdde031461016f578063081812fc146101a9578063095ea7b3146101e157806318160ddd14610203575b600080fd5b34801561014657600080fd5b5061015a610155366004610c5f565b610407565b60405190151581526020015b60405180910390f35b34801561017b57600080fd5b5060408051808201909152600881526747656e50756e6b7360c01b60208201525b6040516101669190610cad565b3480156101b557600080fd5b506101c96101c4366004610ce0565b610459565b6040516001600160a01b039091168152602001610166565b3480156101ed57600080fd5b506102016101fc366004610d15565b61049f565b005b34801561020f57600080fd5b506005545b604051908152602001610166565b34801561022e57600080fd5b5061020161023d366004610d3f565b61055d565b34801561024e57600080fd5b5061020161025d366004610d7b565b61056d565b34801561026e57600080fd5b5061021460015481565b34801561028457600080fd5b50610201610592565b34801561029957600080fd5b506102016102a8366004610d3f565b6105dc565b3480156102b957600080fd5b506102016105f7565b3480156102ce57600080fd5b506101c96102dd366004610ce0565b6106d0565b3480156102ee57600080fd5b506102146102fd366004610da7565b6106db565b34801561030e57600080fd5b5060408051808201909152600781526647454e50554e4b60c81b602082015261019c565b34801561033e57600080fd5b5061021460025481565b610201610356366004610ce0565b610724565b34801561036757600080fd5b50610201610376366004610dc2565b6107cb565b34801561038757600080fd5b50610201610396366004610e14565b610860565b3480156103a757600080fd5b5061021460045481565b3480156103bd57600080fd5b5061019c6103cc366004610ce0565b610871565b3480156103dd57600080fd5b5061015a6103ec366004610ef0565b610908565b3480156103fd57600080fd5b5061021460035481565b60006301ffc9a760e01b6001600160e01b03198316148061043857506380ac58cd60e01b6001600160e01b03198316145b806104535750635b5e139f60e01b6001600160e01b03198316145b92915050565b6000610466826005541190565b610483576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b60006104aa82610936565b9050806001600160a01b0316836001600160a01b0316036104ca57600080fd5b336001600160a01b03821614610501576104e48133610908565b610501576040516367d9dca160e11b815260040160405180910390fd5b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61056883838361099d565b505050565b6000546001600160a01b0316331461058457600080fd5b600192909255600355600455565b6000546001600160a01b031633146105a957600080fd5b6040514790339082156108fc029083906000818181858888f193505050501580156105d8573d6000803e3d6000fd5b5050565b61056883838360405180602001604052806000815250610860565b6002546003543391908161060a60055490565b6106149190610f39565b111561065a5760405162461bcd60e51b815260206004820152601060248201526f119c99595b5a5b9d0814dbdb1913dd5d60821b60448201526064015b60405180910390fd5b6002546001600160a01b038316600090815260076020526040908190205461068d911c67ffffffffffffffff1683610f39565b11156106c65760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b6044820152606401610651565b6105d88282610b35565b600061045382610936565b6000816000036106fe576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b60015433908261073360055490565b61073d9190610f39565b11156107755760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b6044820152606401610651565b34600454836107849190610f4c565b11156107c15760405162461bcd60e51b815260206004820152600c60248201526b56616c756520746f204c6f7760a01b6044820152606401610651565b6105d88183610b35565b336001600160a01b038316036107f45760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61086b84848461099d565b50505050565b606061087e826005541190565b61089b57604051630a14c4b560e41b815260040160405180910390fd5b60006040518060600160405280602e8152602001610fc5602e9139905080516000036108d65760405180602001604052806000815250610901565b806108e084610c10565b6040516020016108f1929190610f63565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b6000816005548110156109845760008181526006602052604081205490600160e01b82169003610982575b80600003610901575060001901600081815260066020526040902054610961565b505b604051636f96cda160e11b815260040160405180910390fd5b60006109a882610936565b9050836001600160a01b0316816001600160a01b0316146109db5760405162a1148160e81b815260040160405180910390fd5b6000828152600860205260408120546001600160a01b0390811691908616331480610a0b5750610a0b8633610908565b80610a1e57506001600160a01b03821633145b905080610a3e57604051632ce44b5f60e11b815260040160405180910390fd5b8115610a6157600084815260086020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600760209081526040808320805460001901905592881682528282208054600101905586825260069052908120600160e11b4260a01b8817811790915584169003610aec57600184016000818152600660205260408120549003610aea576005548114610aea5760008181526006602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b60055482600003610b5857604051622e076360e81b815260040160405180910390fd5b81600003610b795760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526007602090815260408083208054680100000000000000018702019055838352600690915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610bc45750600555505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610c4d57600183039250600a81066030018353600a9004610c2f565b50819003601f19909101908152919050565b600060208284031215610c7157600080fd5b81356001600160e01b03198116811461090157600080fd5b60005b83811015610ca4578181015183820152602001610c8c565b50506000910152565b6020815260008251806020840152610ccc816040850160208701610c89565b601f01601f19169190910160400192915050565b600060208284031215610cf257600080fd5b5035919050565b80356001600160a01b0381168114610d1057600080fd5b919050565b60008060408385031215610d2857600080fd5b610d3183610cf9565b946020939093013593505050565b600080600060608486031215610d5457600080fd5b610d5d84610cf9565b9250610d6b60208501610cf9565b9150604084013590509250925092565b600080600060608486031215610d9057600080fd5b505081359360208301359350604090920135919050565b600060208284031215610db957600080fd5b61090182610cf9565b60008060408385031215610dd557600080fd5b610dde83610cf9565b915060208301358015158114610df357600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215610e2a57600080fd5b610e3385610cf9565b9350610e4160208601610cf9565b925060408501359150606085013567ffffffffffffffff80821115610e6557600080fd5b818701915087601f830112610e7957600080fd5b813581811115610e8b57610e8b610dfe565b604051601f8201601f19908116603f01168101908382118183101715610eb357610eb3610dfe565b816040528281528a6020848701011115610ecc57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215610f0357600080fd5b610f0c83610cf9565b9150610f1a60208401610cf9565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561045357610453610f23565b808202811582820484141761045357610453610f23565b66697066733a2f2f60c81b815260008351610f85816007850160208801610c89565b602f60f81b6007918401918201528351610fa6816008840160208801610c89565b64173539b7b760d91b60089290910191820152600d0194935050505056fe516d6364457a794138555a774b7233747541654155576f534b444d33685244416a45464d563241374c456e613871a26469706673582212207bfead561d3df629efd13435af646131bfb51462a3f97d39177aaffc5162e35064736f6c63430008110033
Deployed Bytecode Sourcemap
9024:24332:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14235:615;;;;;;;;;;-1:-1:-1;14235:615:0;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;14235:615:0;;;;;;;;18988:100;;;;;;;;;;-1:-1:-1;19075:5:0;;;;;;;;;;;;-1:-1:-1;;;19075:5:0;;;;18988:100;;;;;;;:::i;20660:204::-;;;;;;;;;;-1:-1:-1;20660:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1502:32:1;;;1484:51;;1472:2;1457:18;20660:204:0;1338:203:1;20143:451:0;;;;;;;;;;-1:-1:-1;20143:451:0;;;;;:::i;:::-;;:::i;:::-;;13478:300;;;;;;;;;;-1:-1:-1;13728:13:0;;13478:300;;;2129:25:1;;;2117:2;2102:18;13478:300:0;1983:177:1;21546:190:0;;;;;;;;;;-1:-1:-1;21546:190:0;;;;;:::i;:::-;;:::i;12671:187::-;;;;;;;;;;-1:-1:-1;12671:187:0;;;;;:::i;:::-;;:::i;9188:31::-;;;;;;;;;;;;;;;;33208:145;;;;;;;;;;;;;:::i;21807:205::-;;;;;;;;;;-1:-1:-1;21807:205:0;;;;;:::i;:::-;;:::i;9908:328::-;;;;;;;;;;;;;:::i;18777:144::-;;;;;;;;;;-1:-1:-1;18777:144:0;;;;;:::i;:::-;;:::i;14914:234::-;;;;;;;;;;-1:-1:-1;14914:234:0;;;;;:::i;:::-;;:::i;19157:104::-;;;;;;;;;;-1:-1:-1;19246:7:0;;;;;;;;;;;;-1:-1:-1;;;19246:7:0;;;;19157:104;;9226:38;;;;;;;;;;;;;;;;9634:266;;;;;;:::i;:::-;;:::i;20936:308::-;;;;;;;;;;-1:-1:-1;20936:308:0;;;;;:::i;:::-;;:::i;22083:227::-;;;;;;;;;;-1:-1:-1;22083:227:0;;;;;:::i;:::-;;:::i;9307:33::-;;;;;;;;;;;;;;;;19275:339;;;;;;;;;;-1:-1:-1;19275:339:0;;;;;:::i;:::-;;:::i;21315:164::-;;;;;;;;;;-1:-1:-1;21315:164:0;;;;;:::i;:::-;;:::i;9271:29::-;;;;;;;;;;;;;;;;14235:615;14320:4;-1:-1:-1;;;;;;;;;14620:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;14697:25:0;;;14620:102;:179;;;-1:-1:-1;;;;;;;;;;14774:25:0;;;14620:179;14600:199;14235:615;-1:-1:-1;;14235:615:0:o;20660:204::-;20728:7;20753:16;20761:7;22712:13;;-1:-1:-1;22702:23:0;22565:168;20753:16;20748:64;;20778:34;;-1:-1:-1;;;20778:34:0;;;;;;;;;;;20748:64;-1:-1:-1;20832:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;20832:24:0;;20660:204::o;20143:451::-;20216:13;20248:27;20267:7;20248:18;:27::i;:::-;20216:61;;20298:5;-1:-1:-1;;;;;20292:11:0;:2;-1:-1:-1;;;;;20292:11:0;;20288:25;;20305:8;;;20288:25;31194:10;-1:-1:-1;;;;;20330:28:0;;;20326:175;;20378:44;20395:5;31194:10;21315:164;:::i;20378:44::-;20373:128;;20450:35;;-1:-1:-1;;;20450:35:0;;;;;;;;;;;20373:128;20513:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;20513:29:0;-1:-1:-1;;;;;20513:29:0;;;;;;;;;20558:28;;20513:24;;20558:28;;;;;;;20205:389;20143:451;;:::o;21546:190::-;21700:28;21710:4;21716:2;21720:7;21700:9;:28::i;:::-;21546:190;;;:::o;12671:187::-;9140:6;;-1:-1:-1;;;;;9140:6:0;9148:10;9140:18;9132:27;;;;;;12772:10:::1;:24:::0;;;;12807:8:::1;:20:::0;12838:4:::1;:12:::0;12671:187::o;33208:145::-;9140:6;;-1:-1:-1;;;;;9140:6:0;9148:10;9140:18;9132:27;;;;;;33308:37:::1;::::0;33276:21:::1;::::0;33316:10:::1;::::0;33308:37;::::1;;;::::0;33276:21;;33258:15:::1;33308:37:::0;33258:15;33308:37;33276:21;33316:10;33308:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;33247:106;33208:145::o:0;21807:205::-;21965:39;21982:4;21988:2;21992:7;21965:39;;;;;;;;;;;;:16;:39::i;9908:328::-;10012:19;;10078:8;;31194:10;;10012:19;;10052:13;13728;;;13478:300;10052:13;:22;;;;:::i;:::-;:34;;10044:63;;;;-1:-1:-1;;;10044:63:0;;5366:2:1;10044:63:0;;;5348:21:1;5405:2;5385:18;;;5378:30;-1:-1:-1;;;5424:18:1;;;5417:46;5480:18;;10044:63:0;;;;;;;;;10161:19;;-1:-1:-1;;;;;15319:25:0;;15291:7;15319:25;;;:18;:25;;10484:2;15319:25;;;;;10126:31;;15319:49;10347:13;15318:80;10126:6;:31;:::i;:::-;:54;;10118:75;;;;-1:-1:-1;;;10118:75:0;;5711:2:1;10118:75:0;;;5693:21:1;5750:1;5730:18;;;5723:29;-1:-1:-1;;;5768:18:1;;;5761:38;5816:18;;10118:75:0;5509:331:1;10118:75:0;10206:22;10212:7;10221:6;10206:5;:22::i;18777:144::-;18841:7;18884:27;18903:7;18884:18;:27::i;14914:234::-;14978:7;15020:5;15030:1;15002:29;14998:70;;15040:28;;-1:-1:-1;;;15040:28:0;;;;;;;;;;;14998:70;-1:-1:-1;;;;;;15086:25:0;;;;;:18;:25;;;;;;10347:13;15086:54;;14914:234::o;9634:266::-;9775:10;;31194;;9765:6;9749:13;13728;;;13478:300;9749:13;:22;;;;:::i;:::-;:36;;9741:56;;;;-1:-1:-1;;;9741:56:0;;6047:2:1;9741:56:0;;;6029:21:1;6086:1;6066:18;;;6059:29;-1:-1:-1;;;6104:18:1;;;6097:37;6151:18;;9741:56:0;5845:330:1;9741:56:0;9831:9;9823:4;;9816:6;:11;;;;:::i;:::-;:24;;9808:49;;;;-1:-1:-1;;;9808:49:0;;6555:2:1;9808:49:0;;;6537:21:1;6594:2;6574:18;;;6567:30;-1:-1:-1;;;6613:18:1;;;6606:42;6665:18;;9808:49:0;6353:336:1;9808:49:0;9870:22;9876:7;9885:6;9870:5;:22::i;20936:308::-;31194:10;-1:-1:-1;;;;;21035:31:0;;;21031:61;;21075:17;;-1:-1:-1;;;21075:17:0;;;;;;;;;;;21031:61;31194:10;21105:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;21105:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;21105:60:0;;;;;;;;;;21181:55;;445:41:1;;;21105:49:0;;31194:10;21181:55;;418:18:1;21181:55:0;;;;;;;20936:308;;:::o;22083:227::-;22274:28;22284:4;22290:2;22294:7;22274:9;:28::i;:::-;22083:227;;;;:::o;19275:339::-;19348:13;19379:16;19387:7;22712:13;;-1:-1:-1;22702:23:0;22565:168;19379:16;19374:59;;19404:29;;-1:-1:-1;;;19404:29:0;;;;;;;;;;;19374:59;19444:21;19468:8;;;;;;;;;;;;;;;;;19444:32;;19500:7;19494:21;19519:1;19494:26;:112;;;;;;;;;;;;;;;;;19558:7;19572:18;19582:7;19572:9;:18::i;:::-;19530:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19494:112;19487:119;19275:339;-1:-1:-1;;;19275:339:0:o;21315:164::-;-1:-1:-1;;;;;21436:25:0;;;21412:4;21436:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;21315:164::o;16292:1129::-;16359:7;16394;16496:13;;16489:4;:20;16485:869;;;16534:14;16551:23;;;:17;:23;;;;;;;-1:-1:-1;;;16640:23:0;;:28;;16636:699;;17159:113;17166:6;17176:1;17166:11;17159:113;;-1:-1:-1;;;17237:6:0;17219:25;;;;:17;:25;;;;;;17159:113;;16636:699;16511:843;16485:869;17382:31;;-1:-1:-1;;;17382:31:0;;;;;;;;;;;27433:2636;27570:27;27600;27619:7;27600:18;:27::i;:::-;27570:57;;27685:4;-1:-1:-1;;;;;27644:45:0;27660:19;-1:-1:-1;;;;;27644:45:0;;27640:86;;27698:28;;-1:-1:-1;;;27698:28:0;;;;;;;;;;;27640:86;27739:23;27765:24;;;:15;:24;;;;;;-1:-1:-1;;;;;27765:24:0;;;;27739:23;27828:27;;31194:10;27828:27;;:91;;-1:-1:-1;27876:43:0;27893:4;31194:10;21315:164;:::i;27876:43::-;27828:150;;;-1:-1:-1;;;;;;27940:38:0;;31194:10;27940:38;27828:150;27802:177;;27997:17;27992:66;;28023:35;;-1:-1:-1;;;28023:35:0;;;;;;;;;;;27992:66;28227:15;28209:39;28205:103;;28272:24;;;;:15;:24;;;;;28265:31;;-1:-1:-1;;;;;;28265:31:0;;;28205:103;-1:-1:-1;;;;;28675:24:0;;;;;;;:18;:24;;;;;;;;28673:26;;-1:-1:-1;;28673:26:0;;;28744:22;;;;;;;;28742:24;;-1:-1:-1;28742:24:0;;;29037:26;;;:17;:26;;;;;-1:-1:-1;;;29125:15:0;11001:3;29125:41;29083:84;;:128;;29037:174;;;29331:46;;:51;;29327:626;;29435:1;29425:11;;29403:19;29558:30;;;:17;:30;;;;;;:35;;29554:384;;29696:13;;29681:11;:28;29677:242;;29843:30;;;;:17;:30;;;;;:52;;;29677:242;29384:569;29327:626;30000:7;29996:2;-1:-1:-1;;;;;29981:27:0;29990:4;-1:-1:-1;;;;;29981:27:0;;;;;;;;;;;27557:2512;;;27433:2636;;;:::o;25585:1594::-;25673:13;;25719:2;25726:1;25701:26;25697:58;;25736:19;;-1:-1:-1;;;25736:19:0;;;;;;;;;;;25697:58;25770:8;25782:1;25770:13;25766:44;;25792:18;;-1:-1:-1;;;25792:18:0;;;;;;;;;;;25766:44;-1:-1:-1;;;;;26287:22:0;;;;;;:18;:22;;;;10484:2;26287:22;;;:70;;26325:31;26313:44;;26287:70;;;26600:31;;;:17;:31;;;;;26693:15;11001:3;26693:41;26651:84;;-1:-1:-1;26771:13:0;;11260:3;26756:56;26651:162;26600:213;;:31;26894:23;;;26934:111;26961:40;;26986:14;;;;;-1:-1:-1;;;;;26961:40:0;;;26978:1;;26961:40;;26978:1;;26961:40;27040:3;27025:12;:18;26934:111;;-1:-1:-1;27061:13:0;:28;21546:190;;;:::o;31318:1882::-;31789:4;31783:11;;31796:3;31779:21;;31870:17;;;;32542:11;;;32419:5;32676:2;32690;32680:13;;32672:22;32542:11;32659:36;32732:2;32722:13;;32316:661;32748:4;32316:661;;;32916:1;32911:3;32907:11;32900:18;;32960:2;32954:4;32950:13;32946:2;32942:22;32937:3;32929:36;32833:2;32823:13;;32316:661;;;-1:-1:-1;33000:13:0;;;-1:-1:-1;;33109:12:0;;;33163:19;;;33109:12;31318:1882;-1:-1:-1;31318:1882:0:o;14:286:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;497:250;582:1;592:113;606:6;603:1;600:13;592:113;;;682:11;;;676:18;663:11;;;656:39;628:2;621:10;592:113;;;-1:-1:-1;;739:1:1;721:16;;714:27;497:250::o;752:396::-;901:2;890:9;883:21;864:4;933:6;927:13;976:6;971:2;960:9;956:18;949:34;992:79;1064:6;1059:2;1048:9;1044:18;1039:2;1031:6;1027:15;992:79;:::i;:::-;1132:2;1111:15;-1:-1:-1;;1107:29:1;1092:45;;;;1139:2;1088:54;;752:396;-1:-1:-1;;752:396:1:o;1153:180::-;1212:6;1265:2;1253:9;1244:7;1240:23;1236:32;1233:52;;;1281:1;1278;1271:12;1233:52;-1:-1:-1;1304:23:1;;1153:180;-1:-1:-1;1153:180:1:o;1546:173::-;1614:20;;-1:-1:-1;;;;;1663:31:1;;1653:42;;1643:70;;1709:1;1706;1699:12;1643:70;1546:173;;;:::o;1724:254::-;1792:6;1800;1853:2;1841:9;1832:7;1828:23;1824:32;1821:52;;;1869:1;1866;1859:12;1821:52;1892:29;1911:9;1892:29;:::i;:::-;1882:39;1968:2;1953:18;;;;1940:32;;-1:-1:-1;;;1724:254:1:o;2165:328::-;2242:6;2250;2258;2311:2;2299:9;2290:7;2286:23;2282:32;2279:52;;;2327:1;2324;2317:12;2279:52;2350:29;2369:9;2350:29;:::i;:::-;2340:39;;2398:38;2432:2;2421:9;2417:18;2398:38;:::i;:::-;2388:48;;2483:2;2472:9;2468:18;2455:32;2445:42;;2165:328;;;;;:::o;2498:316::-;2575:6;2583;2591;2644:2;2632:9;2623:7;2619:23;2615:32;2612:52;;;2660:1;2657;2650:12;2612:52;-1:-1:-1;;2683:23:1;;;2753:2;2738:18;;2725:32;;-1:-1:-1;2804:2:1;2789:18;;;2776:32;;2498:316;-1:-1:-1;2498:316:1:o;2819:186::-;2878:6;2931:2;2919:9;2910:7;2906:23;2902:32;2899:52;;;2947:1;2944;2937:12;2899:52;2970:29;2989:9;2970:29;:::i;3010:347::-;3075:6;3083;3136:2;3124:9;3115:7;3111:23;3107:32;3104:52;;;3152:1;3149;3142:12;3104:52;3175:29;3194:9;3175:29;:::i;:::-;3165:39;;3254:2;3243:9;3239:18;3226:32;3301:5;3294:13;3287:21;3280:5;3277:32;3267:60;;3323:1;3320;3313:12;3267:60;3346:5;3336:15;;;3010:347;;;;;:::o;3362:127::-;3423:10;3418:3;3414:20;3411:1;3404:31;3454:4;3451:1;3444:15;3478:4;3475:1;3468:15;3494:1138;3589:6;3597;3605;3613;3666:3;3654:9;3645:7;3641:23;3637:33;3634:53;;;3683:1;3680;3673:12;3634:53;3706:29;3725:9;3706:29;:::i;:::-;3696:39;;3754:38;3788:2;3777:9;3773:18;3754:38;:::i;:::-;3744:48;;3839:2;3828:9;3824:18;3811:32;3801:42;;3894:2;3883:9;3879:18;3866:32;3917:18;3958:2;3950:6;3947:14;3944:34;;;3974:1;3971;3964:12;3944:34;4012:6;4001:9;3997:22;3987:32;;4057:7;4050:4;4046:2;4042:13;4038:27;4028:55;;4079:1;4076;4069:12;4028:55;4115:2;4102:16;4137:2;4133;4130:10;4127:36;;;4143:18;;:::i;:::-;4218:2;4212:9;4186:2;4272:13;;-1:-1:-1;;4268:22:1;;;4292:2;4264:31;4260:40;4248:53;;;4316:18;;;4336:22;;;4313:46;4310:72;;;4362:18;;:::i;:::-;4402:10;4398:2;4391:22;4437:2;4429:6;4422:18;4477:7;4472:2;4467;4463;4459:11;4455:20;4452:33;4449:53;;;4498:1;4495;4488:12;4449:53;4554:2;4549;4545;4541:11;4536:2;4528:6;4524:15;4511:46;4599:1;4594:2;4589;4581:6;4577:15;4573:24;4566:35;4620:6;4610:16;;;;;;;3494:1138;;;;;;;:::o;4637:260::-;4705:6;4713;4766:2;4754:9;4745:7;4741:23;4737:32;4734:52;;;4782:1;4779;4772:12;4734:52;4805:29;4824:9;4805:29;:::i;:::-;4795:39;;4853:38;4887:2;4876:9;4872:18;4853:38;:::i;:::-;4843:48;;4637:260;;;;;:::o;4902:127::-;4963:10;4958:3;4954:20;4951:1;4944:31;4994:4;4991:1;4984:15;5018:4;5015:1;5008:15;5034:125;5099:9;;;5120:10;;;5117:36;;;5133:18;;:::i;6180:168::-;6253:9;;;6284;;6301:15;;;6295:22;;6281:37;6271:71;;6322:18;;:::i;6694:935::-;-1:-1:-1;;;7201:3:1;7194:22;7176:3;7245:6;7239:13;7261:74;7328:6;7324:1;7319:3;7315:11;7308:4;7300:6;7296:17;7261:74;:::i;:::-;-1:-1:-1;;;7394:1:1;7354:16;;;7386:10;;;7379:23;7427:13;;7449:75;7427:13;7511:1;7503:10;;7496:4;7484:17;;7449:75;:::i;:::-;-1:-1:-1;;;7584:1:1;7543:17;;;;7576:10;;;7569:27;7620:2;7612:11;;6694:935;-1:-1:-1;;;;6694:935:1:o
Swarm Source
ipfs://7bfead561d3df629efd13435af646131bfb51462a3f97d39177aaffc5162e350
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.