Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Source Code
NFT
Overview
Max Total Supply
164 aut
Holders
43
Transfers
-
0
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
AUTISMFINEST
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity Multiple files format)
//
// db 88 88 888888 88 .dP"Y8 8b d8
// dPYb 88 88 88 88 `Ybo." 88b d88
// dP__Yb Y8 8P 88 88 o.`Y8b 88YbdP88
//dP""""Yb `YbodP' 88 88 8bodP' 88 YY 88
// 888888 88 88b 88 888888 .dP"Y8 888888
// 88__ 88 88Yb88 88__ `Ybo." 88
// 88"" 88 88 Y88 88"" o.`Y8b 88
// 88 88 88 Y8 888888 8bodP' 88
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import {Ownable} from "Ownable.sol";
import {ERC721A} from "ERC721A.sol";
import {OperatorFilterer} from "OperatorFilterer.sol";
error MintingNotLive();
error MintExceedsMaxSupply();
error FreeMintLimitReached();
error PaidMintLimitReached();
error FreeLimitReached();
error InsufficientPayment();
contract AUTISMFINEST is ERC721A, OperatorFilterer, Ownable {
// Variables
bool public MintingLive = false;
uint256 public MAX_SUPPLY = 1111;
uint256 public free_max_supply = 111;
uint256 public MAX_PER_TX_FREE = 1;
uint256 public PAID_Mint_PRICE = 0.005 ether;
uint256 public PAID_Mint_LIMIT = 10;
string public baseURI;
bool public operatorFilteringEnabled;
// Constructor
constructor(string memory baseURI_) ERC721A("$AUTISM FINEST", "aut") {
_registerForOperatorFiltering();
operatorFilteringEnabled = true;
baseURI = baseURI_;
}
function setApprovalForAll(
address operator,
bool approved
) public override onlyAllowedOperatorApproval(operator) {
super.setApprovalForAll(operator, approved);
}
function approve(
address operator,
uint256 tokenId
) public payable override onlyAllowedOperatorApproval(operator) {
super.approve(operator, tokenId);
}
function transferFrom(
address from,
address to,
uint256 tokenId
) public payable override onlyAllowedOperator(from) {
super.transferFrom(from, to, tokenId);
}
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public payable override onlyAllowedOperator(from) {
super.safeTransferFrom(from, to, tokenId);
}
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory data
) public payable override onlyAllowedOperator(from) {
super.safeTransferFrom(from, to, tokenId, data);
}
function setOperatorFilteringEnabled(bool value) public onlyOwner {
operatorFilteringEnabled = value;
}
function _operatorFilteringEnabled() internal view override returns (bool) {
return operatorFilteringEnabled;
}
// Modifiers
modifier nonContract() {
require(tx.origin == msg.sender, "Sorry Contract Mintors");
_;
}
// Mint
function paused() public onlyOwner {
MintingLive = !MintingLive;
}
function MINT(uint256 qty) external payable nonContract {
if (!MintingLive) revert MintingNotLive();
if (_totalMinted() + qty > MAX_SUPPLY) revert MintExceedsMaxSupply();
if (qty > PAID_Mint_LIMIT) revert PaidMintLimitReached();
if(free_max_supply >= totalSupply()){
require(MAX_PER_TX_FREE >= qty , "Excess max per free tx");
}else{
require(PAID_Mint_LIMIT >= qty , "Excess max per paid tx");
require(qty * PAID_Mint_PRICE == msg.value, "Invalid funds provided");
}
_mint(msg.sender, qty);
}
function collectreserves() external onlyOwner {
_mint(msg.sender, 50);
}
function airdrop(address addr, uint256 amount) public onlyOwner {
require(totalSupply() + amount <= MAX_SUPPLY);
_safeMint(addr, amount);
}
function configPAID_Mint_PRICE(uint256 newPAID_Mint_PRICE) public onlyOwner {
PAID_Mint_PRICE = newPAID_Mint_PRICE;
}
function configfree_max_supply(uint256 newfree_max_supply) public onlyOwner {
free_max_supply = newfree_max_supply;
}
// Token URI
function _baseURI() internal view virtual override returns (string memory) {
return baseURI;
}
function setBaseURI(string memory uri) external onlyOwner {
baseURI = uri;
}
// Withdraw
function withdraw() external onlyOwner {
require(
payable(owner()).send(address(this).balance),
"Fail"
);
}
}
// 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;
/**
* @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
pragma solidity ^0.8.4;
/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
/// @dev The default OpenSea operator blocklist subscription.
address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;
/// @dev The OpenSea operator filter registry.
address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E;
/// @dev Registers the current contract to OpenSea's operator filter,
/// and subscribe to the default OpenSea operator blocklist.
/// Note: Will not revert nor update existing settings for repeated registration.
function _registerForOperatorFiltering() internal virtual {
_registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
}
/// @dev Registers the current contract to OpenSea's operator filter.
/// Note: Will not revert nor update existing settings for repeated registration.
function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe)
internal
virtual
{
/// @solidity memory-safe-assembly
assembly {
let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`.
// Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty.
subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy))
for {} iszero(subscribe) {} {
if iszero(subscriptionOrRegistrantToCopy) {
functionSelector := 0x4420e486 // `register(address)`.
break
}
functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`.
break
}
// Store the function selector.
mstore(0x00, shl(224, functionSelector))
// Store the `address(this)`.
mstore(0x04, address())
// Store the `subscriptionOrRegistrantToCopy`.
mstore(0x24, subscriptionOrRegistrantToCopy)
// Register into the registry.
if iszero(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x04)) {
// If the function selector has not been overwritten,
// it is an out-of-gas error.
if eq(shr(224, mload(0x00)), functionSelector) {
// To prevent gas under-estimation.
revert(0, 0)
}
}
// Restore the part of the free memory pointer that was overwritten,
// which is guaranteed to be zero, because of Solidity's memory size limits.
mstore(0x24, 0)
}
}
/// @dev Modifier to guard a function and revert if the caller is a blocked operator.
modifier onlyAllowedOperator(address from) virtual {
if (from != msg.sender) {
if (!_isPriorityOperator(msg.sender)) {
if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender);
}
}
_;
}
/// @dev Modifier to guard a function from approving a blocked operator..
modifier onlyAllowedOperatorApproval(address operator) virtual {
if (!_isPriorityOperator(operator)) {
if (_operatorFilteringEnabled()) _revertIfBlocked(operator);
}
_;
}
/// @dev Helper function that reverts if the `operator` is blocked by the registry.
function _revertIfBlocked(address operator) private view {
/// @solidity memory-safe-assembly
assembly {
// Store the function selector of `isOperatorAllowed(address,address)`,
// shifted left by 6 bytes, which is enough for 8tb of memory.
// We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL).
mstore(0x00, 0xc6171134001122334455)
// Store the `address(this)`.
mstore(0x1a, address())
// Store the `operator`.
mstore(0x3a, operator)
// `isOperatorAllowed` always returns true if it does not revert.
if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) {
// Bubble up the revert if the staticcall reverts.
returndatacopy(0x00, 0x00, returndatasize())
revert(0x00, returndatasize())
}
// We'll skip checking if `from` is inside the blacklist.
// Even though that can block transferring out of wrapper contracts,
// we don't want tokens to be stuck.
// Restore the part of the free memory pointer that was overwritten,
// which is guaranteed to be zero, if less than 8tb of memory is used.
mstore(0x3a, 0)
}
}
/// @dev For deriving contracts to override, so that operator filtering
/// can be turned on / off.
/// Returns true by default.
function _operatorFilteringEnabled() internal view virtual returns (bool) {
return true;
}
/// @dev For deriving contracts to override, so that preferred marketplaces can
/// skip operator filtering, helping users save gas.
/// Returns false for all inputs by default.
function _isPriorityOperator(address) internal view virtual returns (bool) {
return false;
}
}// 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":[{"internalType":"string","name":"baseURI_","type":"string"}],"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":"MintExceedsMaxSupply","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintingNotLive","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"PaidMintLimitReached","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":[],"name":"MAX_PER_TX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"MINT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"MintingLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAID_Mint_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAID_Mint_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":[],"name":"collectreserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPAID_Mint_PRICE","type":"uint256"}],"name":"configPAID_Mint_PRICE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newfree_max_supply","type":"uint256"}],"name":"configfree_max_supply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"free_max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"paused","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040526008805460ff60a01b19169055610457600955606f600a9081556001600b556611c37937e08000600c55600d553480156200003d575f80fd5b5060405162001d2f38038062001d2f8339810160408190526200006091620001fd565b6040518060400160405280600e81526020016d091055551254d3481192539154d560921b81525060405180604001604052806003815260200162185d5d60ea1b8152508160029081620000b4919062000357565b506003620000c3828262000357565b50505f805550620000d43362000101565b620000de62000152565b600f805460ff19166001179055600e620000f9828262000357565b50506200041f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b62000173733cc6cdda760b79bafa08df41ecfa224f810dceb6600162000175565b565b6001600160a01b0390911690637d3e3dbe81620001a557826200019e5750634420e486620001a5565b5063a0af29035b8060e01b5f52306004528260245260045f60445f806daaeb6d7670e522a718067333cd4e5af1620001e057805f5160e01c03620001e0575f80fd5b505f6024525050565b634e487b7160e01b5f52604160045260245ffd5b5f60208083850312156200020f575f80fd5b82516001600160401b038082111562000226575f80fd5b818501915085601f8301126200023a575f80fd5b8151818111156200024f576200024f620001e9565b604051601f8201601f19908116603f011681019083821181831017156200027a576200027a620001e9565b81604052828152888684870101111562000292575f80fd5b5f93505b82841015620002b5578484018601518185018701529285019262000296565b5f86848301015280965050505050505092915050565b600181811c90821680620002e057607f821691505b602082108103620002ff57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000352575f81815260208120601f850160051c810160208610156200032d5750805b601f850160051c820191505b818110156200034e5782815560010162000339565b5050505b505050565b81516001600160401b03811115620003735762000373620001e9565b6200038b81620003848454620002cb565b8462000305565b602080601f831160018114620003c1575f8415620003a95750858301515b5f19600386901b1c1916600185901b1785556200034e565b5f85815260208120601f198616915b82811015620003f157888601518255948401946001909101908401620003d0565b50858210156200040f57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b611902806200042d5f395ff3fe6080604052600436106101f1575f3560e01c806370a0823111610108578063b7c0b8e81161009d578063d60fba9d1161006d578063d60fba9d14610504578063e985e9c514610519578063ea63f58914610538578063f2fde38b14610557578063fb796e6c14610576575f80fd5b8063b7c0b8e814610494578063b88d4fde146104b3578063c87b56dd146104c6578063d476de1b146104e5575f80fd5b8063952ed1e6116100d8578063952ed1e61461042d57806395d89b4114610441578063a22cb46514610455578063aff1f57314610474575f80fd5b806370a08231146103be578063715018a6146103dd5780638ba4cc3c146103f15780638da5cb5b14610410575f80fd5b806332cb6b0c1161018957806355f804b31161015957806355f804b3146103455780635c975abb146103645780636352211e1461037857806365543320146103975780636c0360eb146103aa575f80fd5b806332cb6b0c146102f45780633ccfd60b1461030957806342842e0e1461031d578063463fff7914610330575f80fd5b806318160ddd116101c457806318160ddd1461029657806323b872dd146102b757806326e987d7146102ca5780632b2b632a146102df575f80fd5b806301ffc9a7146101f557806306fdde0314610229578063081812fc1461024a578063095ea7b314610281575b5f80fd5b348015610200575f80fd5b5061021461020f3660046113e6565b61058f565b60405190151581526020015b60405180910390f35b348015610234575f80fd5b5061023d6105e0565b604051610220919061144e565b348015610255575f80fd5b50610269610264366004611460565b610670565b6040516001600160a01b039091168152602001610220565b61029461028f366004611492565b6106b2565b005b3480156102a1575f80fd5b506001545f54035b604051908152602001610220565b6102946102c53660046114ba565b6106d6565b3480156102d5575f80fd5b506102a9600a5481565b3480156102ea575f80fd5b506102a9600d5481565b3480156102ff575f80fd5b506102a960095481565b348015610314575f80fd5b5061029461070c565b61029461032b3660046114ba565b61077b565b34801561033b575f80fd5b506102a9600b5481565b348015610350575f80fd5b5061029461035f36600461157a565b6107ab565b34801561036f575f80fd5b506102946107c3565b348015610383575f80fd5b50610269610392366004611460565b6107ec565b6102946103a5366004611460565b6107f6565b3480156103b5575f80fd5b5061023d6109cb565b3480156103c9575f80fd5b506102a96103d83660046115bf565b610a57565b3480156103e8575f80fd5b50610294610aa4565b3480156103fc575f80fd5b5061029461040b366004611492565b610ab5565b34801561041b575f80fd5b506008546001600160a01b0316610269565b348015610438575f80fd5b50610294610aeb565b34801561044c575f80fd5b5061023d610afe565b348015610460575f80fd5b5061029461046f3660046115e7565b610b0d565b34801561047f575f80fd5b5060085461021490600160a01b900460ff1681565b34801561049f575f80fd5b506102946104ae366004611618565b610b2c565b6102946104c1366004611631565b610b47565b3480156104d1575f80fd5b5061023d6104e0366004611460565b610b7f565b3480156104f0575f80fd5b506102946104ff366004611460565b610c00565b34801561050f575f80fd5b506102a9600c5481565b348015610524575f80fd5b506102146105333660046116a8565b610c0d565b348015610543575f80fd5b50610294610552366004611460565b610c3a565b348015610562575f80fd5b506102946105713660046115bf565b610c47565b348015610581575f80fd5b50600f546102149060ff1681565b5f6301ffc9a760e01b6001600160e01b0319831614806105bf57506380ac58cd60e01b6001600160e01b03198316145b806105da5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105ef906116d0565b80601f016020809104026020016040519081016040528092919081815260200182805461061b906116d0565b80156106665780601f1061063d57610100808354040283529160200191610666565b820191905f5260205f20905b81548152906001019060200180831161064957829003601f168201915b5050505050905090565b5f61067a82610cbd565b610697576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b81600f5460ff16156106c7576106c781610ce2565b6106d18383610d21565b505050565b826001600160a01b03811633146106fb57600f5460ff16156106fb576106fb33610ce2565b610706848484610dbf565b50505050565b610714610f4f565b6008546040516001600160a01b03909116904780156108fc02915f818181858888f193505050506107795760405162461bcd60e51b81526004016107709060208082526004908201526311985a5b60e21b604082015260600190565b60405180910390fd5b565b826001600160a01b03811633146107a057600f5460ff16156107a0576107a033610ce2565b610706848484610fa9565b6107b3610f4f565b600e6107bf828261174d565b5050565b6107cb610f4f565b6008805460ff60a01b198116600160a01b9182900460ff1615909102179055565b5f6105da82610fc3565b32331461083e5760405162461bcd60e51b8152602060048201526016602482015275536f72727920436f6e7472616374204d696e746f727360501b6044820152606401610770565b600854600160a01b900460ff166108685760405163f28e00cd60e01b815260040160405180910390fd5b600954816108745f5490565b61087e919061181d565b111561089d57604051633e0866c760e01b815260040160405180910390fd5b600d548111156108c057604051631ad4dd0560e11b815260040160405180910390fd5b6001545f5403600a541061091e5780600b5410156109195760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440cce4caca40e8f60531b6044820152606401610770565b6109be565b80600d5410156109695760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440e0c2d2c840e8f60531b6044820152606401610770565b34600c54826109789190611830565b146109be5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610770565b6109c83382611024565b50565b600e80546109d8906116d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610a04906116d0565b8015610a4f5780601f10610a2657610100808354040283529160200191610a4f565b820191905f5260205f20905b815481529060010190602001808311610a3257829003601f168201915b505050505081565b5f6001600160a01b038216610a7f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526005602052604090205467ffffffffffffffff1690565b610aac610f4f565b6107795f61111c565b610abd610f4f565b60095481610acd6001545f540390565b610ad7919061181d565b1115610ae1575f80fd5b6107bf828261116d565b610af3610f4f565b610779336032611024565b6060600380546105ef906116d0565b81600f5460ff1615610b2257610b2281610ce2565b6106d18383611186565b610b34610f4f565b600f805460ff1916911515919091179055565b836001600160a01b0381163314610b6c57600f5460ff1615610b6c57610b6c33610ce2565b610b78858585856111f1565b5050505050565b6060610b8a82610cbd565b610ba757604051630a14c4b560e41b815260040160405180910390fd5b5f610bb0611235565b905080515f03610bce5760405180602001604052805f815250610bf9565b80610bd884611244565b604051602001610be9929190611847565b6040516020818303038152906040525b9392505050565b610c08610f4f565b600a55565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b610c42610f4f565b600c55565b610c4f610f4f565b6001600160a01b038116610cb45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610770565b6109c88161111c565b5f8054821080156105da5750505f90815260046020526040902054600160e01b161590565b69c61711340011223344555f5230601a5280603a525f80604460166daaeb6d7670e522a718067333cd4e5afa610d1a573d5f803e3d5ffd5b5f603a5250565b5f610d2b826107ec565b9050336001600160a01b03821614610d6457610d478133610c0d565b610d64576040516367d9dca160e11b815260040160405180910390fd5b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b5f610dc982610fc3565b9050836001600160a01b0316816001600160a01b031614610dfc5760405162a1148160e81b815260040160405180910390fd5b5f8281526006602052604090208054338082146001600160a01b03881690911417610e4857610e2b8633610c0d565b610e4857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610e6f57604051633a954ecd60e21b815260040160405180910390fd5b8015610e79575f82555b6001600160a01b038681165f9081526005602052604080822080545f19019055918716808252919020805460010190554260a01b17600160e11b175f85815260046020526040812091909155600160e11b84169003610f0557600184015f818152600460205260408120549003610f03575f548114610f03575f8181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b031633146107795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610770565b6106d183838360405180602001604052805f815250610b47565b5f815f5481101561100b575f8181526004602052604081205490600160e01b82169003611009575b805f03610bf957505f19015f81815260046020526040902054610feb565b505b604051636f96cda160e11b815260040160405180910390fd5b5f8054908290036110485760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383165f8181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146110f45780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a46001016110be565b50815f0361111457604051622e076360e81b815260040160405180910390fd5b5f5550505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6107bf828260405180602001604052805f815250611287565b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111fc8484846106d6565b6001600160a01b0383163b1561070657611218848484846112e9565b610706576040516368d2bf6b60e11b815260040160405180910390fd5b6060600e80546105ef906116d0565b606060a06040510180604052602081039150505f815280825b600183039250600a81066030018353600a90048061125d5750819003601f19909101908152919050565b6112918383611024565b6001600160a01b0383163b156106d1575f548281035b6112b95f8683806001019450866112e9565b6112d6576040516368d2bf6b60e11b815260040160405180910390fd5b8181106112a757815f5414610b78575f80fd5b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a029061131d903390899088908890600401611875565b6020604051808303815f875af1925050508015611357575060408051601f3d908101601f19168201909252611354918101906118b1565b60015b6113b3573d808015611384576040519150601f19603f3d011682016040523d82523d5f602084013e611389565b606091505b5080515f036113ab576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6001600160e01b0319811681146109c8575f80fd5b5f602082840312156113f6575f80fd5b8135610bf9816113d1565b5f5b8381101561141b578181015183820152602001611403565b50505f910152565b5f815180845261143a816020860160208601611401565b601f01601f19169290920160200192915050565b602081525f610bf96020830184611423565b5f60208284031215611470575f80fd5b5035919050565b80356001600160a01b038116811461148d575f80fd5b919050565b5f80604083850312156114a3575f80fd5b6114ac83611477565b946020939093013593505050565b5f805f606084860312156114cc575f80fd5b6114d584611477565b92506114e360208501611477565b9150604084013590509250925092565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff80841115611521576115216114f3565b604051601f8501601f19908116603f01168101908282118183101715611549576115496114f3565b81604052809350858152868686011115611561575f80fd5b858560208301375f602087830101525050509392505050565b5f6020828403121561158a575f80fd5b813567ffffffffffffffff8111156115a0575f80fd5b8201601f810184136115b0575f80fd5b6113c984823560208401611507565b5f602082840312156115cf575f80fd5b610bf982611477565b8035801515811461148d575f80fd5b5f80604083850312156115f8575f80fd5b61160183611477565b915061160f602084016115d8565b90509250929050565b5f60208284031215611628575f80fd5b610bf9826115d8565b5f805f8060808587031215611644575f80fd5b61164d85611477565b935061165b60208601611477565b925060408501359150606085013567ffffffffffffffff81111561167d575f80fd5b8501601f8101871361168d575f80fd5b61169c87823560208401611507565b91505092959194509250565b5f80604083850312156116b9575f80fd5b6116c283611477565b915061160f60208401611477565b600181811c908216806116e457607f821691505b60208210810361170257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156106d1575f81815260208120601f850160051c8101602086101561172e5750805b601f850160051c820191505b81811015610f475782815560010161173a565b815167ffffffffffffffff811115611767576117676114f3565b61177b8161177584546116d0565b84611708565b602080601f8311600181146117ae575f84156117975750858301515b5f19600386901b1c1916600185901b178555610f47565b5f85815260208120601f198616915b828110156117dc578886015182559484019460019091019084016117bd565b50858210156117f957878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b808201808211156105da576105da611809565b80820281158282048414176105da576105da611809565b5f8351611858818460208801611401565b83519083019061186c818360208801611401565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f906118a790830184611423565b9695505050505050565b5f602082840312156118c1575f80fd5b8151610bf9816113d156fea26469706673582212202c28111cd387a59539bbca693686f169d00596227e2d1eb6bfeb4d7f4d43638e64736f6c634300081400330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d566431547a336d464d35354e7a44324b6d31347162635876376557524a5475397052384a4763634675755a712f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101f1575f3560e01c806370a0823111610108578063b7c0b8e81161009d578063d60fba9d1161006d578063d60fba9d14610504578063e985e9c514610519578063ea63f58914610538578063f2fde38b14610557578063fb796e6c14610576575f80fd5b8063b7c0b8e814610494578063b88d4fde146104b3578063c87b56dd146104c6578063d476de1b146104e5575f80fd5b8063952ed1e6116100d8578063952ed1e61461042d57806395d89b4114610441578063a22cb46514610455578063aff1f57314610474575f80fd5b806370a08231146103be578063715018a6146103dd5780638ba4cc3c146103f15780638da5cb5b14610410575f80fd5b806332cb6b0c1161018957806355f804b31161015957806355f804b3146103455780635c975abb146103645780636352211e1461037857806365543320146103975780636c0360eb146103aa575f80fd5b806332cb6b0c146102f45780633ccfd60b1461030957806342842e0e1461031d578063463fff7914610330575f80fd5b806318160ddd116101c457806318160ddd1461029657806323b872dd146102b757806326e987d7146102ca5780632b2b632a146102df575f80fd5b806301ffc9a7146101f557806306fdde0314610229578063081812fc1461024a578063095ea7b314610281575b5f80fd5b348015610200575f80fd5b5061021461020f3660046113e6565b61058f565b60405190151581526020015b60405180910390f35b348015610234575f80fd5b5061023d6105e0565b604051610220919061144e565b348015610255575f80fd5b50610269610264366004611460565b610670565b6040516001600160a01b039091168152602001610220565b61029461028f366004611492565b6106b2565b005b3480156102a1575f80fd5b506001545f54035b604051908152602001610220565b6102946102c53660046114ba565b6106d6565b3480156102d5575f80fd5b506102a9600a5481565b3480156102ea575f80fd5b506102a9600d5481565b3480156102ff575f80fd5b506102a960095481565b348015610314575f80fd5b5061029461070c565b61029461032b3660046114ba565b61077b565b34801561033b575f80fd5b506102a9600b5481565b348015610350575f80fd5b5061029461035f36600461157a565b6107ab565b34801561036f575f80fd5b506102946107c3565b348015610383575f80fd5b50610269610392366004611460565b6107ec565b6102946103a5366004611460565b6107f6565b3480156103b5575f80fd5b5061023d6109cb565b3480156103c9575f80fd5b506102a96103d83660046115bf565b610a57565b3480156103e8575f80fd5b50610294610aa4565b3480156103fc575f80fd5b5061029461040b366004611492565b610ab5565b34801561041b575f80fd5b506008546001600160a01b0316610269565b348015610438575f80fd5b50610294610aeb565b34801561044c575f80fd5b5061023d610afe565b348015610460575f80fd5b5061029461046f3660046115e7565b610b0d565b34801561047f575f80fd5b5060085461021490600160a01b900460ff1681565b34801561049f575f80fd5b506102946104ae366004611618565b610b2c565b6102946104c1366004611631565b610b47565b3480156104d1575f80fd5b5061023d6104e0366004611460565b610b7f565b3480156104f0575f80fd5b506102946104ff366004611460565b610c00565b34801561050f575f80fd5b506102a9600c5481565b348015610524575f80fd5b506102146105333660046116a8565b610c0d565b348015610543575f80fd5b50610294610552366004611460565b610c3a565b348015610562575f80fd5b506102946105713660046115bf565b610c47565b348015610581575f80fd5b50600f546102149060ff1681565b5f6301ffc9a760e01b6001600160e01b0319831614806105bf57506380ac58cd60e01b6001600160e01b03198316145b806105da5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105ef906116d0565b80601f016020809104026020016040519081016040528092919081815260200182805461061b906116d0565b80156106665780601f1061063d57610100808354040283529160200191610666565b820191905f5260205f20905b81548152906001019060200180831161064957829003601f168201915b5050505050905090565b5f61067a82610cbd565b610697576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b81600f5460ff16156106c7576106c781610ce2565b6106d18383610d21565b505050565b826001600160a01b03811633146106fb57600f5460ff16156106fb576106fb33610ce2565b610706848484610dbf565b50505050565b610714610f4f565b6008546040516001600160a01b03909116904780156108fc02915f818181858888f193505050506107795760405162461bcd60e51b81526004016107709060208082526004908201526311985a5b60e21b604082015260600190565b60405180910390fd5b565b826001600160a01b03811633146107a057600f5460ff16156107a0576107a033610ce2565b610706848484610fa9565b6107b3610f4f565b600e6107bf828261174d565b5050565b6107cb610f4f565b6008805460ff60a01b198116600160a01b9182900460ff1615909102179055565b5f6105da82610fc3565b32331461083e5760405162461bcd60e51b8152602060048201526016602482015275536f72727920436f6e7472616374204d696e746f727360501b6044820152606401610770565b600854600160a01b900460ff166108685760405163f28e00cd60e01b815260040160405180910390fd5b600954816108745f5490565b61087e919061181d565b111561089d57604051633e0866c760e01b815260040160405180910390fd5b600d548111156108c057604051631ad4dd0560e11b815260040160405180910390fd5b6001545f5403600a541061091e5780600b5410156109195760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440cce4caca40e8f60531b6044820152606401610770565b6109be565b80600d5410156109695760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440e0c2d2c840e8f60531b6044820152606401610770565b34600c54826109789190611830565b146109be5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610770565b6109c83382611024565b50565b600e80546109d8906116d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610a04906116d0565b8015610a4f5780601f10610a2657610100808354040283529160200191610a4f565b820191905f5260205f20905b815481529060010190602001808311610a3257829003601f168201915b505050505081565b5f6001600160a01b038216610a7f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526005602052604090205467ffffffffffffffff1690565b610aac610f4f565b6107795f61111c565b610abd610f4f565b60095481610acd6001545f540390565b610ad7919061181d565b1115610ae1575f80fd5b6107bf828261116d565b610af3610f4f565b610779336032611024565b6060600380546105ef906116d0565b81600f5460ff1615610b2257610b2281610ce2565b6106d18383611186565b610b34610f4f565b600f805460ff1916911515919091179055565b836001600160a01b0381163314610b6c57600f5460ff1615610b6c57610b6c33610ce2565b610b78858585856111f1565b5050505050565b6060610b8a82610cbd565b610ba757604051630a14c4b560e41b815260040160405180910390fd5b5f610bb0611235565b905080515f03610bce5760405180602001604052805f815250610bf9565b80610bd884611244565b604051602001610be9929190611847565b6040516020818303038152906040525b9392505050565b610c08610f4f565b600a55565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b610c42610f4f565b600c55565b610c4f610f4f565b6001600160a01b038116610cb45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610770565b6109c88161111c565b5f8054821080156105da5750505f90815260046020526040902054600160e01b161590565b69c61711340011223344555f5230601a5280603a525f80604460166daaeb6d7670e522a718067333cd4e5afa610d1a573d5f803e3d5ffd5b5f603a5250565b5f610d2b826107ec565b9050336001600160a01b03821614610d6457610d478133610c0d565b610d64576040516367d9dca160e11b815260040160405180910390fd5b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b5f610dc982610fc3565b9050836001600160a01b0316816001600160a01b031614610dfc5760405162a1148160e81b815260040160405180910390fd5b5f8281526006602052604090208054338082146001600160a01b03881690911417610e4857610e2b8633610c0d565b610e4857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610e6f57604051633a954ecd60e21b815260040160405180910390fd5b8015610e79575f82555b6001600160a01b038681165f9081526005602052604080822080545f19019055918716808252919020805460010190554260a01b17600160e11b175f85815260046020526040812091909155600160e11b84169003610f0557600184015f818152600460205260408120549003610f03575f548114610f03575f8181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b031633146107795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610770565b6106d183838360405180602001604052805f815250610b47565b5f815f5481101561100b575f8181526004602052604081205490600160e01b82169003611009575b805f03610bf957505f19015f81815260046020526040902054610feb565b505b604051636f96cda160e11b815260040160405180910390fd5b5f8054908290036110485760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383165f8181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146110f45780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a46001016110be565b50815f0361111457604051622e076360e81b815260040160405180910390fd5b5f5550505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6107bf828260405180602001604052805f815250611287565b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111fc8484846106d6565b6001600160a01b0383163b1561070657611218848484846112e9565b610706576040516368d2bf6b60e11b815260040160405180910390fd5b6060600e80546105ef906116d0565b606060a06040510180604052602081039150505f815280825b600183039250600a81066030018353600a90048061125d5750819003601f19909101908152919050565b6112918383611024565b6001600160a01b0383163b156106d1575f548281035b6112b95f8683806001019450866112e9565b6112d6576040516368d2bf6b60e11b815260040160405180910390fd5b8181106112a757815f5414610b78575f80fd5b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a029061131d903390899088908890600401611875565b6020604051808303815f875af1925050508015611357575060408051601f3d908101601f19168201909252611354918101906118b1565b60015b6113b3573d808015611384576040519150601f19603f3d011682016040523d82523d5f602084013e611389565b606091505b5080515f036113ab576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6001600160e01b0319811681146109c8575f80fd5b5f602082840312156113f6575f80fd5b8135610bf9816113d1565b5f5b8381101561141b578181015183820152602001611403565b50505f910152565b5f815180845261143a816020860160208601611401565b601f01601f19169290920160200192915050565b602081525f610bf96020830184611423565b5f60208284031215611470575f80fd5b5035919050565b80356001600160a01b038116811461148d575f80fd5b919050565b5f80604083850312156114a3575f80fd5b6114ac83611477565b946020939093013593505050565b5f805f606084860312156114cc575f80fd5b6114d584611477565b92506114e360208501611477565b9150604084013590509250925092565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff80841115611521576115216114f3565b604051601f8501601f19908116603f01168101908282118183101715611549576115496114f3565b81604052809350858152868686011115611561575f80fd5b858560208301375f602087830101525050509392505050565b5f6020828403121561158a575f80fd5b813567ffffffffffffffff8111156115a0575f80fd5b8201601f810184136115b0575f80fd5b6113c984823560208401611507565b5f602082840312156115cf575f80fd5b610bf982611477565b8035801515811461148d575f80fd5b5f80604083850312156115f8575f80fd5b61160183611477565b915061160f602084016115d8565b90509250929050565b5f60208284031215611628575f80fd5b610bf9826115d8565b5f805f8060808587031215611644575f80fd5b61164d85611477565b935061165b60208601611477565b925060408501359150606085013567ffffffffffffffff81111561167d575f80fd5b8501601f8101871361168d575f80fd5b61169c87823560208401611507565b91505092959194509250565b5f80604083850312156116b9575f80fd5b6116c283611477565b915061160f60208401611477565b600181811c908216806116e457607f821691505b60208210810361170257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156106d1575f81815260208120601f850160051c8101602086101561172e5750805b601f850160051c820191505b81811015610f475782815560010161173a565b815167ffffffffffffffff811115611767576117676114f3565b61177b8161177584546116d0565b84611708565b602080601f8311600181146117ae575f84156117975750858301515b5f19600386901b1c1916600185901b178555610f47565b5f85815260208120601f198616915b828110156117dc578886015182559484019460019091019084016117bd565b50858210156117f957878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b808201808211156105da576105da611809565b80820281158282048414176105da576105da611809565b5f8351611858818460208801611401565b83519083019061186c818360208801611401565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f906118a790830184611423565b9695505050505050565b5f602082840312156118c1575f80fd5b8151610bf9816113d156fea26469706673582212202c28111cd387a59539bbca693686f169d00596227e2d1eb6bfeb4d7f4d43638e64736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d566431547a336d464d35354e7a44324b6d31347162635876376557524a5475397052384a4763634675755a712f00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI_ (string): https://ipfs.io/ipfs/QmVd1Tz3mFM55NzD2Km14qbcXv7eWRJTu9pR8JGccFuuZq/
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [2] : 68747470733a2f2f697066732e696f2f697066732f516d566431547a336d464d
Arg [3] : 35354e7a44324b6d31347162635876376557524a5475397052384a4763634675
Arg [4] : 755a712f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
856:3798:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9408:639:1;;;;;;;;;;-1:-1:-1;9408:639:1;;;;;:::i;:::-;;:::i;:::-;;;565:14:6;;558:22;540:41;;528:2;513:18;9408:639:1;;;;;;;;10310:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;16801:218::-;;;;;;;;;;-1:-1:-1;16801:218:1;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:6;;;1679:51;;1667:2;1652:18;16801:218:1;1533:203:6;1711:190:5;;;;;;:::i;:::-;;:::i;:::-;;6061:323:1;;;;;;;;;;-1:-1:-1;6335:12:1;;6122:7;6319:13;:28;6061:323;;;2324:25:6;;;2312:2;2297:18;6061:323:1;2178:177:6;1909:205:5;;;;;;:::i;:::-;;:::i;1020:36::-;;;;;;;;;;;;;;;;1159:35;;;;;;;;;;;;;;;;981:32;;;;;;;;;;;;;;;;4513:134;;;;;;;;;;;;;:::i;2122:213::-;;;;;;:::i;:::-;;:::i;1063:34::-;;;;;;;;;;;;;;;;4398:90;;;;;;;;;;-1:-1:-1;4398:90:5;;;;;:::i;:::-;;:::i;3015:80::-;;;;;;;;;;;;;:::i;11703:152:1:-;;;;;;;;;;-1:-1:-1;11703:152:1;;;;;:::i;:::-;;:::i;3109:607:5:-;;;;;;:::i;:::-;;:::i;1203:21::-;;;;;;;;;;;;;:::i;7245:233:1:-;;;;;;;;;;-1:-1:-1;7245:233:1;;;;;:::i;:::-;;:::i;1882:103:4:-;;;;;;;;;;;;;:::i;3812:162:5:-;;;;;;;;;;-1:-1:-1;3812:162:5;;;;;:::i;:::-;;:::i;1234:87:4:-;;;;;;;;;;-1:-1:-1;1307:6:4;;-1:-1:-1;;;;;1307:6:4;1234:87;;3724:80:5;;;;;;;;;;;;;:::i;10486:104:1:-;;;;;;;;;;;;;:::i;1502:201:5:-;;;;;;;;;;-1:-1:-1;1502:201:5;;;;;:::i;:::-;;:::i;943:31::-;;;;;;;;;;-1:-1:-1;943:31:5;;;;-1:-1:-1;;;943:31:5;;;;;;2598:117;;;;;;;;;;-1:-1:-1;2598:117:5;;;;;:::i;:::-;;:::i;2343:247::-;;;;;;:::i;:::-;;:::i;10696:318:1:-;;;;;;;;;;-1:-1:-1;10696:318:1;;;;;:::i;:::-;;:::i;4123:131:5:-;;;;;;;;;;-1:-1:-1;4123:131:5;;;;;:::i;:::-;;:::i;1104:44::-;;;;;;;;;;;;;;;;17750:164:1;;;;;;;;;;-1:-1:-1;17750:164:1;;;;;:::i;:::-;;:::i;3984:131:5:-;;;;;;;;;;-1:-1:-1;3984:131:5;;;;;:::i;:::-;;:::i;2140:201:4:-;;;;;;;;;;-1:-1:-1;2140:201:4;;;;;:::i;:::-;;:::i;1233:36:5:-;;;;;;;;;;-1:-1:-1;1233:36:5;;;;;;;;9408:639:1;9493:4;-1:-1:-1;;;;;;;;;9817:25:1;;;;:102;;-1:-1:-1;;;;;;;;;;9894:25:1;;;9817:102;:179;;;-1:-1:-1;;;;;;;;;;9971:25:1;;;9817:179;9797:199;9408:639;-1:-1:-1;;9408:639:1:o;10310:100::-;10364:13;10397:5;10390:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10310:100;:::o;16801:218::-;16877:7;16902:16;16910:7;16902;:16::i;:::-;16897:64;;16927:34;;-1:-1:-1;;;16927:34:1;;;;;;;;;;;16897:64;-1:-1:-1;16981:24:1;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;16981:30:1;;16801:218::o;1711:190:5:-;1840:8;2816:24;;;;3624:59:3;;;3657:26;3674:8;3657:16;:26::i;:::-;1861:32:5::1;1875:8;1885:7;1861:13;:32::i;:::-;1711:190:::0;;;:::o;1909:205::-;2052:4;-1:-1:-1;;;;;3213:18:3;;3221:10;3213:18;3209:184;;2816:24:5;;;;3305:61:3;;;3338:28;3355:10;3338:16;:28::i;:::-;2069:37:5::1;2088:4;2094:2;2098:7;2069:18;:37::i;:::-;1909:205:::0;;;;:::o;4513:134::-;1120:13:4;:11;:13::i;:::-;1307:6;;4575:44:5::1;::::0;-1:-1:-1;;;;;1307:6:4;;;;4597:21:5::1;4575:44:::0;::::1;;;::::0;::::1;::::0;;;4597:21;1307:6:4;4575:44:5;::::1;;;;;;4559:82;;;;-1:-1:-1::0;;;4559:82:5::1;;;;;;6242:2:6::0;6224:21;;;6281:1;6261:18;;;6254:29;-1:-1:-1;;;6314:2:6;6299:18;;6292:34;6358:2;6343:18;;6040:327;4559:82:5::1;;;;;;;;;4513:134::o:0;2122:213::-;2269:4;-1:-1:-1;;;;;3213:18:3;;3221:10;3213:18;3209:184;;2816:24:5;;;;3305:61:3;;;3338:28;3355:10;3338:16;:28::i;:::-;2286:41:5::1;2309:4;2315:2;2319:7;2286:22;:41::i;4398:90::-:0;1120:13:4;:11;:13::i;:::-;4467:7:5::1;:13;4477:3:::0;4467:7;:13:::1;:::i;:::-;;4398:90:::0;:::o;3015:80::-;1120:13:4;:11;:13::i;:::-;3076:11:5::1;::::0;;-1:-1:-1;;;;3061:26:5;::::1;-1:-1:-1::0;;;3076:11:5;;;::::1;;;3075:12;3061:26:::0;;::::1;;::::0;;3015:80::o;11703:152:1:-;11775:7;11818:27;11837:7;11818:18;:27::i;3109:607:5:-;2922:9;2935:10;2922:23;2914:58;;;;-1:-1:-1;;;2914:58:5;;8778:2:6;2914:58:5;;;8760:21:6;8817:2;8797:18;;;8790:30;-1:-1:-1;;;8836:18:6;;;8829:52;8898:18;;2914:58:5;8576:346:6;2914:58:5;3181:11:::1;::::0;-1:-1:-1;;;3181:11:5;::::1;;;3176:41;;3201:16;;-1:-1:-1::0;;;3201:16:5::1;;;;;;;;;;;3176:41;3255:10;;3249:3;3232:14;6537:7:1::0;6728:13;;6482:296;3232:14:5::1;:20;;;;:::i;:::-;:33;3228:68;;;3274:22;;-1:-1:-1::0;;;3274:22:5::1;;;;;;;;;;;3228:68;3317:15;;3311:3;:21;3307:56;;;3341:22;;-1:-1:-1::0;;;3341:22:5::1;;;;;;;;;;;3307:56;6335:12:1::0;;6122:7;6319:13;:28;3378:15:5::1;;:32;3375:295;;3453:3;3434:15;;:22;;3426:58;;;::::0;-1:-1:-1;;;3426:58:5;;9391:2:6;3426:58:5::1;::::0;::::1;9373:21:6::0;9430:2;9410:18;;;9403:30;-1:-1:-1;;;9449:18:6;;;9442:52;9511:18;;3426:58:5::1;9189:346:6::0;3426:58:5::1;3375:295;;;3542:3;3523:15;;:22;;3515:58;;;::::0;-1:-1:-1;;;3515:58:5;;9742:2:6;3515:58:5::1;::::0;::::1;9724:21:6::0;9781:2;9761:18;;;9754:30;-1:-1:-1;;;9800:18:6;;;9793:52;9862:18;;3515:58:5::1;9540:346:6::0;3515:58:5::1;3622:9;3602:15;;3596:3;:21;;;;:::i;:::-;:35;3588:70;;;::::0;-1:-1:-1;;;3588:70:5;;10266:2:6;3588:70:5::1;::::0;::::1;10248:21:6::0;10305:2;10285:18;;;10278:30;-1:-1:-1;;;10324:18:6;;;10317:52;10386:18;;3588:70:5::1;10064:346:6::0;3588:70:5::1;3686:22;3692:10;3704:3;3686:5;:22::i;:::-;3109:607:::0;:::o;1203:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7245:233:1:-;7317:7;-1:-1:-1;;;;;7341:19:1;;7337:60;;7369:28;;-1:-1:-1;;;7369:28:1;;;;;;;;;;;7337:60;-1:-1:-1;;;;;;7415:25:1;;;;;:18;:25;;;;;;1404:13;7415:55;;7245:233::o;1882:103:4:-;1120:13;:11;:13::i;:::-;1947:30:::1;1974:1;1947:18;:30::i;3812:162:5:-:0;1120:13:4;:11;:13::i;:::-;3921:10:5::1;;3911:6;3895:13;6335:12:1::0;;6122:7;6319:13;:28;;6061:323;3895:13:5::1;:22;;;;:::i;:::-;:36;;3887:45;;;::::0;::::1;;3943:23;3953:4;3959:6;3943:9;:23::i;3724:80::-:0;1120:13:4;:11;:13::i;:::-;3777:21:5::1;3783:10;3795:2;3777:5;:21::i;10486:104:1:-:0;10542:13;10575:7;10568:14;;;;;:::i;1502:201:5:-;1631:8;2816:24;;;;3624:59:3;;;3657:26;3674:8;3657:16;:26::i;:::-;1652:43:5::1;1676:8;1686;1652:23;:43::i;2598:117::-:0;1120:13:4;:11;:13::i;:::-;2675:24:5::1;:32:::0;;-1:-1:-1;;2675:32:5::1;::::0;::::1;;::::0;;;::::1;::::0;;2598:117::o;2343:247::-;2518:4;-1:-1:-1;;;;;3213:18:3;;3221:10;3213:18;3209:184;;2816:24:5;;;;3305:61:3;;;3338:28;3355:10;3338:16;:28::i;:::-;2535:47:5::1;2558:4;2564:2;2568:7;2577:4;2535:22;:47::i;:::-;2343:247:::0;;;;;:::o;10696:318:1:-;10769:13;10800:16;10808:7;10800;:16::i;:::-;10795:59;;10825:29;;-1:-1:-1;;;10825:29:1;;;;;;;;;;;10795:59;10867:21;10891:10;:8;:10::i;:::-;10867:34;;10925:7;10919:21;10944:1;10919:26;:87;;;;;;;;;;;;;;;;;10972:7;10981:18;10991:7;10981:9;:18::i;:::-;10955:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10919:87;10912:94;10696:318;-1:-1:-1;;;10696:318:1:o;4123:131:5:-;1120:13:4;:11;:13::i;:::-;4210:15:5::1;:36:::0;4123:131::o;17750:164:1:-;-1:-1:-1;;;;;17871:25:1;;;17847:4;17871:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;17750:164::o;3984:131:5:-;1120:13:4;:11;:13::i;:::-;4071:15:5::1;:36:::0;3984:131::o;2140:201:4:-;1120:13;:11;:13::i;:::-;-1:-1:-1;;;;;2229:22:4;::::1;2221:73;;;::::0;-1:-1:-1;;;2221:73:4;;11118:2:6;2221:73:4::1;::::0;::::1;11100:21:6::0;11157:2;11137:18;;;11130:30;11196:34;11176:18;;;11169:62;-1:-1:-1;;;11247:18:6;;;11240:36;11293:19;;2221:73:4::1;10916:402:6::0;2221:73:4::1;2305:28;2324:8;2305:18;:28::i;18172:282:1:-:0;18237:4;18327:13;;18317:7;:23;18274:153;;;;-1:-1:-1;;18378:26:1;;;;:17;:26;;;;;;-1:-1:-1;;;18378:44:1;:49;;18172:282::o;3811:1359:3:-;4204:22;4198:4;4191:36;4297:9;4291:4;4284:23;4372:8;4366:4;4359:22;4549:4;4543;4537;4531;4504:25;4497:5;4486:68;4476:274;;4670:16;4664:4;4658;4643:44;4718:16;4712:4;4705:30;4476:274;5150:1;5144:4;5137:15;3811:1359;:::o;16234:408:1:-;16323:13;16339:16;16347:7;16339;:16::i;:::-;16323:32;-1:-1:-1;40567:10:1;-1:-1:-1;;;;;16372:28:1;;;16368:175;;16420:44;16437:5;40567:10;17750:164;:::i;16420:44::-;16415:128;;16492:35;;-1:-1:-1;;;16492:35:1;;;;;;;;;;;16415:128;16555:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;16555:35:1;-1:-1:-1;;;;;16555:35:1;;;;;;;;;16606:28;;16555:24;;16606:28;;;;;;;16312:330;16234:408;;:::o;20440:2825::-;20582:27;20612;20631:7;20612:18;:27::i;:::-;20582:57;;20697:4;-1:-1:-1;;;;;20656:45:1;20672:19;-1:-1:-1;;;;;20656:45:1;;20652:86;;20710:28;;-1:-1:-1;;;20710:28:1;;;;;;;;;;;20652:86;20752:27;19548:24;;;:15;:24;;;;;19776:26;;40567:10;19173:30;;;-1:-1:-1;;;;;18866:28:1;;19151:20;;;19148:56;20938:180;;21031:43;21048:4;40567:10;17750:164;:::i;21031:43::-;21026:92;;21083:35;;-1:-1:-1;;;21083:35:1;;;;;;;;;;;21026:92;-1:-1:-1;;;;;21135:16:1;;21131:52;;21160:23;;-1:-1:-1;;;21160:23:1;;;;;;;;;;;21131:52;21332:15;21329:160;;;21472:1;21451:19;21444:30;21329:160;-1:-1:-1;;;;;21869:24:1;;;;;;;:18;:24;;;;;;21867:26;;-1:-1:-1;;21867:26:1;;;21938:22;;;;;;;;;21936:24;;-1:-1:-1;21936:24:1;;;15092:11;15067:23;15063:41;15050:63;-1:-1:-1;;;15050:63:1;22231:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;22526:47:1;;:52;;22522:627;;22631:1;22621:11;;22599:19;22754:30;;;:17;:30;;;;;;:35;;22750:384;;22892:13;;22877:11;:28;22873:242;;23039:30;;;;:17;:30;;;;;:52;;;22873:242;22580:569;22522:627;23196:7;23192:2;-1:-1:-1;;;;;23177:27:1;23186:4;-1:-1:-1;;;;;23177:27:1;;;;;;;;;;;23215:42;20571:2694;;;20440:2825;;;:::o;1399:132:4:-;1307:6;;-1:-1:-1;;;;;1307:6:4;40567:10:1;1463:23:4;1455:68;;;;-1:-1:-1;;;1455:68:4;;11525:2:6;1455:68:4;;;11507:21:6;;;11544:18;;;11537:30;11603:34;11583:18;;;11576:62;11655:18;;1455:68:4;11323:356:6;23361:193:1;23507:39;23524:4;23530:2;23534:7;23507:39;;;;;;;;;;;;:16;:39::i;12858:1275::-;12925:7;12960;13062:13;;13055:4;:20;13051:1015;;;13100:14;13117:23;;;:17;:23;;;;;;;-1:-1:-1;;;13206:24:1;;:29;;13202:845;;13871:113;13878:6;13888:1;13878:11;13871:113;;-1:-1:-1;;;13949:6:1;13931:25;;;;:17;:25;;;;;;13871:113;;13202:845;13077:989;13051:1015;14094:31;;-1:-1:-1;;;14094:31:1;;;;;;;;;;;27821:2966;27894:20;27917:13;;;27945;;;27941:44;;27967:18;;-1:-1:-1;;;27967:18:1;;;;;;;;;;;27941:44;-1:-1:-1;;;;;28473:22:1;;;;;;:18;:22;;;;1542:2;28473:22;;;:71;;28511:32;28499:45;;28473:71;;;28787:31;;;:17;:31;;;;;-1:-1:-1;15523:15:1;;15497:24;15493:46;15092:11;15067:23;15063:41;15060:52;15050:63;;28787:173;;29022:23;;;;28787:31;;28473:22;;29787:25;28473:22;;29640:335;30301:1;30287:12;30283:20;30241:346;30342:3;30333:7;30330:16;30241:346;;30560:7;30550:8;30547:1;30520:25;30517:1;30514;30509:59;30395:1;30382:15;30241:346;;;30245:77;30620:8;30632:1;30620:13;30616:45;;30642:19;;-1:-1:-1;;;30642:19:1;;;;;;;;;;;30616:45;30678:13;:19;-1:-1:-1;1711:190:5;;;:::o;2501:191:4:-;2594:6;;;-1:-1:-1;;;;;2611:17:4;;;-1:-1:-1;;;;;;2611:17:4;;;;;;;2644:40;;2594:6;;;2611:17;2594:6;;2644:40;;2575:16;;2644:40;2564:128;2501:191;:::o;34312:112:1:-;34389:27;34399:2;34403:8;34389:27;;;;;;;;;;;;:9;:27::i;17359:234::-;40567:10;17454:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;17454:49:1;;;;;;;;;;;;:60;;-1:-1:-1;;17454:60:1;;;;;;;;;;17530:55;;540:41:6;;;17454:49:1;;40567:10;17530:55;;513:18:6;17530:55:1;;;;;;;17359:234;;:::o;24152:407::-;24327:31;24340:4;24346:2;24350:7;24327:12;:31::i;:::-;-1:-1:-1;;;;;24373:14:1;;;:19;24369:183;;24412:56;24443:4;24449:2;24453:7;24462:5;24412:30;:56::i;:::-;24407:145;;24496:40;;-1:-1:-1;;;24496:40:1;;;;;;;;;;;4282:108:5;4342:13;4375:7;4368:14;;;;;:::i;40687:1745:1:-;40752:17;41186:4;41179;41173:11;41169:22;41278:1;41272:4;41265:15;41353:4;41350:1;41346:12;41339:19;;;41435:1;41430:3;41423:14;41539:3;41778:5;41760:428;41826:1;41821:3;41817:11;41810:18;;41997:2;41991:4;41987:13;41983:2;41979:22;41974:3;41966:36;42091:2;42081:13;;42148:25;41760:428;42148:25;-1:-1:-1;42218:13:1;;;-1:-1:-1;;42333:14:1;;;42395:19;;;42333:14;40687:1745;-1:-1:-1;40687:1745:1:o;33539:689::-;33670:19;33676:2;33680:8;33670:5;:19::i;:::-;-1:-1:-1;;;;;33731:14:1;;;:19;33727:483;;33771:11;33785:13;33833:14;;;33866:233;33897:62;33936:1;33940:2;33944:7;;;;;;33953:5;33897:30;:62::i;:::-;33892:167;;33995:40;;-1:-1:-1;;;33995:40:1;;;;;;;;;;;33892:167;34094:3;34086:5;:11;33866:233;;34181:3;34164:13;;:20;34160:34;;34186:8;;;26643:716;26827:88;;-1:-1:-1;;;26827:88:1;;26806:4;;-1:-1:-1;;;;;26827:45:1;;;;;:88;;40567:10;;26894:4;;26900:7;;26909:5;;26827:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26827:88:1;;;;;;;;-1:-1:-1;;26827:88:1;;;;;;;;;;;;:::i;:::-;;;26823:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27110:6;:13;27127:1;27110:18;27106:235;;27156:40;;-1:-1:-1;;;27156:40:1;;;;;;;;;;;27106:235;27299:6;27293:13;27284:6;27280:2;27276:15;27269:38;26823:529;-1:-1:-1;;;;;;26986:64:1;-1:-1:-1;;;26986:64:1;;-1:-1:-1;26823:529:1;26643:716;;;;;;:::o;14:131:6:-;-1:-1:-1;;;;;;88:32:6;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:6;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:6;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:6:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:6;;1348:180;-1:-1:-1;1348:180:6:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:6;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:6:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:127::-;2754:10;2749:3;2745:20;2742:1;2735:31;2785:4;2782:1;2775:15;2809:4;2806:1;2799:15;2825:632;2890:5;2920:18;2961:2;2953:6;2950:14;2947:40;;;2967:18;;:::i;:::-;3042:2;3036:9;3010:2;3096:15;;-1:-1:-1;;3092:24:6;;;3118:2;3088:33;3084:42;3072:55;;;3142:18;;;3162:22;;;3139:46;3136:72;;;3188:18;;:::i;:::-;3228:10;3224:2;3217:22;3257:6;3248:15;;3287:6;3279;3272:22;3327:3;3318:6;3313:3;3309:16;3306:25;3303:45;;;3344:1;3341;3334:12;3303:45;3394:6;3389:3;3382:4;3374:6;3370:17;3357:44;3449:1;3442:4;3433:6;3425;3421:19;3417:30;3410:41;;;;2825:632;;;;;:::o;3462:451::-;3531:6;3584:2;3572:9;3563:7;3559:23;3555:32;3552:52;;;3600:1;3597;3590:12;3552:52;3640:9;3627:23;3673:18;3665:6;3662:30;3659:50;;;3705:1;3702;3695:12;3659:50;3728:22;;3781:4;3773:13;;3769:27;-1:-1:-1;3759:55:6;;3810:1;3807;3800:12;3759:55;3833:74;3899:7;3894:2;3881:16;3876:2;3872;3868:11;3833:74;:::i;3918:186::-;3977:6;4030:2;4018:9;4009:7;4005:23;4001:32;3998:52;;;4046:1;4043;4036:12;3998:52;4069:29;4088:9;4069:29;:::i;4109:160::-;4174:20;;4230:13;;4223:21;4213:32;;4203:60;;4259:1;4256;4249:12;4274:254;4339:6;4347;4400:2;4388:9;4379:7;4375:23;4371:32;4368:52;;;4416:1;4413;4406:12;4368:52;4439:29;4458:9;4439:29;:::i;:::-;4429:39;;4487:35;4518:2;4507:9;4503:18;4487:35;:::i;:::-;4477:45;;4274:254;;;;;:::o;4533:180::-;4589:6;4642:2;4630:9;4621:7;4617:23;4613:32;4610:52;;;4658:1;4655;4648:12;4610:52;4681:26;4697:9;4681:26;:::i;4718:667::-;4813:6;4821;4829;4837;4890:3;4878:9;4869:7;4865:23;4861:33;4858:53;;;4907:1;4904;4897:12;4858:53;4930:29;4949:9;4930:29;:::i;:::-;4920:39;;4978:38;5012:2;5001:9;4997:18;4978:38;:::i;:::-;4968:48;;5063:2;5052:9;5048:18;5035:32;5025:42;;5118:2;5107:9;5103:18;5090:32;5145:18;5137:6;5134:30;5131:50;;;5177:1;5174;5167:12;5131:50;5200:22;;5253:4;5245:13;;5241:27;-1:-1:-1;5231:55:6;;5282:1;5279;5272:12;5231:55;5305:74;5371:7;5366:2;5353:16;5348:2;5344;5340:11;5305:74;:::i;:::-;5295:84;;;4718:667;;;;;;;:::o;5390:260::-;5458:6;5466;5519:2;5507:9;5498:7;5494:23;5490:32;5487:52;;;5535:1;5532;5525:12;5487:52;5558:29;5577:9;5558:29;:::i;:::-;5548:39;;5606:38;5640:2;5629:9;5625:18;5606:38;:::i;5655:380::-;5734:1;5730:12;;;;5777;;;5798:61;;5852:4;5844:6;5840:17;5830:27;;5798:61;5905:2;5897:6;5894:14;5874:18;5871:38;5868:161;;5951:10;5946:3;5942:20;5939:1;5932:31;5986:4;5983:1;5976:15;6014:4;6011:1;6004:15;5868:161;;5655:380;;;:::o;6498:545::-;6600:2;6595:3;6592:11;6589:448;;;6636:1;6661:5;6657:2;6650:17;6706:4;6702:2;6692:19;6776:2;6764:10;6760:19;6757:1;6753:27;6747:4;6743:38;6812:4;6800:10;6797:20;6794:47;;;-1:-1:-1;6835:4:6;6794:47;6890:2;6885:3;6881:12;6878:1;6874:20;6868:4;6864:31;6854:41;;6945:82;6963:2;6956:5;6953:13;6945:82;;;7008:17;;;6989:1;6978:13;6945:82;;7219:1352;7345:3;7339:10;7372:18;7364:6;7361:30;7358:56;;;7394:18;;:::i;:::-;7423:97;7513:6;7473:38;7505:4;7499:11;7473:38;:::i;:::-;7467:4;7423:97;:::i;:::-;7575:4;;7639:2;7628:14;;7656:1;7651:663;;;;8358:1;8375:6;8372:89;;;-1:-1:-1;8427:19:6;;;8421:26;8372:89;-1:-1:-1;;7176:1:6;7172:11;;;7168:24;7164:29;7154:40;7200:1;7196:11;;;7151:57;8474:81;;7621:944;;7651:663;6445:1;6438:14;;;6482:4;6469:18;;-1:-1:-1;;7687:20:6;;;7805:236;7819:7;7816:1;7813:14;7805:236;;;7908:19;;;7902:26;7887:42;;8000:27;;;;7968:1;7956:14;;;;7835:19;;7805:236;;;7809:3;8069:6;8060:7;8057:19;8054:201;;;8130:19;;;8124:26;-1:-1:-1;;8213:1:6;8209:14;;;8225:3;8205:24;8201:37;8197:42;8182:58;8167:74;;8054:201;-1:-1:-1;;;;;8301:1:6;8285:14;;;8281:22;8268:36;;-1:-1:-1;7219:1352:6:o;8927:127::-;8988:10;8983:3;8979:20;8976:1;8969:31;9019:4;9016:1;9009:15;9043:4;9040:1;9033:15;9059:125;9124:9;;;9145:10;;;9142:36;;;9158:18;;:::i;9891:168::-;9964:9;;;9995;;10012:15;;;10006:22;;9992:37;9982:71;;10033:18;;:::i;10415:496::-;10594:3;10632:6;10626:13;10648:66;10707:6;10702:3;10695:4;10687:6;10683:17;10648:66;:::i;:::-;10777:13;;10736:16;;;;10799:70;10777:13;10736:16;10846:4;10834:17;;10799:70;:::i;:::-;10885:20;;10415:496;-1:-1:-1;;;;10415:496:6:o;11684:489::-;-1:-1:-1;;;;;11953:15:6;;;11935:34;;12005:15;;12000:2;11985:18;;11978:43;12052:2;12037:18;;12030:34;;;12100:3;12095:2;12080:18;;12073:31;;;11878:4;;12121:46;;12147:19;;12139:6;12121:46;:::i;:::-;12113:54;11684:489;-1:-1:-1;;;;;;11684:489:6:o;12178:249::-;12247:6;12300:2;12288:9;12279:7;12275:23;12271:32;12268:52;;;12316:1;12313;12306:12;12268:52;12348:9;12342:16;12367:30;12391:5;12367:30;:::i
Swarm Source
ipfs://2c28111cd387a59539bbca693686f169d00596227e2d1eb6bfeb4d7f4d43638e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.