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 117 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer From | 22285630 | 320 days ago | IN | 0 ETH | 0.00005182 | ||||
| Transfer From | 21241139 | 465 days ago | IN | 0 ETH | 0.00057601 | ||||
| Withdrawrouted | 18383665 | 865 days ago | IN | 0 ETH | 0.00054926 | ||||
| Transfer From | 17780922 | 950 days ago | IN | 0 ETH | 0.00146658 | ||||
| Mint | 17738117 | 956 days ago | IN | 0.05 ETH | 0.00164297 | ||||
| Mint | 17737953 | 956 days ago | IN | 0.05 ETH | 0.00116444 | ||||
| Mint | 17737621 | 956 days ago | IN | 0.05 ETH | 0.00208326 | ||||
| Set Approval For... | 17723605 | 958 days ago | IN | 0 ETH | 0.00091928 | ||||
| Mint | 17723528 | 958 days ago | IN | 0.05 ETH | 0.00130833 | ||||
| Mint | 17723510 | 958 days ago | IN | 0.05 ETH | 0.00120847 | ||||
| Mint | 17723508 | 958 days ago | IN | 0.05 ETH | 0.00155213 | ||||
| Transfer From | 17448184 | 996 days ago | IN | 0 ETH | 0.00212655 | ||||
| Set Approval For... | 17368022 | 1008 days ago | IN | 0 ETH | 0.00101226 | ||||
| Transfer From | 17294473 | 1018 days ago | IN | 0 ETH | 0.00412718 | ||||
| Mint | 16694273 | 1103 days ago | IN | 0.05 ETH | 0.00285163 | ||||
| Transfer From | 16640977 | 1110 days ago | IN | 0 ETH | 0.00143536 | ||||
| Transfer From | 16640933 | 1110 days ago | IN | 0 ETH | 0.00235393 | ||||
| Safe Transfer Fr... | 16531949 | 1125 days ago | IN | 0 ETH | 0.00095627 | ||||
| Set Base URI | 16522791 | 1127 days ago | IN | 0 ETH | 0.00080207 | ||||
| Set Base URI | 16522786 | 1127 days ago | IN | 0 ETH | 0.00085865 | ||||
| Mint | 16462473 | 1135 days ago | IN | 0.05 ETH | 0.00120603 | ||||
| Transfer From | 16394641 | 1145 days ago | IN | 0 ETH | 0.00172472 | ||||
| Set Base URI | 16290380 | 1159 days ago | IN | 0 ETH | 0.00058347 | ||||
| Airdrop | 16290259 | 1159 days ago | IN | 0 ETH | 0.00112017 | ||||
| Withdrawrouted | 16290253 | 1159 days ago | IN | 0 ETH | 0.0015711 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 18383665 | 865 days ago | 0.056 ETH | ||||
| Transfer | 18383665 | 865 days ago | 0.056 ETH | ||||
| Transfer | 18383665 | 865 days ago | 0.056 ETH | ||||
| Transfer | 18383665 | 865 days ago | 0.06 ETH | ||||
| Transfer | 18383665 | 865 days ago | 0.172 ETH | ||||
| Transfer | 16290253 | 1159 days ago | 0.028 ETH | ||||
| Transfer | 16290253 | 1159 days ago | 0.028 ETH | ||||
| Transfer | 16290253 | 1159 days ago | 0.028 ETH | ||||
| Transfer | 16290253 | 1159 days ago | 0.03 ETH | ||||
| Transfer | 16290253 | 1159 days ago | 0.086 ETH | ||||
| Transfer | 16028598 | 1196 days ago | 0.112 ETH | ||||
| Transfer | 16028598 | 1196 days ago | 0.112 ETH | ||||
| Transfer | 16028598 | 1196 days ago | 0.112 ETH | ||||
| Transfer | 16028598 | 1196 days ago | 0.12 ETH | ||||
| Transfer | 16028598 | 1196 days ago | 0.344 ETH | ||||
| Transfer | 15890429 | 1215 days ago | 0.301 ETH | ||||
| Transfer | 15890429 | 1215 days ago | 0.301 ETH | ||||
| Transfer | 15890429 | 1215 days ago | 0.301 ETH | ||||
| Transfer | 15890429 | 1215 days ago | 0.3225 ETH | ||||
| Transfer | 15890429 | 1215 days ago | 0.9245 ETH | ||||
| Transfer | 15723549 | 1238 days ago | 0.014 ETH | ||||
| Transfer | 15723549 | 1238 days ago | 0.014 ETH | ||||
| Transfer | 15723549 | 1238 days ago | 0.014 ETH | ||||
| Transfer | 15723549 | 1238 days ago | 0.015 ETH | ||||
| Transfer | 15723549 | 1238 days ago | 0.043 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
SUPRA
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "./ERC721A.sol";
import "./IERC721A.sol";
import "./Ownable.sol";
import "./ERC721AQueryable.sol";
import "./IERC721AQueryable.sol";
import "./ERC721ABurnable.sol";
import "./IERC721ABurnable.sol";
contract SUPRA is IERC721A, Ownable, ERC721A {
uint256 public maxSupply = 5000;
uint256 public paidPrice = 0.05 ether;
string public baseURI;
bool public saleStarted;
constructor() ERC721A('Supra3.0', 'SUPRA') {
}
//Gamarjoba!
modifier whenSaleStarted() {
require(saleStarted, "Public sale has not started");
_;
}
function mint(uint256 amountOfTokens) external payable whenSaleStarted {
require(totalSupply() + amountOfTokens <= maxSupply, "Exceeds max supply.");
require(amountOfTokens > 0, "Must mint at least one.");
require(paidPrice * amountOfTokens <= msg.value, "ETH amount is incorrect");
_safeMint(msg.sender, amountOfTokens);
}
function airdrop(address recipient, uint256 amountOfTokens) external onlyOwner {
require(recipient != address(0), "Cannot add null address");
_safeMint(recipient, amountOfTokens);
}
function toggleSaleStarted() external onlyOwner {
saleStarted = !saleStarted;
}
function _baseURI() internal view virtual override returns (string memory) {
return baseURI;
}
function changeSupply(uint256 newMax) external onlyOwner {
maxSupply = newMax;
}
function updatePrice(uint256 newPriceInWEI) external onlyOwner {
paidPrice = newPriceInWEI;
}
function setBaseURI(string memory baseURI_) external onlyOwner {
baseURI = baseURI_;
}
function withdrawrouted() external onlyOwner {
uint256 sendAmount = address(this).balance;
address supra1 = payable(0x394EE2F4fbA198aA953Ffd8861fBD2dEe1BA830E);
address supra2 = payable(0x45d3590e45A4c491F0163567c260c9Aa100D5E6c);
address supra3 = payable(0x7Fe06D2c4D5E42d8506fDA55085e782F12805b3e);
address supra4 = payable(0x2b5920C422E9Be335d2d8c375700Cbc6D525E243);
address supra5 = payable(0xB8f5D071714a15e99b2fcfCb49666e27073E7c85);
bool success;
(success, ) = supra1.call{value: ((sendAmount * 43)/100)}("");
require(success, "Transaction Unsuccessful");
(success, ) = supra2.call{value: ((sendAmount * 15)/100)}("");
require(success, "Transaction Unsuccessful");
(success, ) = supra3.call{value: ((sendAmount * 14)/100)}("");
require(success, "Transaction Unsuccessful");
(success, ) = supra4.call{value: ((sendAmount * 14)/100)}("");
require(success, "Transaction Unsuccessful");
(success, ) = supra5.call{value: ((sendAmount * 14)/100)}("");
require(success, "Transaction Unsuccessful");
}
function withdraw() public payable onlyOwner {
require(payable(msg.sender).send(address(this).balance));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs
pragma solidity ^0.8.4;
import './IERC721A.sol';
/**
* @dev Interface of ERC721 token receiver.
*/
interface ERC721A__IERC721Receiver {
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
/**
* @title ERC721A
*
* @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
* Non-Fungible Token Standard, including the Metadata extension.
* Optimized for lower gas during batch mints.
*
* Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
* starting from `_startTokenId()`.
*
* Assumptions:
*
* - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
* - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
*/
contract ERC721A is IERC721A {
// Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
struct TokenApprovalRef {
address value;
}
// =============================================================
// CONSTANTS
// =============================================================
// Mask of an entry in packed address data.
uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;
// The bit position of `numberMinted` in packed address data.
uint256 private constant _BITPOS_NUMBER_MINTED = 64;
// The bit position of `numberBurned` in packed address data.
uint256 private constant _BITPOS_NUMBER_BURNED = 128;
// The bit position of `aux` in packed address data.
uint256 private constant _BITPOS_AUX = 192;
// Mask of all 256 bits in packed address data except the 64 bits for `aux`.
uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;
// The bit position of `startTimestamp` in packed ownership.
uint256 private constant _BITPOS_START_TIMESTAMP = 160;
// The bit mask of the `burned` bit in packed ownership.
uint256 private constant _BITMASK_BURNED = 1 << 224;
// The bit position of the `nextInitialized` bit in packed ownership.
uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;
// The bit mask of the `nextInitialized` bit in packed ownership.
uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;
// The bit position of `extraData` in packed ownership.
uint256 private constant _BITPOS_EXTRA_DATA = 232;
// Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;
// The mask of the lower 160 bits for addresses.
uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;
// The maximum `quantity` that can be minted with {_mintERC2309}.
// This limit is to prevent overflows on the address data entries.
// For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
// is required to cause an overflow, which is unrealistic.
uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;
// The `Transfer` event signature is given by:
// `keccak256(bytes("Transfer(address,address,uint256)"))`.
bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;
// =============================================================
// STORAGE
// =============================================================
// The next token ID to be minted.
uint256 private _currentIndex;
// The number of tokens burned.
uint256 private _burnCounter;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to ownership details
// An empty struct value does not necessarily mean the token is unowned.
// See {_packedOwnershipOf} implementation for details.
//
// Bits Layout:
// - [0..159] `addr`
// - [160..223] `startTimestamp`
// - [224] `burned`
// - [225] `nextInitialized`
// - [232..255] `extraData`
mapping(uint256 => uint256) private _packedOwnerships;
// Mapping owner address to address data.
//
// Bits Layout:
// - [0..63] `balance`
// - [64..127] `numberMinted`
// - [128..191] `numberBurned`
// - [192..255] `aux`
mapping(address => uint256) private _packedAddressData;
// Mapping from token ID to approved address.
mapping(uint256 => TokenApprovalRef) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
// =============================================================
// CONSTRUCTOR
// =============================================================
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
_currentIndex = _startTokenId();
}
// =============================================================
// TOKEN COUNTING OPERATIONS
// =============================================================
/**
* @dev Returns the starting token ID.
* To change the starting token ID, please override this function.
*/
function _startTokenId() internal view virtual returns (uint256) {
return 0;
}
/**
* @dev Returns the next token ID to be minted.
*/
function _nextTokenId() internal view virtual returns (uint256) {
return _currentIndex;
}
/**
* @dev Returns the total number of tokens in existence.
* Burned tokens will reduce the count.
* To get the total number of tokens minted, please see {_totalMinted}.
*/
function totalSupply() public view virtual override returns (uint256) {
// Counter underflow is impossible as _burnCounter cannot be incremented
// more than `_currentIndex - _startTokenId()` times.
unchecked {
return _currentIndex - _burnCounter - _startTokenId();
}
}
/**
* @dev Returns the total amount of tokens minted in the contract.
*/
function _totalMinted() internal view virtual returns (uint256) {
// Counter underflow is impossible as `_currentIndex` does not decrement,
// and it is initialized to `_startTokenId()`.
unchecked {
return _currentIndex - _startTokenId();
}
}
/**
* @dev Returns the total number of tokens burned.
*/
function _totalBurned() internal view virtual returns (uint256) {
return _burnCounter;
}
// =============================================================
// ADDRESS DATA OPERATIONS
// =============================================================
/**
* @dev Returns the number of tokens in `owner`'s account.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
if (owner == address(0)) revert BalanceQueryForZeroAddress();
return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
}
/**
* Returns the number of tokens minted by `owner`.
*/
function _numberMinted(address owner) internal view returns (uint256) {
return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
}
/**
* Returns the number of tokens burned by or on behalf of `owner`.
*/
function _numberBurned(address owner) internal view returns (uint256) {
return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
}
/**
* Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
*/
function _getAux(address owner) internal view returns (uint64) {
return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
}
/**
* Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
* If there are multiple variables, please pack them into a uint64.
*/
function _setAux(address owner, uint64 aux) internal virtual {
uint256 packed = _packedAddressData[owner];
uint256 auxCasted;
// Cast `aux` with assembly to avoid redundant masking.
assembly {
auxCasted := aux
}
packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
_packedAddressData[owner] = packed;
}
// =============================================================
// IERC165
// =============================================================
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
* to learn more about how these ids are created.
*
* This function call must use less than 30000 gas.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
// The interface IDs are constants representing the first 4 bytes
// of the XOR of all function selectors in the interface.
// See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
// (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
return
interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
}
// =============================================================
// IERC721Metadata
// =============================================================
/**
* @dev Returns the token collection name.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the token collection symbol.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
string memory baseURI = _baseURI();
return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, it can be overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return '';
}
// =============================================================
// OWNERSHIPS OPERATIONS
// =============================================================
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
return address(uint160(_packedOwnershipOf(tokenId)));
}
/**
* @dev Gas spent here starts off proportional to the maximum mint batch size.
* It gradually moves to O(1) as tokens get transferred around over time.
*/
function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
return _unpackedOwnership(_packedOwnershipOf(tokenId));
}
/**
* @dev Returns the unpacked `TokenOwnership` struct at `index`.
*/
function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
return _unpackedOwnership(_packedOwnerships[index]);
}
/**
* @dev Initializes the ownership slot minted at `index` for efficiency purposes.
*/
function _initializeOwnershipAt(uint256 index) internal virtual {
if (_packedOwnerships[index] == 0) {
_packedOwnerships[index] = _packedOwnershipOf(index);
}
}
/**
* Returns the packed ownership data of `tokenId`.
*/
function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
uint256 curr = tokenId;
unchecked {
if (_startTokenId() <= curr)
if (curr < _currentIndex) {
uint256 packed = _packedOwnerships[curr];
// If not burned.
if (packed & _BITMASK_BURNED == 0) {
// Invariant:
// There will always be an initialized ownership slot
// (i.e. `ownership.addr != address(0) && ownership.burned == false`)
// before an unintialized ownership slot
// (i.e. `ownership.addr == address(0) && ownership.burned == false`)
// Hence, `curr` will not underflow.
//
// We can directly compare the packed value.
// If the address is zero, packed will be zero.
while (packed == 0) {
packed = _packedOwnerships[--curr];
}
return packed;
}
}
}
revert OwnerQueryForNonexistentToken();
}
/**
* @dev Returns the unpacked `TokenOwnership` struct from `packed`.
*/
function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
ownership.addr = address(uint160(packed));
ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
ownership.burned = packed & _BITMASK_BURNED != 0;
ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
}
/**
* @dev Packs ownership data into a single uint256.
*/
function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
assembly {
// Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
owner := and(owner, _BITMASK_ADDRESS)
// `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
}
}
/**
* @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
*/
function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
// For branchless setting of the `nextInitialized` flag.
assembly {
// `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
}
}
// =============================================================
// APPROVAL OPERATIONS
// =============================================================
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the
* zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) public payable virtual override {
address owner = ownerOf(tokenId);
if (_msgSenderERC721A() != owner)
if (!isApprovedForAll(owner, _msgSenderERC721A())) {
revert ApprovalCallerNotOwnerNorApproved();
}
_tokenApprovals[tokenId].value = to;
emit Approval(owner, to, tokenId);
}
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();
return _tokenApprovals[tokenId].value;
}
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom}
* for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_operatorApprovals[_msgSenderERC721A()][operator] = approved;
emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
}
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted. See {_mint}.
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return
_startTokenId() <= tokenId &&
tokenId < _currentIndex && // If within bounds,
_packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
}
/**
* @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
*/
function _isSenderApprovedOrOwner(
address approvedAddress,
address owner,
address msgSender
) private pure returns (bool result) {
assembly {
// Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
owner := and(owner, _BITMASK_ADDRESS)
// Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
msgSender := and(msgSender, _BITMASK_ADDRESS)
// `msgSender == owner || msgSender == approvedAddress`.
result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
}
}
/**
* @dev Returns the storage slot and value for the approved address of `tokenId`.
*/
function _getApprovedSlotAndAddress(uint256 tokenId)
private
view
returns (uint256 approvedAddressSlot, address approvedAddress)
{
TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
// The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
assembly {
approvedAddressSlot := tokenApproval.slot
approvedAddress := sload(approvedAddressSlot)
}
}
// =============================================================
// TRANSFER OPERATIONS
// =============================================================
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token
* by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public payable virtual override {
uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();
(uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);
// The nested ifs save around 20+ gas over a compound boolean condition.
if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
if (to == address(0)) revert TransferToZeroAddress();
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner.
assembly {
if approvedAddress {
// This is equivalent to `delete _tokenApprovals[tokenId]`.
sstore(approvedAddressSlot, 0)
}
}
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
unchecked {
// We can directly increment and decrement the balances.
--_packedAddressData[from]; // Updates: `balance -= 1`.
++_packedAddressData[to]; // Updates: `balance += 1`.
// Updates:
// - `address` to the next owner.
// - `startTimestamp` to the timestamp of transfering.
// - `burned` to `false`.
// - `nextInitialized` to `true`.
_packedOwnerships[tokenId] = _packOwnershipData(
to,
_BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
);
// If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
uint256 nextTokenId = tokenId + 1;
// If the next slot's address is zero and not burned (i.e. packed value is zero).
if (_packedOwnerships[nextTokenId] == 0) {
// If the next slot is within bounds.
if (nextTokenId != _currentIndex) {
// Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
_packedOwnerships[nextTokenId] = prevOwnershipPacked;
}
}
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public payable virtual override {
safeTransferFrom(from, to, tokenId, '');
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token
* by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement
* {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public payable virtual override {
transferFrom(from, to, tokenId);
if (to.code.length != 0)
if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
}
/**
* @dev Hook that is called before a set of serially-ordered token IDs
* are about to be transferred. This includes minting.
* And also called before burning one token.
*
* `startTokenId` - the first token ID to be transferred.
* `quantity` - the amount to be transferred.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, `tokenId` will be burned by `from`.
* - `from` and `to` are never both zero.
*/
function _beforeTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Hook that is called after a set of serially-ordered token IDs
* have been transferred. This includes minting.
* And also called after one token has been burned.
*
* `startTokenId` - the first token ID to be transferred.
* `quantity` - the amount to be transferred.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
* transferred to `to`.
* - When `from` is zero, `tokenId` has been minted for `to`.
* - When `to` is zero, `tokenId` has been burned by `from`.
* - `from` and `to` are never both zero.
*/
function _afterTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
*
* `from` - Previous owner of the given token ID.
* `to` - Target address that will receive the token.
* `tokenId` - Token ID to be transferred.
* `_data` - Optional data to send along with the call.
*
* Returns whether the call correctly returned the expected magic value.
*/
function _checkContractOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
bytes4 retval
) {
return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert TransferToNonERC721ReceiverImplementer();
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
}
// =============================================================
// MINT OPERATIONS
// =============================================================
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event for each mint.
*/
function _mint(address to, uint256 quantity) internal virtual {
uint256 startTokenId = _currentIndex;
if (quantity == 0) revert MintZeroQuantity();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are incredibly unrealistic.
// `balance` and `numberMinted` have a maximum limit of 2**64.
// `tokenId` has a maximum limit of 2**256.
unchecked {
// Updates:
// - `balance += quantity`.
// - `numberMinted += quantity`.
//
// We can directly add to the `balance` and `numberMinted`.
_packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);
// Updates:
// - `address` to the owner.
// - `startTimestamp` to the timestamp of minting.
// - `burned` to `false`.
// - `nextInitialized` to `quantity == 1`.
_packedOwnerships[startTokenId] = _packOwnershipData(
to,
_nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
);
uint256 toMasked;
uint256 end = startTokenId + quantity;
// Use assembly to loop and emit the `Transfer` event for gas savings.
// The duplicated `log4` removes an extra check and reduces stack juggling.
// The assembly, together with the surrounding Solidity code, have been
// delicately arranged to nudge the compiler into producing optimized opcodes.
assembly {
// Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
toMasked := and(to, _BITMASK_ADDRESS)
// Emit the `Transfer` event.
log4(
0, // Start of data (0, since no data).
0, // End of data (0, since no data).
_TRANSFER_EVENT_SIGNATURE, // Signature.
0, // `address(0)`.
toMasked, // `to`.
startTokenId // `tokenId`.
)
// The `iszero(eq(,))` check ensures that large values of `quantity`
// that overflows uint256 will make the loop run out of gas.
// The compiler will optimize the `iszero` away for performance.
for {
let tokenId := add(startTokenId, 1)
} iszero(eq(tokenId, end)) {
tokenId := add(tokenId, 1)
} {
// Emit the `Transfer` event. Similar to above.
log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
}
}
if (toMasked == 0) revert MintToZeroAddress();
_currentIndex = end;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* This function is intended for efficient minting only during contract creation.
*
* It emits only one {ConsecutiveTransfer} as defined in
* [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
* instead of a sequence of {Transfer} event(s).
*
* Calling this function outside of contract creation WILL make your contract
* non-compliant with the ERC721 standard.
* For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
* {ConsecutiveTransfer} event is only permissible during contract creation.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {ConsecutiveTransfer} event.
*/
function _mintERC2309(address to, uint256 quantity) internal virtual {
uint256 startTokenId = _currentIndex;
if (to == address(0)) revert MintToZeroAddress();
if (quantity == 0) revert MintZeroQuantity();
if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are unrealistic due to the above check for `quantity` to be below the limit.
unchecked {
// Updates:
// - `balance += quantity`.
// - `numberMinted += quantity`.
//
// We can directly add to the `balance` and `numberMinted`.
_packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);
// Updates:
// - `address` to the owner.
// - `startTimestamp` to the timestamp of minting.
// - `burned` to `false`.
// - `nextInitialized` to `quantity == 1`.
_packedOwnerships[startTokenId] = _packOwnershipData(
to,
_nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
);
emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);
_currentIndex = startTokenId + quantity;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Safely mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement
* {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
* - `quantity` must be greater than 0.
*
* See {_mint}.
*
* Emits a {Transfer} event for each mint.
*/
function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal virtual {
_mint(to, quantity);
unchecked {
if (to.code.length != 0) {
uint256 end = _currentIndex;
uint256 index = end - quantity;
do {
if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
} while (index < end);
// Reentrancy protection.
if (_currentIndex != end) revert();
}
}
}
/**
* @dev Equivalent to `_safeMint(to, quantity, '')`.
*/
function _safeMint(address to, uint256 quantity) internal virtual {
_safeMint(to, quantity, '');
}
// =============================================================
// BURN OPERATIONS
// =============================================================
/**
* @dev Equivalent to `_burn(tokenId, false)`.
*/
function _burn(uint256 tokenId) internal virtual {
_burn(tokenId, false);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
address from = address(uint160(prevOwnershipPacked));
(uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);
if (approvalCheck) {
// The nested ifs save around 20+ gas over a compound boolean condition.
if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
}
_beforeTokenTransfers(from, address(0), tokenId, 1);
// Clear approvals from the previous owner.
assembly {
if approvedAddress {
// This is equivalent to `delete _tokenApprovals[tokenId]`.
sstore(approvedAddressSlot, 0)
}
}
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
unchecked {
// Updates:
// - `balance -= 1`.
// - `numberBurned += 1`.
//
// We can directly decrement the balance, and increment the number burned.
// This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
_packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;
// Updates:
// - `address` to the last owner.
// - `startTimestamp` to the timestamp of burning.
// - `burned` to `true`.
// - `nextInitialized` to `true`.
_packedOwnerships[tokenId] = _packOwnershipData(
from,
(_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
);
// If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
uint256 nextTokenId = tokenId + 1;
// If the next slot's address is zero and not burned (i.e. packed value is zero).
if (_packedOwnerships[nextTokenId] == 0) {
// If the next slot is within bounds.
if (nextTokenId != _currentIndex) {
// Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
_packedOwnerships[nextTokenId] = prevOwnershipPacked;
}
}
}
}
emit Transfer(from, address(0), tokenId);
_afterTokenTransfers(from, address(0), tokenId, 1);
// Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
unchecked {
_burnCounter++;
}
}
// =============================================================
// EXTRA DATA OPERATIONS
// =============================================================
/**
* @dev Directly sets the extra data for the ownership data `index`.
*/
function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
uint256 packed = _packedOwnerships[index];
if (packed == 0) revert OwnershipNotInitializedForExtraData();
uint256 extraDataCasted;
// Cast `extraData` with assembly to avoid redundant masking.
assembly {
extraDataCasted := extraData
}
packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
_packedOwnerships[index] = packed;
}
/**
* @dev Called during each token transfer to set the 24bit `extraData` field.
* Intended to be overridden by the cosumer contract.
*
* `previousExtraData` - the value of `extraData` before transfer.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, `tokenId` will be burned by `from`.
* - `from` and `to` are never both zero.
*/
function _extraData(
address from,
address to,
uint24 previousExtraData
) internal view virtual returns (uint24) {}
/**
* @dev Returns the next extra data for the packed ownership data.
* The returned result is shifted into position.
*/
function _nextExtraData(
address from,
address to,
uint256 prevOwnershipPacked
) private view returns (uint256) {
uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
}
// =============================================================
// OTHER OPERATIONS
// =============================================================
/**
* @dev Returns the message sender (defaults to `msg.sender`).
*
* If you are writing GSN compatible contracts, you need to override this function.
*/
function _msgSenderERC721A() internal view virtual returns (address) {
return msg.sender;
}
/**
* @dev Converts a uint256 to its ASCII string decimal representation.
*/
function _toString(uint256 value) internal pure virtual returns (string memory str) {
assembly {
// The maximum value of a uint256 contains 78 digits (1 byte per digit), but
// we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
// We will need 1 word for the trailing zeros padding, 1 word for the length,
// and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
let m := add(mload(0x40), 0xa0)
// Update the free memory pointer to allocate.
mstore(0x40, m)
// Assign the `str` to the end.
str := sub(m, 0x20)
// Zeroize the slot after the string.
mstore(str, 0)
// Cache the end of the memory to calculate the length later.
let end := str
// We write the string from rightmost digit to leftmost digit.
// The following is essentially a do-while loop that also handles the zero case.
// prettier-ignore
for { let temp := value } 1 {} {
str := sub(str, 1)
// Write the character to the pointer.
// The ASCII index of the '0' character is 48.
mstore8(str, add(48, mod(temp, 10)))
// Keep dividing `temp` until zero.
temp := div(temp, 10)
// prettier-ignore
if iszero(temp) { break }
}
let length := sub(end, str)
// Move the pointer 32 bytes leftwards to make room for the length.
str := sub(str, 0x20)
// Store the length.
mstore(str, length)
}
}
}
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs
pragma solidity ^0.8.4;
import './IERC721ABurnable.sol';
import './ERC721A.sol';
/**
* @title ERC721ABurnable.
*
* @dev ERC721A token that can be irreversibly burned (destroyed).
*/
abstract contract ERC721ABurnable is ERC721A, IERC721ABurnable {
/**
* @dev Burns `tokenId`. See {ERC721A-_burn}.
*
* Requirements:
*
* - The caller must own `tokenId` or be an approved operator.
*/
function burn(uint256 tokenId) public virtual override {
_burn(tokenId, true);
}
}
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs
pragma solidity ^0.8.4;
import './IERC721AQueryable.sol';
import './ERC721A.sol';
/**
* @title ERC721AQueryable.
*
* @dev ERC721A subclass with convenience query functions.
*/
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
/**
* @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
*
* If the `tokenId` is out of bounds:
*
* - `addr = address(0)`
* - `startTimestamp = 0`
* - `burned = false`
* - `extraData = 0`
*
* If the `tokenId` is burned:
*
* - `addr = <Address of owner before token was burned>`
* - `startTimestamp = <Timestamp when token was burned>`
* - `burned = true`
* - `extraData = <Extra data when token was burned>`
*
* Otherwise:
*
* - `addr = <Address of owner>`
* - `startTimestamp = <Timestamp of start of ownership>`
* - `burned = false`
* - `extraData = <Extra data at start of ownership>`
*/
function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) {
TokenOwnership memory ownership;
if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
return ownership;
}
ownership = _ownershipAt(tokenId);
if (ownership.burned) {
return ownership;
}
return _ownershipOf(tokenId);
}
/**
* @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
* See {ERC721AQueryable-explicitOwnershipOf}
*/
function explicitOwnershipsOf(uint256[] calldata tokenIds)
external
view
virtual
override
returns (TokenOwnership[] memory)
{
unchecked {
uint256 tokenIdsLength = tokenIds.length;
TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
for (uint256 i; i != tokenIdsLength; ++i) {
ownerships[i] = explicitOwnershipOf(tokenIds[i]);
}
return ownerships;
}
}
/**
* @dev Returns an array of token IDs owned by `owner`,
* in the range [`start`, `stop`)
* (i.e. `start <= tokenId < stop`).
*
* This function allows for tokens to be queried if the collection
* grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
*
* Requirements:
*
* - `start < stop`
*/
function tokensOfOwnerIn(
address owner,
uint256 start,
uint256 stop
) external view virtual override returns (uint256[] memory) {
unchecked {
if (start >= stop) revert InvalidQueryRange();
uint256 tokenIdsIdx;
uint256 stopLimit = _nextTokenId();
// Set `start = max(start, _startTokenId())`.
if (start < _startTokenId()) {
start = _startTokenId();
}
// Set `stop = min(stop, stopLimit)`.
if (stop > stopLimit) {
stop = stopLimit;
}
uint256 tokenIdsMaxLength = balanceOf(owner);
// Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
// to cater for cases where `balanceOf(owner)` is too big.
if (start < stop) {
uint256 rangeLength = stop - start;
if (rangeLength < tokenIdsMaxLength) {
tokenIdsMaxLength = rangeLength;
}
} else {
tokenIdsMaxLength = 0;
}
uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
if (tokenIdsMaxLength == 0) {
return tokenIds;
}
// We need to call `explicitOwnershipOf(start)`,
// because the slot at `start` may not be initialized.
TokenOwnership memory ownership = explicitOwnershipOf(start);
address currOwnershipAddr;
// If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
// `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
if (!ownership.burned) {
currOwnershipAddr = ownership.addr;
}
for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
ownership = _ownershipAt(i);
if (ownership.burned) {
continue;
}
if (ownership.addr != address(0)) {
currOwnershipAddr = ownership.addr;
}
if (currOwnershipAddr == owner) {
tokenIds[tokenIdsIdx++] = i;
}
}
// Downsize the array to fit.
assembly {
mstore(tokenIds, tokenIdsIdx)
}
return tokenIds;
}
}
/**
* @dev Returns an array of token IDs owned by `owner`.
*
* This function scans the ownership mapping and is O(`totalSupply`) in complexity.
* It is meant to be called off-chain.
*
* See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
* multiple smaller scans if the collection is large enough to cause
* an out-of-gas error (10K collections should be fine).
*/
function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) {
unchecked {
uint256 tokenIdsIdx;
address currOwnershipAddr;
uint256 tokenIdsLength = balanceOf(owner);
uint256[] memory tokenIds = new uint256[](tokenIdsLength);
TokenOwnership memory ownership;
for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
ownership = _ownershipAt(i);
if (ownership.burned) {
continue;
}
if (ownership.addr != address(0)) {
currOwnershipAddr = ownership.addr;
}
if (currOwnershipAddr == owner) {
tokenIds[tokenIdsIdx++] = i;
}
}
return tokenIds;
}
}
}
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs
pragma solidity ^0.8.4;
/**
* @dev Interface of ERC721A.
*/
interface IERC721A {
/**
* The caller must own the token or be an approved operator.
*/
error ApprovalCallerNotOwnerNorApproved();
/**
* The token does not exist.
*/
error ApprovalQueryForNonexistentToken();
/**
* Cannot query the balance for the zero address.
*/
error BalanceQueryForZeroAddress();
/**
* Cannot mint to the zero address.
*/
error MintToZeroAddress();
/**
* The quantity of tokens minted must be more than zero.
*/
error MintZeroQuantity();
/**
* The token does not exist.
*/
error OwnerQueryForNonexistentToken();
/**
* The caller must own the token or be an approved operator.
*/
error TransferCallerNotOwnerNorApproved();
/**
* The token must be owned by `from`.
*/
error TransferFromIncorrectOwner();
/**
* Cannot safely transfer to a contract that does not implement the
* ERC721Receiver interface.
*/
error TransferToNonERC721ReceiverImplementer();
/**
* Cannot transfer to the zero address.
*/
error TransferToZeroAddress();
/**
* The token does not exist.
*/
error URIQueryForNonexistentToken();
/**
* The `quantity` minted with ERC2309 exceeds the safety limit.
*/
error MintERC2309QuantityExceedsLimit();
/**
* The `extraData` cannot be set on an unintialized ownership slot.
*/
error OwnershipNotInitializedForExtraData();
// =============================================================
// STRUCTS
// =============================================================
struct TokenOwnership {
// The address of the owner.
address addr;
// Stores the start time of ownership with minimal overhead for tokenomics.
uint64 startTimestamp;
// Whether the token has been burned.
bool burned;
// Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
uint24 extraData;
}
// =============================================================
// TOKEN COUNTERS
// =============================================================
/**
* @dev Returns the total number of tokens in existence.
* Burned tokens will reduce the count.
* To get the total number of tokens minted, please see {_totalMinted}.
*/
function totalSupply() external view returns (uint256);
// =============================================================
// IERC165
// =============================================================
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
* to learn more about how these ids are created.
*
* This function call must use less than 30000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
// =============================================================
// IERC721
// =============================================================
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables
* (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in `owner`'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`,
* checking first that contract recipients are aware of the ERC721 protocol
* to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move
* this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement
* {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external payable;
/**
* @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external payable;
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom}
* whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token
* by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external payable;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the
* zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external payable;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom}
* for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
// =============================================================
// IERC721Metadata
// =============================================================
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
// =============================================================
// IERC2309
// =============================================================
/**
* @dev Emitted when tokens in `fromTokenId` to `toTokenId`
* (inclusive) is transferred from `from` to `to`, as defined in the
* [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
*
* See {_mintERC2309} for more details.
*/
event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs
pragma solidity ^0.8.4;
import './IERC721A.sol';
/**
* @dev Interface of ERC721ABurnable.
*/
interface IERC721ABurnable is IERC721A {
/**
* @dev Burns `tokenId`. See {ERC721A-_burn}.
*
* Requirements:
*
* - The caller must own `tokenId` or be an approved operator.
*/
function burn(uint256 tokenId) external;
}
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs
pragma solidity ^0.8.4;
import './IERC721A.sol';
/**
* @dev Interface of ERC721AQueryable.
*/
interface IERC721AQueryable is IERC721A {
/**
* Invalid query range (`start` >= `stop`).
*/
error InvalidQueryRange();
/**
* @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
*
* If the `tokenId` is out of bounds:
*
* - `addr = address(0)`
* - `startTimestamp = 0`
* - `burned = false`
* - `extraData = 0`
*
* If the `tokenId` is burned:
*
* - `addr = <Address of owner before token was burned>`
* - `startTimestamp = <Timestamp when token was burned>`
* - `burned = true`
* - `extraData = <Extra data when token was burned>`
*
* Otherwise:
*
* - `addr = <Address of owner>`
* - `startTimestamp = <Timestamp of start of ownership>`
* - `burned = false`
* - `extraData = <Extra data at start of ownership>`
*/
function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);
/**
* @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
* See {ERC721AQueryable-explicitOwnershipOf}
*/
function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);
/**
* @dev Returns an array of token IDs owned by `owner`,
* in the range [`start`, `stop`)
* (i.e. `start <= tokenId < stop`).
*
* This function allows for tokens to be queried if the collection
* grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
*
* Requirements:
*
* - `start < stop`
*/
function tokensOfOwnerIn(
address owner,
uint256 start,
uint256 stop
) external view returns (uint256[] memory);
/**
* @dev Returns an array of token IDs owned by `owner`.
*
* This function scans the ownership mapping and is O(`totalSupply`) in complexity.
* It is meant to be called off-chain.
*
* See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
* multiple smaller scans if the collection is large enough to cause
* an out-of-gas error (10K collections should be fine).
*/
function tokensOfOwner(address owner) external view returns (uint256[] memory);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "./Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
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":"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amountOfTokens","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"changeSupply","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":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paidPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"saleStarted","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":"baseURI_","type":"string"}],"name":"setBaseURI","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":[],"name":"toggleSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPriceInWEI","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawrouted","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405261138860095566b1a2bc2ec50000600a553480156200002257600080fd5b506040518060400160405280600881526020016705375707261332e360c41b81525060405180604001604052806005815260200164535550524160d81b8152506200007c62000076620000b560201b60201c565b620000b9565b81516200009190600390602085019062000109565b508051620000a790600490602084019062000109565b5050600060015550620001ec565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200011790620001af565b90600052602060002090601f0160209004810192826200013b576000855562000186565b82601f106200015657805160ff191683800117855562000186565b8280016001018555821562000186579182015b828111156200018657825182559160200191906001019062000169565b506200019492915062000198565b5090565b5b8082111562000194576000815560010162000199565b600181811c90821680620001c457607f821691505b60208210811415620001e657634e487b7160e01b600052602260045260246000fd5b50919050565b6119f980620001fc6000396000f3fe6080604052600436106101c25760003560e01c806370a08231116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb0114610483578063e985e9c514610499578063f1da76a7146104e2578063f2fde38b146104f857600080fd5b8063a22cb4651461041b578063b88d4fde1461043b578063bc6d26351461044e578063c87b56dd1461046357600080fd5b80638d6cc56d116100d15780638d6cc56d146103b55780638da5cb5b146103d557806395d89b41146103f3578063a0712d681461040857600080fd5b806370a0823114610360578063715018a6146103805780638ba4cc3c1461039557600080fd5b80633ccfd60b116101645780635741cbf31161013e5780635741cbf3146102fc5780635c474f9e146103115780636352211e1461032b5780636c0360eb1461034b57600080fd5b80633ccfd60b146102c157806342842e0e146102c957806355f804b3146102dc57600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461026b57806323b872dd1461028e57806339a7919f146102a157600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e236600461174b565b610518565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021161056a565b6040516101f39190611879565b34801561022a57600080fd5b5061023e6102393660046117c9565b6105fc565b6040516001600160a01b0390911681526020016101f3565b610269610264366004611722565b610640565b005b34801561027757600080fd5b50600254600154035b6040519081526020016101f3565b61026961029c366004611634565b6106e0565b3480156102ad57600080fd5b506102696102bc3660046117c9565b610871565b61026961087e565b6102696102d7366004611634565b6108ac565b3480156102e857600080fd5b506102696102f7366004611783565b6108cc565b34801561030857600080fd5b506102696108eb565b34801561031d57600080fd5b50600c546101e79060ff1681565b34801561033757600080fd5b5061023e6103463660046117c9565b610c01565b34801561035757600080fd5b50610211610c0c565b34801561036c57600080fd5b5061028061037b3660046115e8565b610c9a565b34801561038c57600080fd5b50610269610ce9565b3480156103a157600080fd5b506102696103b0366004611722565b610cfb565b3480156103c157600080fd5b506102696103d03660046117c9565b610d63565b3480156103e157600080fd5b506000546001600160a01b031661023e565b3480156103ff57600080fd5b50610211610d70565b6102696104163660046117c9565b610d7f565b34801561042757600080fd5b506102696104363660046116e8565b610eea565b61026961044936600461166f565b610f56565b34801561045a57600080fd5b50610269610fa0565b34801561046f57600080fd5b5061021161047e3660046117c9565b610fbc565b34801561048f57600080fd5b5061028060095481565b3480156104a557600080fd5b506101e76104b4366004611602565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156104ee57600080fd5b50610280600a5481565b34801561050457600080fd5b506102696105133660046115e8565b611041565b60006301ffc9a760e01b6001600160e01b03198316148061054957506380ac58cd60e01b6001600160e01b03198316145b806105645750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461057990611946565b80601f01602080910402602001604051908101604052809291908181526020018280546105a590611946565b80156105f25780601f106105c7576101008083540402835291602001916105f2565b820191906000526020600020905b8154815290600101906020018083116105d557829003601f168201915b5050505050905090565b6000610607826110b7565b610624576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061064b82610c01565b9050336001600160a01b038216146106845761066781336104b4565b610684576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006106eb826110df565b9050836001600160a01b0316816001600160a01b03161461071e5760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b0388169091141761076b5761074e86336104b4565b61076b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661079257604051633a954ecd60e21b815260040160405180910390fd5b801561079d57600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b831661082857600184016000818152600560205260409020546108265760015481146108265760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610879611140565b600955565b610886611140565b60405133904780156108fc02916000818181858888f193505050506108aa57600080fd5b565b6108c783838360405180602001604052806000815250610f56565b505050565b6108d4611140565b80516108e790600b9060208401906114bd565b5050565b6108f3611140565b4773394ee2f4fba198aa953ffd8861fbd2dee1ba830e7345d3590e45a4c491f0163567c260c9aa100d5e6c737fe06d2c4d5e42d8506fda55085e782f12805b3e732b5920c422e9be335d2d8c375700cbc6d525e24373b8f5d071714a15e99b2fcfcb49666e27073e7c85600085606461096d89602b6118fb565b61097791906118db565b604051600081818185875af1925050503d80600081146109b3576040519150601f19603f3d011682016040523d82523d6000602084013e6109b8565b606091505b505080915050806109e45760405162461bcd60e51b81526004016109db9061188c565b60405180910390fd5b6001600160a01b03851660646109fb89600f6118fb565b610a0591906118db565b604051600081818185875af1925050503d8060008114610a41576040519150601f19603f3d011682016040523d82523d6000602084013e610a46565b606091505b50508091505080610a695760405162461bcd60e51b81526004016109db9061188c565b6001600160a01b0384166064610a8089600e6118fb565b610a8a91906118db565b604051600081818185875af1925050503d8060008114610ac6576040519150601f19603f3d011682016040523d82523d6000602084013e610acb565b606091505b50508091505080610aee5760405162461bcd60e51b81526004016109db9061188c565b6001600160a01b0383166064610b0589600e6118fb565b610b0f91906118db565b604051600081818185875af1925050503d8060008114610b4b576040519150601f19603f3d011682016040523d82523d6000602084013e610b50565b606091505b50508091505080610b735760405162461bcd60e51b81526004016109db9061188c565b6001600160a01b0382166064610b8a89600e6118fb565b610b9491906118db565b604051600081818185875af1925050503d8060008114610bd0576040519150601f19603f3d011682016040523d82523d6000602084013e610bd5565b606091505b50508091505080610bf85760405162461bcd60e51b81526004016109db9061188c565b50505050505050565b6000610564826110df565b600b8054610c1990611946565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4590611946565b8015610c925780601f10610c6757610100808354040283529160200191610c92565b820191906000526020600020905b815481529060010190602001808311610c7557829003601f168201915b505050505081565b60006001600160a01b038216610cc3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610cf1611140565b6108aa600061119a565b610d03611140565b6001600160a01b038216610d595760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420616464206e756c6c206164647265737300000000000000000060448201526064016109db565b6108e782826111ea565b610d6b611140565b600a55565b60606004805461057990611946565b600c5460ff16610dd15760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632073616c6520686173206e6f742073746172746564000000000060448201526064016109db565b60095481610de26002546001540390565b610dec91906118c3565b1115610e305760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b60448201526064016109db565b60008111610e805760405162461bcd60e51b815260206004820152601760248201527f4d757374206d696e74206174206c65617374206f6e652e00000000000000000060448201526064016109db565b3481600a54610e8f91906118fb565b1115610edd5760405162461bcd60e51b815260206004820152601760248201527f45544820616d6f756e7420697320696e636f727265637400000000000000000060448201526064016109db565b610ee733826111ea565b50565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f618484846106e0565b6001600160a01b0383163b15610f9a57610f7d84848484611204565b610f9a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610fa8611140565b600c805460ff19811660ff90911615179055565b6060610fc7826110b7565b610fe457604051630a14c4b560e41b815260040160405180910390fd5b6000610fee6112fc565b905080516000141561100f576040518060200160405280600081525061103a565b806110198461130b565b60405160200161102a92919061180d565b6040516020818303038152906040525b9392505050565b611049611140565b6001600160a01b0381166110ae5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109db565b610ee78161119a565b600060015482108015610564575050600090815260056020526040902054600160e01b161590565b60008160015481101561112757600081815260056020526040902054600160e01b8116611125575b8061103a575060001901600081815260056020526040902054611107565b505b604051636f96cda160e11b815260040160405180910390fd5b6000546001600160a01b031633146108aa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109db565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6108e7828260405180602001604052806000815250611359565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061123990339089908890889060040161183c565b602060405180830381600087803b15801561125357600080fd5b505af1925050508015611283575060408051601f3d908101601f1916820190925261128091810190611767565b60015b6112de573d8080156112b1576040519150601f19603f3d011682016040523d82523d6000602084013e6112b6565b606091505b5080516112d6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b805461057990611946565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a90048061134257611347565b611325565b50819003601f19909101908152919050565b61136383836113c6565b6001600160a01b0383163b156108c7576001548281035b61138d6000868380600101945086611204565b6113aa576040516368d2bf6b60e11b815260040160405180910390fd5b81811061137a5781600154146113bf57600080fd5b5050505050565b600154816113e75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461149657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161145e565b50816114b457604051622e076360e81b815260040160405180910390fd5b60015550505050565b8280546114c990611946565b90600052602060002090601f0160209004810192826114eb5760008555611531565b82601f1061150457805160ff1916838001178555611531565b82800160010185558215611531579182015b82811115611531578251825591602001919060010190611516565b5061153d929150611541565b5090565b5b8082111561153d5760008155600101611542565b600067ffffffffffffffff8084111561157157611571611997565b604051601f8501601f19908116603f0116810190828211818310171561159957611599611997565b816040528093508581528686860111156115b257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146115e357600080fd5b919050565b6000602082840312156115f9578081fd5b61103a826115cc565b60008060408385031215611614578081fd5b61161d836115cc565b915061162b602084016115cc565b90509250929050565b600080600060608486031215611648578081fd5b611651846115cc565b925061165f602085016115cc565b9150604084013590509250925092565b60008060008060808587031215611684578081fd5b61168d856115cc565b935061169b602086016115cc565b925060408501359150606085013567ffffffffffffffff8111156116bd578182fd5b8501601f810187136116cd578182fd5b6116dc87823560208401611556565b91505092959194509250565b600080604083850312156116fa578182fd5b611703836115cc565b915060208301358015158114611717578182fd5b809150509250929050565b60008060408385031215611734578182fd5b61173d836115cc565b946020939093013593505050565b60006020828403121561175c578081fd5b813561103a816119ad565b600060208284031215611778578081fd5b815161103a816119ad565b600060208284031215611794578081fd5b813567ffffffffffffffff8111156117aa578182fd5b8201601f810184136117ba578182fd5b6112f484823560208401611556565b6000602082840312156117da578081fd5b5035919050565b600081518084526117f981602086016020860161191a565b601f01601f19169290920160200192915050565b6000835161181f81846020880161191a565b83519083019061183381836020880161191a565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061186f908301846117e1565b9695505050505050565b60208152600061103a60208301846117e1565b60208082526018908201527f5472616e73616374696f6e20556e7375636365737366756c0000000000000000604082015260600190565b600082198211156118d6576118d6611981565b500190565b6000826118f657634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561191557611915611981565b500290565b60005b8381101561193557818101518382015260200161191d565b83811115610f9a5750506000910152565b600181811c9082168061195a57607f821691505b6020821081141561197b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ee757600080fdfea2646970667358221220459e0332f72e5ce7969d809deca7fc5faf3c19dfd64c4dfeb2be4848d21e137f64736f6c63430008040033
Deployed Bytecode
0x6080604052600436106101c25760003560e01c806370a08231116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb0114610483578063e985e9c514610499578063f1da76a7146104e2578063f2fde38b146104f857600080fd5b8063a22cb4651461041b578063b88d4fde1461043b578063bc6d26351461044e578063c87b56dd1461046357600080fd5b80638d6cc56d116100d15780638d6cc56d146103b55780638da5cb5b146103d557806395d89b41146103f3578063a0712d681461040857600080fd5b806370a0823114610360578063715018a6146103805780638ba4cc3c1461039557600080fd5b80633ccfd60b116101645780635741cbf31161013e5780635741cbf3146102fc5780635c474f9e146103115780636352211e1461032b5780636c0360eb1461034b57600080fd5b80633ccfd60b146102c157806342842e0e146102c957806355f804b3146102dc57600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461026b57806323b872dd1461028e57806339a7919f146102a157600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e236600461174b565b610518565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021161056a565b6040516101f39190611879565b34801561022a57600080fd5b5061023e6102393660046117c9565b6105fc565b6040516001600160a01b0390911681526020016101f3565b610269610264366004611722565b610640565b005b34801561027757600080fd5b50600254600154035b6040519081526020016101f3565b61026961029c366004611634565b6106e0565b3480156102ad57600080fd5b506102696102bc3660046117c9565b610871565b61026961087e565b6102696102d7366004611634565b6108ac565b3480156102e857600080fd5b506102696102f7366004611783565b6108cc565b34801561030857600080fd5b506102696108eb565b34801561031d57600080fd5b50600c546101e79060ff1681565b34801561033757600080fd5b5061023e6103463660046117c9565b610c01565b34801561035757600080fd5b50610211610c0c565b34801561036c57600080fd5b5061028061037b3660046115e8565b610c9a565b34801561038c57600080fd5b50610269610ce9565b3480156103a157600080fd5b506102696103b0366004611722565b610cfb565b3480156103c157600080fd5b506102696103d03660046117c9565b610d63565b3480156103e157600080fd5b506000546001600160a01b031661023e565b3480156103ff57600080fd5b50610211610d70565b6102696104163660046117c9565b610d7f565b34801561042757600080fd5b506102696104363660046116e8565b610eea565b61026961044936600461166f565b610f56565b34801561045a57600080fd5b50610269610fa0565b34801561046f57600080fd5b5061021161047e3660046117c9565b610fbc565b34801561048f57600080fd5b5061028060095481565b3480156104a557600080fd5b506101e76104b4366004611602565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156104ee57600080fd5b50610280600a5481565b34801561050457600080fd5b506102696105133660046115e8565b611041565b60006301ffc9a760e01b6001600160e01b03198316148061054957506380ac58cd60e01b6001600160e01b03198316145b806105645750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461057990611946565b80601f01602080910402602001604051908101604052809291908181526020018280546105a590611946565b80156105f25780601f106105c7576101008083540402835291602001916105f2565b820191906000526020600020905b8154815290600101906020018083116105d557829003601f168201915b5050505050905090565b6000610607826110b7565b610624576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061064b82610c01565b9050336001600160a01b038216146106845761066781336104b4565b610684576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006106eb826110df565b9050836001600160a01b0316816001600160a01b03161461071e5760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b0388169091141761076b5761074e86336104b4565b61076b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661079257604051633a954ecd60e21b815260040160405180910390fd5b801561079d57600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b831661082857600184016000818152600560205260409020546108265760015481146108265760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610879611140565b600955565b610886611140565b60405133904780156108fc02916000818181858888f193505050506108aa57600080fd5b565b6108c783838360405180602001604052806000815250610f56565b505050565b6108d4611140565b80516108e790600b9060208401906114bd565b5050565b6108f3611140565b4773394ee2f4fba198aa953ffd8861fbd2dee1ba830e7345d3590e45a4c491f0163567c260c9aa100d5e6c737fe06d2c4d5e42d8506fda55085e782f12805b3e732b5920c422e9be335d2d8c375700cbc6d525e24373b8f5d071714a15e99b2fcfcb49666e27073e7c85600085606461096d89602b6118fb565b61097791906118db565b604051600081818185875af1925050503d80600081146109b3576040519150601f19603f3d011682016040523d82523d6000602084013e6109b8565b606091505b505080915050806109e45760405162461bcd60e51b81526004016109db9061188c565b60405180910390fd5b6001600160a01b03851660646109fb89600f6118fb565b610a0591906118db565b604051600081818185875af1925050503d8060008114610a41576040519150601f19603f3d011682016040523d82523d6000602084013e610a46565b606091505b50508091505080610a695760405162461bcd60e51b81526004016109db9061188c565b6001600160a01b0384166064610a8089600e6118fb565b610a8a91906118db565b604051600081818185875af1925050503d8060008114610ac6576040519150601f19603f3d011682016040523d82523d6000602084013e610acb565b606091505b50508091505080610aee5760405162461bcd60e51b81526004016109db9061188c565b6001600160a01b0383166064610b0589600e6118fb565b610b0f91906118db565b604051600081818185875af1925050503d8060008114610b4b576040519150601f19603f3d011682016040523d82523d6000602084013e610b50565b606091505b50508091505080610b735760405162461bcd60e51b81526004016109db9061188c565b6001600160a01b0382166064610b8a89600e6118fb565b610b9491906118db565b604051600081818185875af1925050503d8060008114610bd0576040519150601f19603f3d011682016040523d82523d6000602084013e610bd5565b606091505b50508091505080610bf85760405162461bcd60e51b81526004016109db9061188c565b50505050505050565b6000610564826110df565b600b8054610c1990611946565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4590611946565b8015610c925780601f10610c6757610100808354040283529160200191610c92565b820191906000526020600020905b815481529060010190602001808311610c7557829003601f168201915b505050505081565b60006001600160a01b038216610cc3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610cf1611140565b6108aa600061119a565b610d03611140565b6001600160a01b038216610d595760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420616464206e756c6c206164647265737300000000000000000060448201526064016109db565b6108e782826111ea565b610d6b611140565b600a55565b60606004805461057990611946565b600c5460ff16610dd15760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632073616c6520686173206e6f742073746172746564000000000060448201526064016109db565b60095481610de26002546001540390565b610dec91906118c3565b1115610e305760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b60448201526064016109db565b60008111610e805760405162461bcd60e51b815260206004820152601760248201527f4d757374206d696e74206174206c65617374206f6e652e00000000000000000060448201526064016109db565b3481600a54610e8f91906118fb565b1115610edd5760405162461bcd60e51b815260206004820152601760248201527f45544820616d6f756e7420697320696e636f727265637400000000000000000060448201526064016109db565b610ee733826111ea565b50565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f618484846106e0565b6001600160a01b0383163b15610f9a57610f7d84848484611204565b610f9a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610fa8611140565b600c805460ff19811660ff90911615179055565b6060610fc7826110b7565b610fe457604051630a14c4b560e41b815260040160405180910390fd5b6000610fee6112fc565b905080516000141561100f576040518060200160405280600081525061103a565b806110198461130b565b60405160200161102a92919061180d565b6040516020818303038152906040525b9392505050565b611049611140565b6001600160a01b0381166110ae5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109db565b610ee78161119a565b600060015482108015610564575050600090815260056020526040902054600160e01b161590565b60008160015481101561112757600081815260056020526040902054600160e01b8116611125575b8061103a575060001901600081815260056020526040902054611107565b505b604051636f96cda160e11b815260040160405180910390fd5b6000546001600160a01b031633146108aa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109db565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6108e7828260405180602001604052806000815250611359565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061123990339089908890889060040161183c565b602060405180830381600087803b15801561125357600080fd5b505af1925050508015611283575060408051601f3d908101601f1916820190925261128091810190611767565b60015b6112de573d8080156112b1576040519150601f19603f3d011682016040523d82523d6000602084013e6112b6565b606091505b5080516112d6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b805461057990611946565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a90048061134257611347565b611325565b50819003601f19909101908152919050565b61136383836113c6565b6001600160a01b0383163b156108c7576001548281035b61138d6000868380600101945086611204565b6113aa576040516368d2bf6b60e11b815260040160405180910390fd5b81811061137a5781600154146113bf57600080fd5b5050505050565b600154816113e75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461149657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161145e565b50816114b457604051622e076360e81b815260040160405180910390fd5b60015550505050565b8280546114c990611946565b90600052602060002090601f0160209004810192826114eb5760008555611531565b82601f1061150457805160ff1916838001178555611531565b82800160010185558215611531579182015b82811115611531578251825591602001919060010190611516565b5061153d929150611541565b5090565b5b8082111561153d5760008155600101611542565b600067ffffffffffffffff8084111561157157611571611997565b604051601f8501601f19908116603f0116810190828211818310171561159957611599611997565b816040528093508581528686860111156115b257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146115e357600080fd5b919050565b6000602082840312156115f9578081fd5b61103a826115cc565b60008060408385031215611614578081fd5b61161d836115cc565b915061162b602084016115cc565b90509250929050565b600080600060608486031215611648578081fd5b611651846115cc565b925061165f602085016115cc565b9150604084013590509250925092565b60008060008060808587031215611684578081fd5b61168d856115cc565b935061169b602086016115cc565b925060408501359150606085013567ffffffffffffffff8111156116bd578182fd5b8501601f810187136116cd578182fd5b6116dc87823560208401611556565b91505092959194509250565b600080604083850312156116fa578182fd5b611703836115cc565b915060208301358015158114611717578182fd5b809150509250929050565b60008060408385031215611734578182fd5b61173d836115cc565b946020939093013593505050565b60006020828403121561175c578081fd5b813561103a816119ad565b600060208284031215611778578081fd5b815161103a816119ad565b600060208284031215611794578081fd5b813567ffffffffffffffff8111156117aa578182fd5b8201601f810184136117ba578182fd5b6112f484823560208401611556565b6000602082840312156117da578081fd5b5035919050565b600081518084526117f981602086016020860161191a565b601f01601f19169290920160200192915050565b6000835161181f81846020880161191a565b83519083019061183381836020880161191a565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061186f908301846117e1565b9695505050505050565b60208152600061103a60208301846117e1565b60208082526018908201527f5472616e73616374696f6e20556e7375636365737366756c0000000000000000604082015260600190565b600082198211156118d6576118d6611981565b500190565b6000826118f657634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561191557611915611981565b500290565b60005b8381101561193557818101518382015260200161191d565b83811115610f9a5750506000910152565b600181811c9082168061195a57607f821691505b6020821081141561197b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ee757600080fdfea2646970667358221220459e0332f72e5ce7969d809deca7fc5faf3c19dfd64c4dfeb2be4848d21e137f64736f6c63430008040033
Deployed Bytecode Sourcemap
274:2821:8:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9410:639:1;;;;;;;;;;-1:-1:-1;9410:639:1;;;;;:::i;:::-;;:::i;:::-;;;6006:14:9;;5999:22;5981:41;;5969:2;5954:18;9410:639:1;;;;;;;;10312:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;16803:218::-;;;;;;;;;;-1:-1:-1;16803:218:1;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5304:32:9;;;5286:51;;5274:2;5259:18;16803:218:1;5241:102:9;16236:408:1;;;;;;:::i;:::-;;:::i;:::-;;6063:323;;;;;;;;;;-1:-1:-1;6337:12:1;;6321:13;;:28;6063:323;;;9284:25:9;;;9272:2;9257:18;6063:323:1;9239:76:9;20442:2825:1;;;;;;:::i;:::-;;:::i;1463:94:8:-;;;;;;;;;;-1:-1:-1;1463:94:8;;;;;:::i;:::-;;:::i;2972:120::-;;;:::i;23363:193:1:-;;;;;;:::i;:::-;;:::i;1680:100:8:-;;;;;;;;;;-1:-1:-1;1680:100:8;;;;;:::i;:::-;;:::i;1786:1178::-;;;;;;;;;;;;;:::i;438:23::-;;;;;;;;;;-1:-1:-1;438:23:8;;;;;;;;11705:152:1;;;;;;;;;;-1:-1:-1;11705:152:1;;;;;:::i;:::-;;:::i;410:21:8:-;;;;;;;;;;;;;:::i;7247:233:1:-;;;;;;;;;;-1:-1:-1;7247:233:1;;;;;:::i;:::-;;:::i;1884:103:7:-;;;;;;;;;;;;;:::i;1034:204:8:-;;;;;;;;;;-1:-1:-1;1034:204:8;;;;;:::i;:::-;;:::i;1565:107::-;;;;;;;;;;-1:-1:-1;1565:107:8;;;;;:::i;:::-;;:::i;1236:87:7:-;;;;;;;;;;-1:-1:-1;1282:7:7;1309:6;-1:-1:-1;;;;;1309:6:7;1236:87;;10488:104:1;;;;;;;;;;;;;:::i;662:364:8:-;;;;;;:::i;:::-;;:::i;17361:234:1:-;;;;;;;;;;-1:-1:-1;17361:234:1;;;;;:::i;:::-;;:::i;24154:407::-;;;;;;:::i;:::-;;:::i;1246:93:8:-;;;;;;;;;;;;;:::i;10698:318:1:-;;;;;;;;;;-1:-1:-1;10698:318:1;;;;;:::i;:::-;;:::i;326:31:8:-;;;;;;;;;;;;;;;;17752:164:1;;;;;;;;;;-1:-1:-1;17752:164:1;;;;;:::i;:::-;-1:-1:-1;;;;;17873:25:1;;;17849:4;17873:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;17752:164;365:37:8;;;;;;;;;;;;;;;;2142:201:7;;;;;;;;;;-1:-1:-1;2142:201:7;;;;;:::i;:::-;;:::i;9410:639:1:-;9495:4;-1:-1:-1;;;;;;;;;9819:25:1;;;;:102;;-1:-1:-1;;;;;;;;;;9896:25:1;;;9819:102;:179;;;-1:-1:-1;;;;;;;;;;9973:25:1;;;9819:179;9799:199;9410:639;-1:-1:-1;;9410:639:1:o;10312:100::-;10366:13;10399:5;10392:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10312:100;:::o;16803:218::-;16879:7;16904:16;16912:7;16904;:16::i;:::-;16899:64;;16929:34;;-1:-1:-1;;;16929:34:1;;;;;;;;;;;16899:64;-1:-1:-1;16983:24:1;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;16983:30:1;;16803:218::o;16236:408::-;16325:13;16341:16;16349:7;16341;:16::i;:::-;16325:32;-1:-1:-1;40569:10:1;-1:-1:-1;;;;;16374:28:1;;;16370:175;;16422:44;16439:5;40569:10;17752:164;:::i;16422:44::-;16417:128;;16494:35;;-1:-1:-1;;;16494:35:1;;;;;;;;;;;16417:128;16557:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;16557:35:1;-1:-1:-1;;;;;16557:35:1;;;;;;;;;16608:28;;16557:24;;16608:28;;;;;;;16236:408;;;:::o;20442:2825::-;20584:27;20614;20633:7;20614:18;:27::i;:::-;20584:57;;20699:4;-1:-1:-1;;;;;20658:45:1;20674:19;-1:-1:-1;;;;;20658:45:1;;20654:86;;20712:28;;-1:-1:-1;;;20712:28:1;;;;;;;;;;;20654:86;20754:27;19550:24;;;:15;:24;;;;;19778:26;;40569:10;19175:30;;;-1:-1:-1;;;;;18868:28:1;;19153:20;;;19150:56;20940:180;;21033:43;21050:4;40569:10;17752:164;:::i;21033:43::-;21028:92;;21085:35;;-1:-1:-1;;;21085:35:1;;;;;;;;;;;21028:92;-1:-1:-1;;;;;21137:16:1;;21133:52;;21162:23;;-1:-1:-1;;;21162:23:1;;;;;;;;;;;21133:52;21334:15;21331:2;;;21474:1;21453:19;21446:30;21331:2;-1:-1:-1;;;;;21871:24:1;;;;;;;:18;:24;;;;;;21869:26;;-1:-1:-1;;21869:26:1;;;21940:22;;;;;;;;;21938:24;;-1:-1:-1;21938:24:1;;;15094:11;15069:23;15065:41;15052:63;-1:-1:-1;;;15052:63:1;22233:26;;;;:17;:26;;;;;:175;-1:-1:-1;;;22528:47:1;;22524:627;;22633:1;22623:11;;22601:19;22756:30;;;:17;:30;;;;;;22752:384;;22894:13;;22879:11;:28;22875:242;;23041:30;;;;:17;:30;;;;;:52;;;22875:242;22524:627;;23198:7;23194:2;-1:-1:-1;;;;;23179:27:1;23188:4;-1:-1:-1;;;;;23179:27:1;;;;;;;;;;;20442:2825;;;;;;:::o;1463:94:8:-;1122:13:7;:11;:13::i;:::-;1531:9:8::1;:18:::0;1463:94::o;2972:120::-;1122:13:7;:11;:13::i;:::-;3036:47:8::1;::::0;3044:10:::1;::::0;3061:21:::1;3036:47:::0;::::1;;;::::0;::::1;::::0;;;3061:21;3044:10;3036:47;::::1;;;;;;3028:56;;;::::0;::::1;;2972:120::o:0;23363:193:1:-;23509:39;23526:4;23532:2;23536:7;23509:39;;;;;;;;;;;;:16;:39::i;:::-;23363:193;;;:::o;1680:100:8:-;1122:13:7;:11;:13::i;:::-;1754:18:8;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;1680:100:::0;:::o;1786:1178::-;1122:13:7;:11;:13::i;:::-;1863:21:8::1;1920:42;1999;2078;2157;2236;1842:18;1920:42:::0;2367:3:::1;2350:15;1863:21:::0;2363:2:::1;2350:15;:::i;:::-;2349:21;;;;:::i;:::-;2329:47;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2315:61;;;;;2395:7;2387:44;;;;-1:-1:-1::0;;;2387:44:8::1;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1::0;;;;;2458:11:8;::::1;2496:3;2479:15;:10:::0;2492:2:::1;2479:15;:::i;:::-;2478:21;;;;:::i;:::-;2458:47;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2444:61;;;;;2524:7;2516:44;;;;-1:-1:-1::0;;;2516:44:8::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2587:11:8;::::1;2625:3;2608:15;:10:::0;2621:2:::1;2608:15;:::i;:::-;2607:21;;;;:::i;:::-;2587:47;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2573:61;;;;;2653:7;2645:44;;;;-1:-1:-1::0;;;2645:44:8::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2716:11:8;::::1;2754:3;2737:15;:10:::0;2750:2:::1;2737:15;:::i;:::-;2736:21;;;;:::i;:::-;2716:47;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2702:61;;;;;2782:7;2774:44;;;;-1:-1:-1::0;;;2774:44:8::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2853:11:8;::::1;2891:3;2874:15;:10:::0;2887:2:::1;2874:15;:::i;:::-;2873:21;;;;:::i;:::-;2853:47;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2839:61;;;;;2919:7;2911:44;;;;-1:-1:-1::0;;;2911:44:8::1;;;;;;;:::i;:::-;1146:1:7;;;;;;;1786:1178:8:o:0;11705:152:1:-;11777:7;11820:27;11839:7;11820:18;:27::i;410:21:8:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7247:233:1:-;7319:7;-1:-1:-1;;;;;7343:19:1;;7339:60;;7371:28;;-1:-1:-1;;;7371:28:1;;;;;;;;;;;7339:60;-1:-1:-1;;;;;;7417:25:1;;;;;:18;:25;;;;;;1406:13;7417:55;;7247:233::o;1884:103:7:-;1122:13;:11;:13::i;:::-;1949:30:::1;1976:1;1949:18;:30::i;1034:204:8:-:0;1122:13:7;:11;:13::i;:::-;-1:-1:-1;;;;;1132:23:8;::::1;1124:59;;;::::0;-1:-1:-1;;;1124:59:8;;8988:2:9;1124:59:8::1;::::0;::::1;8970:21:9::0;9027:2;9007:18;;;9000:30;9066:25;9046:18;;;9039:53;9109:18;;1124:59:8::1;8960:173:9::0;1124:59:8::1;1194:36;1204:9;1215:14;1194:9;:36::i;1565:107::-:0;1122:13:7;:11;:13::i;:::-;1639:9:8::1;:25:::0;1565:107::o;10488:104:1:-;10544:13;10577:7;10570:14;;;;;:::i;662:364:8:-;591:11;;;;583:51;;;;-1:-1:-1;;;583:51:8;;6866:2:9;583:51:8;;;6848:21:9;6905:2;6885:18;;;6878:30;6944:29;6924:18;;;6917:57;6991:18;;583:51:8;6838:177:9;583:51:8;786:9:::1;;768:14;752:13;6337:12:1::0;;6321:13;;:28;;6063:323;752:13:8::1;:30;;;;:::i;:::-;:43;;744:75;;;::::0;-1:-1:-1;;;744:75:8;;8640:2:9;744:75:8::1;::::0;::::1;8622:21:9::0;8679:2;8659:18;;;8652:30;-1:-1:-1;;;8698:18:9;;;8691:49;8757:18;;744:75:8::1;8612:169:9::0;744:75:8::1;855:1;838:14;:18;830:54;;;::::0;-1:-1:-1;;;830:54:8;;7575:2:9;830:54:8::1;::::0;::::1;7557:21:9::0;7614:2;7594:18;;;7587:30;7653:25;7633:18;;;7626:53;7696:18;;830:54:8::1;7547:173:9::0;830:54:8::1;933:9;915:14;903:9;;:26;;;;:::i;:::-;:39;;895:75;;;::::0;-1:-1:-1;;;895:75:8;;7927:2:9;895:75:8::1;::::0;::::1;7909:21:9::0;7966:2;7946:18;;;7939:30;8005:25;7985:18;;;7978:53;8048:18;;895:75:8::1;7899:173:9::0;895:75:8::1;981:37;991:10;1003:14;981:9;:37::i;:::-;662:364:::0;:::o;17361:234:1:-;40569:10;17456:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;17456:49:1;;;;;;;;;;;;:60;;-1:-1:-1;;17456:60:1;;;;;;;;;;17532:55;;5981:41:9;;;17456:49:1;;40569:10;17532:55;;5954:18:9;17532:55:1;;;;;;;17361:234;;:::o;24154:407::-;24329:31;24342:4;24348:2;24352:7;24329:12;:31::i;:::-;-1:-1:-1;;;;;24375:14:1;;;:19;24371:183;;24414:56;24445:4;24451:2;24455:7;24464:5;24414:30;:56::i;:::-;24409:145;;24498:40;;-1:-1:-1;;;24498:40:1;;;;;;;;;;;24409:145;24154:407;;;;:::o;1246:93:8:-;1122:13:7;:11;:13::i;:::-;1320:11:8::1;::::0;;-1:-1:-1;;1305:26:8;::::1;1320:11;::::0;;::::1;1319:12;1305:26;::::0;;1246:93::o;10698:318:1:-;10771:13;10802:16;10810:7;10802;:16::i;:::-;10797:59;;10827:29;;-1:-1:-1;;;10827:29:1;;;;;;;;;;;10797:59;10869:21;10893:10;:8;:10::i;:::-;10869:34;;10927:7;10921:21;10946:1;10921:26;;:87;;;;;;;;;;;;;;;;;10974:7;10983:18;10993:7;10983:9;:18::i;:::-;10957:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10921:87;10914:94;10698:318;-1:-1:-1;;;10698:318:1:o;2142:201:7:-;1122:13;:11;:13::i;:::-;-1:-1:-1;;;;;2231:22:7;::::1;2223:73;;;::::0;-1:-1:-1;;;2223:73:7;;6459:2:9;2223:73:7::1;::::0;::::1;6441:21:9::0;6498:2;6478:18;;;6471:30;6537:34;6517:18;;;6510:62;-1:-1:-1;;;6588:18:9;;;6581:36;6634:19;;2223:73:7::1;6431:228:9::0;2223:73:7::1;2307:28;2326:8;2307:18;:28::i;18174:282:1:-:0;18239:4;18329:13;;18319:7;:23;18276:153;;;;-1:-1:-1;;18380:26:1;;;;:17;:26;;;;;;-1:-1:-1;;;18380:44:1;:49;;18174:282::o;12860:1275::-;12927:7;12962;13064:13;;13057:4;:20;13053:1015;;;13102:14;13119:23;;;:17;:23;;;;;;-1:-1:-1;;;13208:24:1;;13204:845;;13873:113;13880:11;13873:113;;-1:-1:-1;;;13951:6:1;13933:25;;;;:17;:25;;;;;;13873:113;;13204:845;13053:1015;;14096:31;;-1:-1:-1;;;14096:31:1;;;;;;;;;;;1401:132:7;1282:7;1309:6;-1:-1:-1;;;;;1309:6:7;40569:10:1;1465:23:7;1457:68;;;;-1:-1:-1;;;1457:68:7;;8279:2:9;1457:68:7;;;8261:21:9;;;8298:18;;;8291:30;8357:34;8337:18;;;8330:62;8409:18;;1457:68:7;8251:182:9;2503:191:7;2577:16;2596:6;;-1:-1:-1;;;;;2613:17:7;;;-1:-1:-1;;;;;;2613:17:7;;;;;;2646:40;;2596:6;;;;;;;2646:40;;2577:16;2646:40;2503:191;;:::o;34314:112:1:-;34391:27;34401:2;34405:8;34391:27;;;;;;;;;;;;:9;:27::i;26645:716::-;26829:88;;-1:-1:-1;;;26829:88:1;;26808:4;;-1:-1:-1;;;;;26829:45:1;;;;;:88;;40569:10;;26896:4;;26902:7;;26911:5;;26829:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26829:88:1;;;;;;;;-1:-1:-1;;26829:88:1;;;;;;;;;;;;:::i;:::-;;;26825:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27112:13:1;;27108:235;;27158:40;;-1:-1:-1;;;27158:40:1;;;;;;;;;;;27108:235;27301:6;27295:13;27286:6;27282:2;27278:15;27271:38;26825:529;-1:-1:-1;;;;;;26988:64:1;-1:-1:-1;;;26988:64:1;;-1:-1:-1;26825:529:1;26645:716;;;;;;:::o;1347:108:8:-;1407:13;1440:7;1433:14;;;;;:::i;40689:1745:1:-;40754:17;41188:4;41181;41175:11;41171:22;41280:1;41274:4;41267:15;41355:4;41352:1;41348:12;41341:19;;;41437:1;41432:3;41425:14;41541:3;41780:5;41762:428;41828:1;41823:3;41819:11;41812:18;;41999:2;41993:4;41989:13;41985:2;41981:22;41976:3;41968:36;42093:2;42083:13;;;42150:2;;42168:5;;42150:2;41762:428;;;-1:-1:-1;42220:13:1;;;-1:-1:-1;;42335:14:1;;;42397:19;;;42335:14;40793:1634;-1:-1:-1;40793:1634:1:o;33541:689::-;33672:19;33678:2;33682:8;33672:5;:19::i;:::-;-1:-1:-1;;;;;33733:14:1;;;:19;33729:483;;33787:13;;33835:14;;;33868:233;33899:62;33938:1;33942:2;33946:7;;;;;;33955:5;33899:30;:62::i;:::-;33894:167;;33997:40;;-1:-1:-1;;;33997:40:1;;;;;;;;;;;33894:167;34096:3;34088:5;:11;33868:233;;34183:3;34166:13;;:20;34162:34;;34188:8;;;34162:34;33729:483;;33541:689;;;:::o;27823:2966::-;27919:13;;27947;27943:44;;27969:18;;-1:-1:-1;;;27969:18:1;;;;;;;;;;;27943:44;-1:-1:-1;;;;;28475:22:1;;;;;;:18;:22;;;;1544:2;28475:22;;;:71;;28513:32;28501:45;;28475:71;;;28789:31;;;:17;:31;;;;;-1:-1:-1;15525:15:1;;15499:24;15495:46;15094:11;15069:23;15065:41;15062:52;15052:63;;28789:173;;29024:23;;;;28789:31;;28475:22;;29789:25;28475:22;;29642:335;30303:1;30289:12;30285:20;30243:346;30344:3;30335:7;30332:16;30243:346;;30562:7;30552:8;30549:1;30522:25;30519:1;30516;30511:59;30397:1;30384:15;30243:346;;;-1:-1:-1;30622:13:1;30618:45;;30644:19;;-1:-1:-1;;;30644:19:1;;;;;;;;;;;30618:45;30680:13;:19;-1:-1:-1;23363:193:1;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:9;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:9;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:9;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:196::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;1029:270::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;1381:6;1389;1397;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;1742:6;1750;1758;1766;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:9;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;2788:6;2796;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:9:o;2989:255::-;3047:6;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3165:9;3152:23;3184:30;3208:5;3184:30;:::i;3249:259::-;3318:6;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:30;3472:5;3448:30;:::i;3513:480::-;3582:6;3635:2;3623:9;3614:7;3610:23;3606:32;3603:2;;;3656:6;3648;3641:22;3603:2;3701:9;3688:23;3734:18;3726:6;3723:30;3720:2;;;3771:6;3763;3756:22;3720:2;3799:22;;3852:4;3844:13;;3840:27;-1:-1:-1;3830:2:9;;3886:6;3878;3871:22;3830:2;3914:73;3979:7;3974:2;3961:16;3956:2;3952;3948:11;3914:73;:::i;3998:190::-;4057:6;4110:2;4098:9;4089:7;4085:23;4081:32;4078:2;;;4131:6;4123;4116:22;4078:2;-1:-1:-1;4159:23:9;;4068:120;-1:-1:-1;4068:120:9:o;4193:257::-;4234:3;4272:5;4266:12;4299:6;4294:3;4287:19;4315:63;4371:6;4364:4;4359:3;4355:14;4348:4;4341:5;4337:16;4315:63;:::i;:::-;4432:2;4411:15;-1:-1:-1;;4407:29:9;4398:39;;;;4439:4;4394:50;;4242:208;-1:-1:-1;;4242:208:9:o;4455:470::-;4634:3;4672:6;4666:13;4688:53;4734:6;4729:3;4722:4;4714:6;4710:17;4688:53;:::i;:::-;4804:13;;4763:16;;;;4826:57;4804:13;4763:16;4860:4;4848:17;;4826:57;:::i;:::-;4899:20;;4642:283;-1:-1:-1;;;;4642:283:9:o;5348:488::-;-1:-1:-1;;;;;5617:15:9;;;5599:34;;5669:15;;5664:2;5649:18;;5642:43;5716:2;5701:18;;5694:34;;;5764:3;5759:2;5744:18;;5737:31;;;5542:4;;5785:45;;5810:19;;5802:6;5785:45;:::i;:::-;5777:53;5551:285;-1:-1:-1;;;;;;5551:285:9:o;6033:219::-;6182:2;6171:9;6164:21;6145:4;6202:44;6242:2;6231:9;6227:18;6219:6;6202:44;:::i;7020:348::-;7222:2;7204:21;;;7261:2;7241:18;;;7234:30;7300:26;7295:2;7280:18;;7273:54;7359:2;7344:18;;7194:174::o;9320:128::-;9360:3;9391:1;9387:6;9384:1;9381:13;9378:2;;;9397:18;;:::i;:::-;-1:-1:-1;9433:9:9;;9368:80::o;9453:217::-;9493:1;9519;9509:2;;-1:-1:-1;;;9544:31:9;;9598:4;9595:1;9588:15;9626:4;9551:1;9616:15;9509:2;-1:-1:-1;9655:9:9;;9499:171::o;9675:168::-;9715:7;9781:1;9777;9773:6;9769:14;9766:1;9763:21;9758:1;9751:9;9744:17;9740:45;9737:2;;;9788:18;;:::i;:::-;-1:-1:-1;9828:9:9;;9727:116::o;9848:258::-;9920:1;9930:113;9944:6;9941:1;9938:13;9930:113;;;10020:11;;;10014:18;10001:11;;;9994:39;9966:2;9959:10;9930:113;;;10061:6;10058:1;10055:13;10052:2;;;-1:-1:-1;;10096:1:9;10078:16;;10071:27;9901:205::o;10111:380::-;10190:1;10186:12;;;;10233;;;10254:2;;10308:4;10300:6;10296:17;10286:27;;10254:2;10361;10353:6;10350:14;10330:18;10327:38;10324:2;;;10407:10;10402:3;10398:20;10395:1;10388:31;10442:4;10439:1;10432:15;10470:4;10467:1;10460:15;10324:2;;10166:325;;;:::o;10496:127::-;10557:10;10552:3;10548:20;10545:1;10538:31;10588:4;10585:1;10578:15;10612:4;10609:1;10602:15;10628:127;10689:10;10684:3;10680:20;10677:1;10670:31;10720:4;10717:1;10710:15;10744:4;10741:1;10734:15;10760:131;-1:-1:-1;;;;;;10834:32:9;;10824:43;;10814:2;;10881:1;10878;10871:12
Swarm Source
ipfs://459e0332f72e5ce7969d809deca7fc5faf3c19dfd64c4dfeb2be4848d21e137f
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.01
Net Worth in ETH
0.000003
Token Allocations
POL
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| POL | 100.00% | $0.101122 | 0.05 | $0.005056 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.