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 1,253 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 15479823 | 1280 days ago | IN | 0 ETH | 0.00055072 | ||||
| Free Mint | 15401712 | 1293 days ago | IN | 0 ETH | 0.00045776 | ||||
| Set Approval For... | 15399991 | 1293 days ago | IN | 0 ETH | 0.00040004 | ||||
| Set Approval For... | 15397779 | 1293 days ago | IN | 0 ETH | 0.00054163 | ||||
| Set Approval For... | 15396620 | 1293 days ago | IN | 0 ETH | 0.00040242 | ||||
| Set Approval For... | 15396309 | 1294 days ago | IN | 0 ETH | 0.00037938 | ||||
| Set Approval For... | 15396307 | 1294 days ago | IN | 0 ETH | 0.00033513 | ||||
| Set Approval For... | 15396261 | 1294 days ago | IN | 0 ETH | 0.00063801 | ||||
| Set Approval For... | 15396244 | 1294 days ago | IN | 0 ETH | 0.00064121 | ||||
| Set Approval For... | 15396237 | 1294 days ago | IN | 0 ETH | 0.00032309 | ||||
| Set Approval For... | 15396234 | 1294 days ago | IN | 0 ETH | 0.00043101 | ||||
| Set Approval For... | 15396234 | 1294 days ago | IN | 0 ETH | 0.00043101 | ||||
| Set Approval For... | 15396234 | 1294 days ago | IN | 0 ETH | 0.00043101 | ||||
| Set Approval For... | 15396234 | 1294 days ago | IN | 0 ETH | 0.00043101 | ||||
| Set Approval For... | 15396233 | 1294 days ago | IN | 0 ETH | 0.00035124 | ||||
| Set Approval For... | 15396233 | 1294 days ago | IN | 0 ETH | 0.00039337 | ||||
| Set Approval For... | 15396218 | 1294 days ago | IN | 0 ETH | 0.00039625 | ||||
| Set Approval For... | 15396185 | 1294 days ago | IN | 0 ETH | 0.00076095 | ||||
| Set Approval For... | 15396151 | 1294 days ago | IN | 0 ETH | 0.00046088 | ||||
| Set Approval For... | 15396151 | 1294 days ago | IN | 0 ETH | 0.00046088 | ||||
| Set Approval For... | 15396140 | 1294 days ago | IN | 0 ETH | 0.00053524 | ||||
| Set Approval For... | 15396138 | 1294 days ago | IN | 0 ETH | 0.00043747 | ||||
| Free Mint | 15396137 | 1294 days ago | IN | 0 ETH | 0.00045808 | ||||
| Free Mint | 15396137 | 1294 days ago | IN | 0 ETH | 0.00045808 | ||||
| Free Mint | 15396137 | 1294 days ago | IN | 0 ETH | 0.00045808 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
RarePudgys
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-08-23
*/
/**
*Submitted for verification at Etherscan.io on 2022-08-21
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.16;
/**
* @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 RarePudgys is IERC721A {
address private _owner;
modifier onlyOwner() {
require(_owner==msg.sender, "No!");
_;
}
bool public saleIsActive = true;
uint256 public constant MAX_SUPPLY = 999;
uint256 public constant MAX_FREE_PER_WALLET = 1;
uint256 public constant MAX_PER_WALLET = 10;
uint256 public constant COST = 0.005 ether;
string private constant _name = "Rare Pudgys";
string private constant _symbol = "RAPU";
string private _contractURI = "";
string private _baseURI = "";
constructor() {
_owner = msg.sender;
}
function freeMint() external{
address _caller = _msgSenderERC721A();
uint256 amount = 1;
require(totalSupply() + amount <= MAX_SUPPLY, "SoldOut");
require(amount + _numberMinted(msg.sender) <= MAX_FREE_PER_WALLET, "AccLimit");
_mint(_caller, amount);
}
function mint(uint256 amount) external payable{
require(totalSupply() + amount <= MAX_SUPPLY, "SoldOut");
require(amount + _numberMinted(msg.sender) <= MAX_PER_WALLET+MAX_FREE_PER_WALLET, "AccLimit");
require(amount*COST <= msg.value, "Value to low");
_mint(msg.sender, 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 setSale(bool _saleIsActive) external onlyOwner{
saleIsActive = _saleIsActive;
}
function setBaseURI(string memory _new) external onlyOwner{
_baseURI = _new;
}
function setContractURI(string memory _new) external onlyOwner{
_contractURI = _new;
}
/**
* @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")) : "";
}
function contractURI() public view returns (string memory) {
return string(abi.encodePacked("ipfs://", _contractURI));
}
/**
* @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_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":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_new","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_new","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_saleIsActive","type":"bool"}],"name":"setSale","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
6000805460ff60a01b1916600160a01b17815560a060405260809081526001906200002b90826200011b565b506040805160208101909152600081526002906200004a90826200011b565b5060006003553480156200005d57600080fd5b50600080546001600160a01b03191633179055620001e7565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620000a157607f821691505b602082108103620000c257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200011657600081815260208120601f850160051c81016020861015620000f15750805b601f850160051c820191505b818110156200011257828155600101620000fd565b5050505b505050565b81516001600160401b0381111562000137576200013762000076565b6200014f816200014884546200008c565b84620000c8565b602080601f8311600181146200018757600084156200016e5750858301515b600019600386901b1c1916600185901b17855562000112565b600085815260208120601f198616915b82811015620001b85788860151825594840194600190910190840162000197565b5085821015620001d75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6114a780620001f76000396000f3fe6080604052600436106101815760003560e01c80636352211e116100d1578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd1461045a578063e8a3d4851461047a578063e985e9c51461048f578063eb8d2444146104af57600080fd5b8063a22cb465146103ff578063b88d4fde1461041f578063bf8fbbd21461043f57600080fd5b80636352211e1461034a57806370a082311461036a578063938e3d7b1461038a57806395d89b41146103aa57806398710d1e146103d7578063a0712d68146103ec57600080fd5b80631d2e5a3a1161013e5780633ccfd60b116101185780633ccfd60b146102e057806342842e0e146102f557806355f804b3146103155780635b70ea9f1461033557600080fd5b80631d2e5a3a1461028a57806323b872dd146102aa57806332cb6b0c146102ca57600080fd5b806301ffc9a71461018657806306fdde03146101bb578063081812fc146101f8578063095ea7b3146102305780630f2cdd6c1461025257806318160ddd14610275575b600080fd5b34801561019257600080fd5b506101a66101a1366004610ec4565b6104d0565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b5060408051808201909152600b81526a526172652050756467797360a81b60208201525b6040516101b29190610f12565b34801561020457600080fd5b50610218610213366004610f45565b610522565b6040516001600160a01b0390911681526020016101b2565b34801561023c57600080fd5b5061025061024b366004610f7a565b610568565b005b34801561025e57600080fd5b50610267600a81565b6040519081526020016101b2565b34801561028157600080fd5b50600354610267565b34801561029657600080fd5b506102506102a5366004610fb4565b610626565b3480156102b657600080fd5b506102506102c5366004610fcf565b610677565b3480156102d657600080fd5b506102676103e781565b3480156102ec57600080fd5b50610250610687565b34801561030157600080fd5b50610250610310366004610fcf565b6106e4565b34801561032157600080fd5b50610250610330366004611097565b6106ff565b34801561034157600080fd5b50610250610735565b34801561035657600080fd5b50610218610365366004610f45565b6107f4565b34801561037657600080fd5b506102676103853660046110e8565b6107ff565b34801561039657600080fd5b506102506103a5366004611097565b610848565b3480156103b657600080fd5b506040805180820190915260048152635241505560e01b60208201526101eb565b3480156103e357600080fd5b50610267600181565b6102506103fa366004610f45565b61087e565b34801561040b57600080fd5b5061025061041a366004611103565b610995565b34801561042b57600080fd5b5061025061043a366004611136565b610a2a565b34801561044b57600080fd5b506102676611c37937e0800081565b34801561046657600080fd5b506101eb610475366004610f45565b610a3b565b34801561048657600080fd5b506101eb610b44565b34801561049b57600080fd5b506101a66104aa3660046111b2565b610b6c565b3480156104bb57600080fd5b506000546101a690600160a01b900460ff1681565b60006301ffc9a760e01b6001600160e01b03198316148061050157506380ac58cd60e01b6001600160e01b03198316145b8061051c5750635b5e139f60e01b6001600160e01b03198316145b92915050565b600061052f826003541190565b61054c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061057382610b9a565b9050806001600160a01b0316836001600160a01b03160361059357600080fd5b336001600160a01b038216146105ca576105ad8133610b6c565b6105ca576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b031633146106595760405162461bcd60e51b8152600401610650906111dc565b60405180910390fd5b60008054911515600160a01b0260ff60a01b19909216919091179055565b610682838383610c01565b505050565b6000546001600160a01b031633146106b15760405162461bcd60e51b8152600401610650906111dc565b6040514790339082156108fc029083906000818181858888f193505050501580156106e0573d6000803e3d6000fd5b5050565b61068283838360405180602001604052806000815250610a2a565b6000546001600160a01b031633146107295760405162461bcd60e51b8152600401610650906111dc565b60026106e08282611279565b3360016103e78161074560035490565b61074f919061134f565b11156107875760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b6044820152606401610650565b3360009081526005602052604090819020546001911c67ffffffffffffffff166107b1908361134f565b11156107ea5760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b6044820152606401610650565b6106e08282610d9a565b600061051c82610b9a565b600081600003610822576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6000546001600160a01b031633146108725760405162461bcd60e51b8152600401610650906111dc565b60016106e08282611279565b6103e78161088b60035490565b610895919061134f565b11156108cd5760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b6044820152606401610650565b6108d96001600a61134f565b336000908152600560205260409081902054610900911c67ffffffffffffffff168361134f565b11156109395760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b6044820152606401610650565b3461094b6611c37937e0800083611362565b11156109885760405162461bcd60e51b815260206004820152600c60248201526b56616c756520746f206c6f7760a01b6044820152606401610650565b6109923382610d9a565b50565b336001600160a01b038316036109be5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610a35848484610c01565b50505050565b6060610a48826003541190565b610a6557604051630a14c4b560e41b815260040160405180910390fd5b600060028054610a74906111f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa0906111f9565b8015610aed5780601f10610ac257610100808354040283529160200191610aed565b820191906000526020600020905b815481529060010190602001808311610ad057829003601f168201915b505050505090508051600003610b125760405180602001604052806000815250610b3d565b80610b1c84610e75565b604051602001610b2d929190611381565b6040516020818303038152906040525b9392505050565b60606001604051602001610b5891906113e2565b604051602081830303815290604052905090565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600081600354811015610be85760008181526004602052604081205490600160e01b82169003610be6575b80600003610b3d575060001901600081815260046020526040902054610bc5565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610c0c82610b9a565b9050836001600160a01b0316816001600160a01b031614610c3f5760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480610c6f5750610c6f8633610b6c565b80610c8257506001600160a01b03821633145b905080610ca257604051632ce44b5f60e11b815260040160405180910390fd5b8115610cc557600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560209081526040808320805460001901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003610d5057600184016000818152600460205260408120549003610d4e576003548114610d4e5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60035482600003610dbd57604051622e076360e81b815260040160405180910390fd5b81600003610dde5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610e295750600355505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610eb257600183039250600a81066030018353600a9004610e94565b50819003601f19909101908152919050565b600060208284031215610ed657600080fd5b81356001600160e01b031981168114610b3d57600080fd5b60005b83811015610f09578181015183820152602001610ef1565b50506000910152565b6020815260008251806020840152610f31816040850160208701610eee565b601f01601f19169190910160400192915050565b600060208284031215610f5757600080fd5b5035919050565b80356001600160a01b0381168114610f7557600080fd5b919050565b60008060408385031215610f8d57600080fd5b610f9683610f5e565b946020939093013593505050565b80358015158114610f7557600080fd5b600060208284031215610fc657600080fd5b610b3d82610fa4565b600080600060608486031215610fe457600080fd5b610fed84610f5e565b9250610ffb60208501610f5e565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561103c5761103c61100b565b604051601f8501601f19908116603f011681019082821181831017156110645761106461100b565b8160405280935085815286868601111561107d57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156110a957600080fd5b813567ffffffffffffffff8111156110c057600080fd5b8201601f810184136110d157600080fd5b6110e084823560208401611021565b949350505050565b6000602082840312156110fa57600080fd5b610b3d82610f5e565b6000806040838503121561111657600080fd5b61111f83610f5e565b915061112d60208401610fa4565b90509250929050565b6000806000806080858703121561114c57600080fd5b61115585610f5e565b935061116360208601610f5e565b925060408501359150606085013567ffffffffffffffff81111561118657600080fd5b8501601f8101871361119757600080fd5b6111a687823560208401611021565b91505092959194509250565b600080604083850312156111c557600080fd5b6111ce83610f5e565b915061112d60208401610f5e565b6020808252600390820152624e6f2160e81b604082015260600190565b600181811c9082168061120d57607f821691505b60208210810361122d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561068257600081815260208120601f850160051c8101602086101561125a5750805b601f850160051c820191505b81811015610d9257828155600101611266565b815167ffffffffffffffff8111156112935761129361100b565b6112a7816112a184546111f9565b84611233565b602080601f8311600181146112dc57600084156112c45750858301515b600019600386901b1c1916600185901b178555610d92565b600085815260208120601f198616915b8281101561130b578886015182559484019460019091019084016112ec565b50858210156113295787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111561051c5761051c611339565b600081600019048311821515161561137c5761137c611339565b500290565b66697066733a2f2f60c81b8152600083516113a3816007850160208801610eee565b602f60f81b60079184019182015283516113c4816008840160208801610eee565b64173539b7b760d91b60089290910191820152600d01949350505050565b66697066733a2f2f60c81b81526000600760008454611400816111f9565b60018281168015611418576001811461143157611464565b60ff198416888701528215158302880186019450611464565b8860005260208060002060005b858110156114595781548b82018a015290840190820161143e565b505050858389010194505b509297965050505050505056fea26469706673582212206fd3709568b875a8706436a407e42461f0a32f54d1cb23378d2fd3a5536fa3db64736f6c63430008100033
Deployed Bytecode
0x6080604052600436106101815760003560e01c80636352211e116100d1578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd1461045a578063e8a3d4851461047a578063e985e9c51461048f578063eb8d2444146104af57600080fd5b8063a22cb465146103ff578063b88d4fde1461041f578063bf8fbbd21461043f57600080fd5b80636352211e1461034a57806370a082311461036a578063938e3d7b1461038a57806395d89b41146103aa57806398710d1e146103d7578063a0712d68146103ec57600080fd5b80631d2e5a3a1161013e5780633ccfd60b116101185780633ccfd60b146102e057806342842e0e146102f557806355f804b3146103155780635b70ea9f1461033557600080fd5b80631d2e5a3a1461028a57806323b872dd146102aa57806332cb6b0c146102ca57600080fd5b806301ffc9a71461018657806306fdde03146101bb578063081812fc146101f8578063095ea7b3146102305780630f2cdd6c1461025257806318160ddd14610275575b600080fd5b34801561019257600080fd5b506101a66101a1366004610ec4565b6104d0565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b5060408051808201909152600b81526a526172652050756467797360a81b60208201525b6040516101b29190610f12565b34801561020457600080fd5b50610218610213366004610f45565b610522565b6040516001600160a01b0390911681526020016101b2565b34801561023c57600080fd5b5061025061024b366004610f7a565b610568565b005b34801561025e57600080fd5b50610267600a81565b6040519081526020016101b2565b34801561028157600080fd5b50600354610267565b34801561029657600080fd5b506102506102a5366004610fb4565b610626565b3480156102b657600080fd5b506102506102c5366004610fcf565b610677565b3480156102d657600080fd5b506102676103e781565b3480156102ec57600080fd5b50610250610687565b34801561030157600080fd5b50610250610310366004610fcf565b6106e4565b34801561032157600080fd5b50610250610330366004611097565b6106ff565b34801561034157600080fd5b50610250610735565b34801561035657600080fd5b50610218610365366004610f45565b6107f4565b34801561037657600080fd5b506102676103853660046110e8565b6107ff565b34801561039657600080fd5b506102506103a5366004611097565b610848565b3480156103b657600080fd5b506040805180820190915260048152635241505560e01b60208201526101eb565b3480156103e357600080fd5b50610267600181565b6102506103fa366004610f45565b61087e565b34801561040b57600080fd5b5061025061041a366004611103565b610995565b34801561042b57600080fd5b5061025061043a366004611136565b610a2a565b34801561044b57600080fd5b506102676611c37937e0800081565b34801561046657600080fd5b506101eb610475366004610f45565b610a3b565b34801561048657600080fd5b506101eb610b44565b34801561049b57600080fd5b506101a66104aa3660046111b2565b610b6c565b3480156104bb57600080fd5b506000546101a690600160a01b900460ff1681565b60006301ffc9a760e01b6001600160e01b03198316148061050157506380ac58cd60e01b6001600160e01b03198316145b8061051c5750635b5e139f60e01b6001600160e01b03198316145b92915050565b600061052f826003541190565b61054c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061057382610b9a565b9050806001600160a01b0316836001600160a01b03160361059357600080fd5b336001600160a01b038216146105ca576105ad8133610b6c565b6105ca576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b031633146106595760405162461bcd60e51b8152600401610650906111dc565b60405180910390fd5b60008054911515600160a01b0260ff60a01b19909216919091179055565b610682838383610c01565b505050565b6000546001600160a01b031633146106b15760405162461bcd60e51b8152600401610650906111dc565b6040514790339082156108fc029083906000818181858888f193505050501580156106e0573d6000803e3d6000fd5b5050565b61068283838360405180602001604052806000815250610a2a565b6000546001600160a01b031633146107295760405162461bcd60e51b8152600401610650906111dc565b60026106e08282611279565b3360016103e78161074560035490565b61074f919061134f565b11156107875760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b6044820152606401610650565b3360009081526005602052604090819020546001911c67ffffffffffffffff166107b1908361134f565b11156107ea5760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b6044820152606401610650565b6106e08282610d9a565b600061051c82610b9a565b600081600003610822576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6000546001600160a01b031633146108725760405162461bcd60e51b8152600401610650906111dc565b60016106e08282611279565b6103e78161088b60035490565b610895919061134f565b11156108cd5760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b6044820152606401610650565b6108d96001600a61134f565b336000908152600560205260409081902054610900911c67ffffffffffffffff168361134f565b11156109395760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b6044820152606401610650565b3461094b6611c37937e0800083611362565b11156109885760405162461bcd60e51b815260206004820152600c60248201526b56616c756520746f206c6f7760a01b6044820152606401610650565b6109923382610d9a565b50565b336001600160a01b038316036109be5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610a35848484610c01565b50505050565b6060610a48826003541190565b610a6557604051630a14c4b560e41b815260040160405180910390fd5b600060028054610a74906111f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa0906111f9565b8015610aed5780601f10610ac257610100808354040283529160200191610aed565b820191906000526020600020905b815481529060010190602001808311610ad057829003601f168201915b505050505090508051600003610b125760405180602001604052806000815250610b3d565b80610b1c84610e75565b604051602001610b2d929190611381565b6040516020818303038152906040525b9392505050565b60606001604051602001610b5891906113e2565b604051602081830303815290604052905090565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600081600354811015610be85760008181526004602052604081205490600160e01b82169003610be6575b80600003610b3d575060001901600081815260046020526040902054610bc5565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610c0c82610b9a565b9050836001600160a01b0316816001600160a01b031614610c3f5760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480610c6f5750610c6f8633610b6c565b80610c8257506001600160a01b03821633145b905080610ca257604051632ce44b5f60e11b815260040160405180910390fd5b8115610cc557600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560209081526040808320805460001901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003610d5057600184016000818152600460205260408120549003610d4e576003548114610d4e5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60035482600003610dbd57604051622e076360e81b815260040160405180910390fd5b81600003610dde5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610e295750600355505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610eb257600183039250600a81066030018353600a9004610e94565b50819003601f19909101908152919050565b600060208284031215610ed657600080fd5b81356001600160e01b031981168114610b3d57600080fd5b60005b83811015610f09578181015183820152602001610ef1565b50506000910152565b6020815260008251806020840152610f31816040850160208701610eee565b601f01601f19169190910160400192915050565b600060208284031215610f5757600080fd5b5035919050565b80356001600160a01b0381168114610f7557600080fd5b919050565b60008060408385031215610f8d57600080fd5b610f9683610f5e565b946020939093013593505050565b80358015158114610f7557600080fd5b600060208284031215610fc657600080fd5b610b3d82610fa4565b600080600060608486031215610fe457600080fd5b610fed84610f5e565b9250610ffb60208501610f5e565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561103c5761103c61100b565b604051601f8501601f19908116603f011681019082821181831017156110645761106461100b565b8160405280935085815286868601111561107d57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156110a957600080fd5b813567ffffffffffffffff8111156110c057600080fd5b8201601f810184136110d157600080fd5b6110e084823560208401611021565b949350505050565b6000602082840312156110fa57600080fd5b610b3d82610f5e565b6000806040838503121561111657600080fd5b61111f83610f5e565b915061112d60208401610fa4565b90509250929050565b6000806000806080858703121561114c57600080fd5b61115585610f5e565b935061116360208601610f5e565b925060408501359150606085013567ffffffffffffffff81111561118657600080fd5b8501601f8101871361119757600080fd5b6111a687823560208401611021565b91505092959194509250565b600080604083850312156111c557600080fd5b6111ce83610f5e565b915061112d60208401610f5e565b6020808252600390820152624e6f2160e81b604082015260600190565b600181811c9082168061120d57607f821691505b60208210810361122d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561068257600081815260208120601f850160051c8101602086101561125a5750805b601f850160051c820191505b81811015610d9257828155600101611266565b815167ffffffffffffffff8111156112935761129361100b565b6112a7816112a184546111f9565b84611233565b602080601f8311600181146112dc57600084156112c45750858301515b600019600386901b1c1916600185901b178555610d92565b600085815260208120601f198616915b8281101561130b578886015182559484019460019091019084016112ec565b50858210156113295787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111561051c5761051c611339565b600081600019048311821515161561137c5761137c611339565b500290565b66697066733a2f2f60c81b8152600083516113a3816007850160208801610eee565b602f60f81b60079184019182015283516113c4816008840160208801610eee565b64173539b7b760d91b60089290910191820152600d01949350505050565b66697066733a2f2f60c81b81526000600760008454611400816111f9565b60018281168015611418576001811461143157611464565b60ff198416888701528215158302880186019450611464565b8860005260208060002060005b858110156114595781548b82018a015290840190820161143e565b505050858389010194505b509297965050505050505056fea26469706673582212206fd3709568b875a8706436a407e42461f0a32f54d1cb23378d2fd3a5536fa3db64736f6c63430008100033
Deployed Bytecode Sourcemap
9091:24486:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14319:615;;;;;;;;;;-1:-1:-1;14319:615:0;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;14319:615:0;;;;;;;;19072:100;;;;;;;;;;-1:-1:-1;19159:5:0;;;;;;;;;;;;-1:-1:-1;;;19159:5:0;;;;19072:100;;;;;;;:::i;20881:204::-;;;;;;;;;;-1:-1:-1;20881:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1502:32:1;;;1484:51;;1472:2;1457:18;20881:204:0;1338:203:1;20364:451:0;;;;;;;;;;-1:-1:-1;20364:451:0;;;;;:::i;:::-;;:::i;:::-;;9398:43;;;;;;;;;;;;9439:2;9398:43;;;;;2129:25:1;;;2117:2;2102:18;9398:43:0;1983:177:1;13562:300:0;;;;;;;;;;-1:-1:-1;13812:13:0;;13562:300;;12632:102;;;;;;;;;;-1:-1:-1;12632:102:0;;;;;:::i;:::-;;:::i;21767:190::-;;;;;;;;;;-1:-1:-1;21767:190:0;;;;;:::i;:::-;;:::i;9297:40::-;;;;;;;;;;;;9334:3;9297:40;;33429:145;;;;;;;;;;;;;:::i;22028:205::-;;;;;;;;;;-1:-1:-1;22028:205:0;;;;;:::i;:::-;;:::i;12742:92::-;;;;;;;;;;-1:-1:-1;12742:92:0;;;;;:::i;:::-;;:::i;9734:306::-;;;;;;;;;;;;;:::i;18861:144::-;;;;;;;;;;-1:-1:-1;18861:144:0;;;;;:::i;:::-;;:::i;14998:234::-;;;;;;;;;;-1:-1:-1;14998:234:0;;;;;:::i;:::-;;:::i;12842:100::-;;;;;;;;;;-1:-1:-1;12842:100:0;;;;;:::i;:::-;;:::i;19241:104::-;;;;;;;;;;-1:-1:-1;19330:7:0;;;;;;;;;;;;-1:-1:-1;;;19330:7:0;;;;19241:104;;9344:47;;;;;;;;;;;;9390:1;9344:47;;10048:321;;;;;;:::i;:::-;;:::i;21157:308::-;;;;;;;;;;-1:-1:-1;21157:308:0;;;;;:::i;:::-;;:::i;22304:227::-;;;;;;;;;;-1:-1:-1;22304:227:0;;;;;:::i;:::-;;:::i;9448:42::-;;;;;;;;;;;;9479:11;9448:42;;19359:339;;;;;;;;;;-1:-1:-1;19359:339:0;;;;;:::i;:::-;;:::i;19706:134::-;;;;;;;;;;;;;:::i;21536:164::-;;;;;;;;;;-1:-1:-1;21536:164:0;;;;;:::i;:::-;;:::i;9259:31::-;;;;;;;;;;-1:-1:-1;9259:31:0;;;;-1:-1:-1;;;9259:31:0;;;;;;14319:615;14404:4;-1:-1:-1;;;;;;;;;14704:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;14781:25:0;;;14704:102;:179;;;-1:-1:-1;;;;;;;;;;14858:25:0;;;14704:179;14684:199;14319:615;-1:-1:-1;;14319:615:0:o;20881:204::-;20949:7;20974:16;20982:7;22933:13;;-1:-1:-1;22923:23:0;22786:168;20974:16;20969:64;;20999:34;;-1:-1:-1;;;20999:34:0;;;;;;;;;;;20969:64;-1:-1:-1;21053:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;21053:24:0;;20881:204::o;20364:451::-;20437:13;20469:27;20488:7;20469:18;:27::i;:::-;20437:61;;20519:5;-1:-1:-1;;;;;20513:11:0;:2;-1:-1:-1;;;;;20513:11:0;;20509:25;;20526:8;;;20509:25;31415:10;-1:-1:-1;;;;;20551:28:0;;;20547:175;;20599:44;20616:5;31415:10;21536:164;:::i;20599:44::-;20594:128;;20671:35;;-1:-1:-1;;;20671:35:0;;;;;;;;;;;20594:128;20734:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;20734:29:0;-1:-1:-1;;;;;20734:29:0;;;;;;;;;20779:28;;20734:24;;20779:28;;;;;;;20426:389;20364:451;;:::o;12632:102::-;9203:6;;-1:-1:-1;;;;;9203:6:0;9211:10;9203:18;9195:34;;;;-1:-1:-1;;;9195:34:0;;;;;;;:::i;:::-;;;;;;;;;12698:12:::1;:28:::0;;;::::1;;-1:-1:-1::0;;;12698:28:0::1;-1:-1:-1::0;;;;12698:28:0;;::::1;::::0;;;::::1;::::0;;12632:102::o;21767:190::-;21921:28;21931:4;21937:2;21941:7;21921:9;:28::i;:::-;21767:190;;;:::o;33429:145::-;9203:6;;-1:-1:-1;;;;;9203:6:0;9211:10;9203:18;9195:34;;;;-1:-1:-1;;;9195:34:0;;;;;;;:::i;:::-;33529:37:::1;::::0;33497:21:::1;::::0;33537:10:::1;::::0;33529:37;::::1;;;::::0;33497:21;;33479:15:::1;33529:37:::0;33479:15;33529:37;33497:21;33537:10;33529:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;33468:106;33429:145::o:0;22028:205::-;22186:39;22203:4;22209:2;22213:7;22186:39;;;;;;;;;;;;:16;:39::i;12742:92::-;9203:6;;-1:-1:-1;;;;;9203:6:0;9211:10;9203:18;9195:34;;;;-1:-1:-1;;;9195:34:0;;;;;;;:::i;:::-;12811:8:::1;:15;12822:4:::0;12811:8;:15:::1;:::i;9734:306::-:0;31415:10;9838:1;9334:3;9838:1;9860:13;13812;;;13562:300;9860:13;:22;;;;:::i;:::-;:36;;9852:56;;;;-1:-1:-1;;;9852:56:0;;8844:2:1;9852:56:0;;;8826:21:1;8883:1;8863:18;;;8856:29;-1:-1:-1;;;8901:18:1;;;8894:37;8948:18;;9852:56:0;8642:330:1;9852:56:0;9950:10;15375:7;15403:25;;;:18;:25;;10617:2;15403:25;;;;;9390:1;;15403:49;10480:13;15402:80;9927:34;;:6;:34;:::i;:::-;:57;;9919:78;;;;-1:-1:-1;;;9919:78:0;;9179:2:1;9919:78:0;;;9161:21:1;9218:1;9198:18;;;9191:29;-1:-1:-1;;;9236:18:1;;;9229:38;9284:18;;9919:78:0;8977:331:1;9919:78:0;10010:22;10016:7;10025:6;10010:5;:22::i;18861:144::-;18925:7;18968:27;18987:7;18968:18;:27::i;14998:234::-;15062:7;15104:5;15114:1;15086:29;15082:70;;15124:28;;-1:-1:-1;;;15124:28:0;;;;;;;;;;;15082:70;-1:-1:-1;;;;;;15170:25:0;;;;;:18;:25;;;;;;10480:13;15170:54;;14998:234::o;12842:100::-;9203:6;;-1:-1:-1;;;;;9203:6:0;9211:10;9203:18;9195:34;;;;-1:-1:-1;;;9195:34:0;;;;;;;:::i;:::-;12915:12:::1;:19;12930:4:::0;12915:12;:19:::1;:::i;10048:321::-:0;9334:3;10129:6;10113:13;13812;;;13562:300;10113:13;:22;;;;:::i;:::-;:36;;10105:56;;;;-1:-1:-1;;;10105:56:0;;8844:2:1;10105:56:0;;;8826:21:1;8883:1;8863:18;;;8856:29;-1:-1:-1;;;8901:18:1;;;8894:37;8948:18;;10105:56:0;8642:330:1;10105:56:0;10218:34;9390:1;9439:2;10218:34;:::i;:::-;10203:10;15375:7;15403:25;;;:18;:25;;10617:2;15403:25;;;;;10180:34;;15403:49;10480:13;15402:80;10180:6;:34;:::i;:::-;:72;;10172:93;;;;-1:-1:-1;;;10172:93:0;;9179:2:1;10172:93:0;;;9161:21:1;9218:1;9198:18;;;9191:29;-1:-1:-1;;;9236:18:1;;;9229:38;9284:18;;10172:93:0;8977:331:1;10172:93:0;10299:9;10284:11;9479;10284:6;:11;:::i;:::-;:24;;10276:49;;;;-1:-1:-1;;;10276:49:0;;9688:2:1;10276:49:0;;;9670:21:1;9727:2;9707:18;;;9700:30;-1:-1:-1;;;9746:18:1;;;9739:42;9798:18;;10276:49:0;9486:336:1;10276:49:0;10336:25;10342:10;10354:6;10336:5;:25::i;:::-;10048:321;:::o;21157:308::-;31415:10;-1:-1:-1;;;;;21256:31:0;;;21252:61;;21296:17;;-1:-1:-1;;;21296:17:0;;;;;;;;;;;21252:61;31415:10;21326:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;21326:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;21326:60:0;;;;;;;;;;21402:55;;445:41:1;;;21326:49:0;;31415:10;21402:55;;418:18:1;21402:55:0;;;;;;;21157:308;;:::o;22304:227::-;22495:28;22505:4;22511:2;22515:7;22495:9;:28::i;:::-;22304:227;;;;:::o;19359:339::-;19432:13;19463:16;19471:7;22933:13;;-1:-1:-1;22923:23:0;22786:168;19463:16;19458:59;;19488:29;;-1:-1:-1;;;19488:29:0;;;;;;;;;;;19458:59;19528:21;19552:8;19528:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19584:7;19578:21;19603:1;19578:26;:112;;;;;;;;;;;;;;;;;19642:7;19656:18;19666:7;19656:9;:18::i;:::-;19614:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19578:112;19571:119;19359:339;-1:-1:-1;;;19359:339:0:o;19706:134::-;19750:13;19818:12;19790:41;;;;;;;;:::i;:::-;;;;;;;;;;;;;19776:56;;19706:134;:::o;21536:164::-;-1:-1:-1;;;;;21657:25:0;;;21633:4;21657:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;21536:164::o;16376:1129::-;16443:7;16478;16580:13;;16573:4;:20;16569:869;;;16618:14;16635:23;;;:17;:23;;;;;;;-1:-1:-1;;;16724:23:0;;:28;;16720:699;;17243:113;17250:6;17260:1;17250:11;17243:113;;-1:-1:-1;;;17321:6:0;17303:25;;;;:17;:25;;;;;;17243:113;;16720:699;16595:843;16569:869;17466:31;;-1:-1:-1;;;17466:31:0;;;;;;;;;;;27654:2636;27791:27;27821;27840:7;27821:18;:27::i;:::-;27791:57;;27906:4;-1:-1:-1;;;;;27865:45:0;27881:19;-1:-1:-1;;;;;27865:45:0;;27861:86;;27919:28;;-1:-1:-1;;;27919:28:0;;;;;;;;;;;27861:86;27960:23;27986:24;;;:15;:24;;;;;;-1:-1:-1;;;;;27986:24:0;;;;27960:23;28049:27;;31415:10;28049:27;;:91;;-1:-1:-1;28097:43:0;28114:4;31415:10;21536:164;:::i;28097:43::-;28049:150;;;-1:-1:-1;;;;;;28161:38:0;;31415:10;28161:38;28049:150;28023:177;;28218:17;28213:66;;28244:35;;-1:-1:-1;;;28244:35:0;;;;;;;;;;;28213:66;28448:15;28430:39;28426:103;;28493:24;;;;:15;:24;;;;;28486:31;;-1:-1:-1;;;;;;28486:31:0;;;28426:103;-1:-1:-1;;;;;28896:24:0;;;;;;;:18;:24;;;;;;;;28894:26;;-1:-1:-1;;28894:26:0;;;28965:22;;;;;;;;28963:24;;-1:-1:-1;28963:24:0;;;29258:26;;;:17;:26;;;;;-1:-1:-1;;;29346:15:0;11134:3;29346:41;29304:84;;:128;;29258:174;;;29552:46;;:51;;29548:626;;29656:1;29646:11;;29624:19;29779:30;;;:17;:30;;;;;;:35;;29775:384;;29917:13;;29902:11;:28;29898:242;;30064:30;;;;:17;:30;;;;;:52;;;29898:242;29605:569;29548:626;30221:7;30217:2;-1:-1:-1;;;;;30202:27:0;30211:4;-1:-1:-1;;;;;30202:27:0;;;;;;;;;;;30240:42;27778:2512;;;27654:2636;;;:::o;25806:1594::-;25894:13;;25940:2;25947:1;25922:26;25918:58;;25957:19;;-1:-1:-1;;;25957:19:0;;;;;;;;;;;25918:58;25991:8;26003:1;25991:13;25987:44;;26013:18;;-1:-1:-1;;;26013:18:0;;;;;;;;;;;25987:44;-1:-1:-1;;;;;26508:22:0;;;;;;:18;:22;;;;10617:2;26508:22;;;:70;;26546:31;26534:44;;26508:70;;;26821:31;;;:17;:31;;;;;26914:15;11134:3;26914:41;26872:84;;-1:-1:-1;26992:13:0;;11393:3;26977:56;26872:162;26821:213;;:31;27115:23;;;27155:111;27182:40;;27207:14;;;;;-1:-1:-1;;;;;27182:40:0;;;27199:1;;27182:40;;27199:1;;27182:40;27261:3;27246:12;:18;27155:111;;-1:-1:-1;27282:13:0;:28;21767:190;;;:::o;31539:1882::-;32010:4;32004:11;;32017:3;32000:21;;32091:17;;;;32763:11;;;32640:5;32897:2;32911;32901:13;;32893:22;32763:11;32880:36;32953:2;32943:13;;32537:661;32969:4;32537:661;;;33137:1;33132:3;33128:11;33121:18;;33181:2;33175:4;33171:13;33167:2;33163:22;33158:3;33150:36;33054:2;33044:13;;32537:661;;;-1:-1:-1;33221:13:0;;;-1:-1:-1;;33330:12:0;;;33384:19;;;33330:12;31539:1882;-1:-1:-1;31539: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:160::-;2230:20;;2286:13;;2279:21;2269:32;;2259:60;;2315:1;2312;2305:12;2330:180;2386:6;2439:2;2427:9;2418:7;2414:23;2410:32;2407:52;;;2455:1;2452;2445:12;2407:52;2478:26;2494:9;2478:26;:::i;2515:328::-;2592:6;2600;2608;2661:2;2649:9;2640:7;2636:23;2632:32;2629:52;;;2677:1;2674;2667:12;2629:52;2700:29;2719:9;2700:29;:::i;:::-;2690:39;;2748:38;2782:2;2771:9;2767:18;2748:38;:::i;:::-;2738:48;;2833:2;2822:9;2818:18;2805:32;2795:42;;2515:328;;;;;:::o;2848:127::-;2909:10;2904:3;2900:20;2897:1;2890:31;2940:4;2937:1;2930:15;2964:4;2961:1;2954:15;2980:632;3045:5;3075:18;3116:2;3108:6;3105:14;3102:40;;;3122:18;;:::i;:::-;3197:2;3191:9;3165:2;3251:15;;-1:-1:-1;;3247:24:1;;;3273:2;3243:33;3239:42;3227:55;;;3297:18;;;3317:22;;;3294:46;3291:72;;;3343:18;;:::i;:::-;3383:10;3379:2;3372:22;3412:6;3403:15;;3442:6;3434;3427:22;3482:3;3473:6;3468:3;3464:16;3461:25;3458:45;;;3499:1;3496;3489:12;3458:45;3549:6;3544:3;3537:4;3529:6;3525:17;3512:44;3604:1;3597:4;3588:6;3580;3576:19;3572:30;3565:41;;;;2980:632;;;;;:::o;3617:451::-;3686:6;3739:2;3727:9;3718:7;3714:23;3710:32;3707:52;;;3755:1;3752;3745:12;3707:52;3795:9;3782:23;3828:18;3820:6;3817:30;3814:50;;;3860:1;3857;3850:12;3814:50;3883:22;;3936:4;3928:13;;3924:27;-1:-1:-1;3914:55:1;;3965:1;3962;3955:12;3914:55;3988:74;4054:7;4049:2;4036:16;4031:2;4027;4023:11;3988:74;:::i;:::-;3978:84;3617:451;-1:-1:-1;;;;3617:451:1:o;4073:186::-;4132:6;4185:2;4173:9;4164:7;4160:23;4156:32;4153:52;;;4201:1;4198;4191:12;4153:52;4224:29;4243:9;4224:29;:::i;4264:254::-;4329:6;4337;4390:2;4378:9;4369:7;4365:23;4361:32;4358:52;;;4406:1;4403;4396:12;4358:52;4429:29;4448:9;4429:29;:::i;:::-;4419:39;;4477:35;4508:2;4497:9;4493:18;4477:35;:::i;:::-;4467:45;;4264:254;;;;;:::o;4523:667::-;4618:6;4626;4634;4642;4695:3;4683:9;4674:7;4670:23;4666:33;4663:53;;;4712:1;4709;4702:12;4663:53;4735:29;4754:9;4735:29;:::i;:::-;4725:39;;4783:38;4817:2;4806:9;4802:18;4783:38;:::i;:::-;4773:48;;4868:2;4857:9;4853:18;4840:32;4830:42;;4923:2;4912:9;4908:18;4895:32;4950:18;4942:6;4939:30;4936:50;;;4982:1;4979;4972:12;4936:50;5005:22;;5058:4;5050:13;;5046:27;-1:-1:-1;5036:55:1;;5087:1;5084;5077:12;5036:55;5110:74;5176:7;5171:2;5158:16;5153:2;5149;5145:11;5110:74;:::i;:::-;5100:84;;;4523:667;;;;;;;:::o;5195:260::-;5263:6;5271;5324:2;5312:9;5303:7;5299:23;5295:32;5292:52;;;5340:1;5337;5330:12;5292:52;5363:29;5382:9;5363:29;:::i;:::-;5353:39;;5411:38;5445:2;5434:9;5430:18;5411:38;:::i;5460:326::-;5662:2;5644:21;;;5701:1;5681:18;;;5674:29;-1:-1:-1;;;5734:2:1;5719:18;;5712:33;5777:2;5762:18;;5460:326::o;5791:380::-;5870:1;5866:12;;;;5913;;;5934:61;;5988:4;5980:6;5976:17;5966:27;;5934:61;6041:2;6033:6;6030:14;6010:18;6007:38;6004:161;;6087:10;6082:3;6078:20;6075:1;6068:31;6122:4;6119:1;6112:15;6150:4;6147:1;6140:15;6004:161;;5791:380;;;:::o;6302:545::-;6404:2;6399:3;6396:11;6393:448;;;6440:1;6465:5;6461:2;6454:17;6510:4;6506:2;6496:19;6580:2;6568:10;6564:19;6561:1;6557:27;6551:4;6547:38;6616:4;6604:10;6601:20;6598:47;;;-1:-1:-1;6639:4:1;6598:47;6694:2;6689:3;6685:12;6682:1;6678:20;6672:4;6668:31;6658:41;;6749:82;6767:2;6760:5;6757:13;6749:82;;;6812:17;;;6793:1;6782:13;6749:82;;7023:1352;7149:3;7143:10;7176:18;7168:6;7165:30;7162:56;;;7198:18;;:::i;:::-;7227:97;7317:6;7277:38;7309:4;7303:11;7277:38;:::i;:::-;7271:4;7227:97;:::i;:::-;7379:4;;7443:2;7432:14;;7460:1;7455:663;;;;8162:1;8179:6;8176:89;;;-1:-1:-1;8231:19:1;;;8225:26;8176:89;-1:-1:-1;;6980:1:1;6976:11;;;6972:24;6968:29;6958:40;7004:1;7000:11;;;6955:57;8278:81;;7425:944;;7455:663;6249:1;6242:14;;;6286:4;6273:18;;-1:-1:-1;;7491:20:1;;;7609:236;7623:7;7620:1;7617:14;7609:236;;;7712:19;;;7706:26;7691:42;;7804:27;;;;7772:1;7760:14;;;;7639:19;;7609:236;;;7613:3;7873:6;7864:7;7861:19;7858:201;;;7934:19;;;7928:26;-1:-1:-1;;8017:1:1;8013:14;;;8029:3;8009:24;8005:37;8001:42;7986:58;7971:74;;7858:201;-1:-1:-1;;;;;8105:1:1;8089:14;;;8085:22;8072:36;;-1:-1:-1;7023:1352:1:o;8380:127::-;8441:10;8436:3;8432:20;8429:1;8422:31;8472:4;8469:1;8462:15;8496:4;8493:1;8486:15;8512:125;8577:9;;;8598:10;;;8595:36;;;8611:18;;:::i;9313:168::-;9353:7;9419:1;9415;9411:6;9407:14;9404:1;9401:21;9396:1;9389:9;9382:17;9378:45;9375:71;;;9426:18;;:::i;:::-;-1:-1:-1;9466:9:1;;9313:168::o;9827:935::-;-1:-1:-1;;;10334:3:1;10327:22;10309:3;10378:6;10372:13;10394:74;10461:6;10457:1;10452:3;10448:11;10441:4;10433:6;10429:17;10394:74;:::i;:::-;-1:-1:-1;;;10527:1:1;10487:16;;;10519:10;;;10512:23;10560:13;;10582:75;10560:13;10644:1;10636:10;;10629:4;10617:17;;10582:75;:::i;:::-;-1:-1:-1;;;10717:1:1;10676:17;;;;10709:10;;;10702:27;10753:2;10745:11;;9827:935;-1:-1:-1;;;;9827:935:1:o;10767:1030::-;-1:-1:-1;;;11021:3:1;11014:22;10996:3;11055:1;11076;11109:6;11103:13;11139:36;11165:9;11139:36;:::i;:::-;11194:1;11211:18;;;11238:151;;;;11403:1;11398:374;;;;11204:568;;11238:151;-1:-1:-1;;11280:24:1;;11266:12;;;11259:46;11357:14;;11350:22;11338:35;;11329:45;;11325:54;;;-1:-1:-1;11238:151:1;;11398:374;11429:6;11426:1;11419:17;11459:4;11504:2;11501:1;11491:16;11529:1;11543:174;11557:6;11554:1;11551:13;11543:174;;;11644:14;;11626:11;;;11622:20;;11615:44;11687:16;;;;11572:10;;11543:174;;;11547:3;;;11759:2;11750:6;11745:3;11741:16;11737:25;11730:32;;11204:568;-1:-1:-1;11788:3:1;;10767:1030;-1:-1:-1;;;;;;;10767:1030:1:o
Swarm Source
ipfs://6fd3709568b875a8706436a407e42461f0a32f54d1cb23378d2fd3a5536fa3db
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.