ERC-721
Source Code
Overview
Max Total Supply
46,676 VILLAG
Holders
46,665
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 VILLAGLoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
Villagers
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT
pragma solidity 0.8.18;
import "./Ownable.sol";
import "./ERC721A.sol";
import "./ReentrancyGuard.sol";
import "./Strings.sol";
contract Villagers is ERC721A, Ownable, ReentrancyGuard {
string public baseUri = "ipfs://QmdyvJkPXgvDJZ8Ji8qZqFxZaWh5PS7TB6xb24hQ26iyb8/";
bool public mintEnabled = false;
bool public permDisabled = false;
mapping(address => bool) public mintedFree;
mapping(address => bool) public allowlist;
constructor() ERC721A("Villager", "VILLAG") {
}
function mintNormal() external nonReentrant {
if(!allowlist[msg.sender])
require(mintEnabled, "Mint disabled");
require(msg.sender == tx.origin, "EOA only");
require(!mintedFree[msg.sender], "Already minted free");
mintedFree[msg.sender] = true;
_mint(msg.sender, 1);
}
function setMintState(bool state) public onlyOwner {
require(!permDisabled, "Mint has been disabled forever");
mintEnabled = state;
}
function foreverDisableMint() public onlyOwner {
permDisabled = true;
mintEnabled = false;
}
function mintAdmin(uint256[] calldata amount, address[] calldata wallet) external payable onlyOwner {
require(!permDisabled, "Mint disabled");
for(uint256 i = 0; i < wallet.length; i++)
_mint(wallet[i], amount[i]);
}
function _startTokenId() internal pure override returns (uint256) {
return 1;
}
function allowlistWallet(address[] calldata wallet, bool state) external onlyOwner {
for(uint256 i = 0; i < wallet.length; i++)
allowlist[wallet[i]] = state;
}
function _beforeTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal override {
if(from == address(0)) {
super._beforeTokenTransfers(from, to, startTokenId, quantity);
return;
}
revert("Token is soulbound");
}
function tokenURI(uint256 tokenId) public view override returns (string memory) {
return string(abi.encodePacked(baseUri, Strings.toString(tokenId), ".json"));
}
function setBaseUri(string memory uri) public onlyOwner {
baseUri = uri;
}
function withdraw() public payable onlyOwner {
(bool success, ) = payable(msg.sender).call {value: address(this).balance}("");
require(success);
}
}
// 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
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator
) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1);
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator,
Rounding rounding
) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10**64) {
value /= 10**64;
result += 64;
}
if (value >= 10**32) {
value /= 10**32;
result += 32;
}
if (value >= 10**16) {
value /= 10**16;
result += 16;
}
if (value >= 10**8) {
value /= 10**8;
result += 8;
}
if (value >= 10**4) {
value /= 10**4;
result += 4;
}
if (value >= 10**2) {
value /= 10**2;
result += 2;
}
if (value >= 10**1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
}
}
}
// 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);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_nonReentrantBefore();
_;
_nonReentrantAfter();
}
function _nonReentrantBefore() private {
// On the first call to nonReentrant, _status will be _NOT_ENTERED
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
}
function _nonReentrantAfter() private {
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./Math.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallet","type":"address[]"},{"internalType":"bool","name":"state","type":"bool"}],"name":"allowlistWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"foreverDisableMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"amount","type":"uint256[]"},{"internalType":"address[]","name":"wallet","type":"address[]"}],"name":"mintAdmin","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintNormal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedFree","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":"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":"permDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"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":"state","type":"bool"}],"name":"setMintState","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":"payable","type":"function"}]Contract Creation Code
60e0604052603660808181529062001d6860a039600a90620000229082620001b1565b50600b805461ffff191690553480156200003b57600080fd5b50604051806040016040528060088152602001672b34b63630b3b2b960c11b8152506040518060400160405280600681526020016556494c4c414760d01b81525081600290816200008d9190620001b1565b5060036200009c8282620001b1565b5050600160005550620000af33620000ba565b60016009556200027d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200013757607f821691505b6020821081036200015857634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001ac57600081815260208120601f850160051c81016020861015620001875750805b601f850160051c820191505b81811015620001a85782815560010162000193565b5050505b505050565b81516001600160401b03811115620001cd57620001cd6200010c565b620001e581620001de845462000122565b846200015e565b602080601f8311600181146200021d5760008415620002045750858301515b600019600386901b1c1916600185901b178555620001a8565b600085815260208120601f198616915b828110156200024e578886015182559484019460019091019084016200022d565b50858210156200026d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611adb806200028d6000396000f3fe6080604052600436106101c25760003560e01c8063715018a6116100f7578063aa45696511610095578063d123973011610064578063d1239730146104b9578063dd5eece4146104d3578063e985e9c5146104e6578063f2fde38b1461052f57600080fd5b8063aa45696514610451578063b84c2e8d14610471578063b88d4fde14610486578063c87b56dd1461049957600080fd5b80639abc8320116100d15780639abc8320146103cc578063a0bcfc7f146103e1578063a22cb46514610401578063a7cd52cb1461042157600080fd5b8063715018a6146103845780638da5cb5b1461039957806395d89b41146103b757600080fd5b806323b872dd116101645780633ccfd60b1161013e5780633ccfd60b1461032957806342842e0e146103315780636352211e1461034457806370a082311461036457600080fd5b806323b872dd146102d757806326412aca146102ea5780632be29b721461030a57600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461026b5780631a99cdb71461029257806320984801146102a757600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e236600461141c565b61054f565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105a1565b6040516101f39190611489565b34801561022a57600080fd5b5061023e61023936600461149c565b610633565b6040516001600160a01b0390911681526020016101f3565b6102696102643660046114d1565b610677565b005b34801561027757600080fd5b5060015460005403600019015b6040519081526020016101f3565b34801561029e57600080fd5b50610269610717565b3480156102b357600080fd5b506101e76102c23660046114fb565b600c6020526000908152604090205460ff1681565b6102696102e5366004611516565b610730565b3480156102f657600080fd5b50610269610305366004611562565b6108d6565b34801561031657600080fd5b50600b546101e790610100900460ff1681565b61026961094e565b61026961033f366004611516565b6109ae565b34801561035057600080fd5b5061023e61035f36600461149c565b6109ce565b34801561037057600080fd5b5061028461037f3660046114fb565b6109d9565b34801561039057600080fd5b50610269610a28565b3480156103a557600080fd5b506008546001600160a01b031661023e565b3480156103c357600080fd5b50610211610a3c565b3480156103d857600080fd5b50610211610a4b565b3480156103ed57600080fd5b506102696103fc366004611609565b610ad9565b34801561040d57600080fd5b5061026961041c366004611652565b610af1565b34801561042d57600080fd5b506101e761043c3660046114fb565b600d6020526000908152604090205460ff1681565b34801561045d57600080fd5b5061026961046c3660046116d1565b610b5d565b34801561047d57600080fd5b50610269610bdc565b610269610494366004611725565b610cfe565b3480156104a557600080fd5b506102116104b436600461149c565b610d42565b3480156104c557600080fd5b50600b546101e79060ff1681565b6102696104e13660046117a1565b610d76565b3480156104f257600080fd5b506101e761050136600461180d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561053b57600080fd5b5061026961054a3660046114fb565b610e32565b60006301ffc9a760e01b6001600160e01b03198316148061058057506380ac58cd60e01b6001600160e01b03198316145b8061059b5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105b090611837565b80601f01602080910402602001604051908101604052809291908181526020018280546105dc90611837565b80156106295780601f106105fe57610100808354040283529160200191610629565b820191906000526020600020905b81548152906001019060200180831161060c57829003601f168201915b5050505050905090565b600061063e82610ea8565b61065b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610682826109ce565b9050336001600160a01b038216146106bb5761069e8133610501565b6106bb576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61071f610edd565b600b805461ffff1916610100179055565b600061073b82610f37565b9050836001600160a01b0316816001600160a01b03161461076e5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176107bb5761079e8633610501565b6107bb57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166107e257604051633a954ecd60e21b815260040160405180910390fd5b6107ef8686866001610fad565b80156107fa57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b8416900361088c5760018401600081815260046020526040812054900361088a57600054811461088a5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6108de610edd565b600b54610100900460ff161561093b5760405162461bcd60e51b815260206004820152601e60248201527f4d696e7420686173206265656e2064697361626c656420666f7265766572000060448201526064015b60405180910390fd5b600b805460ff1916911515919091179055565b610956610edd565b604051600090339047908381818185875af1925050503d8060008114610998576040519150601f19603f3d011682016040523d82523d6000602084013e61099d565b606091505b50509050806109ab57600080fd5b50565b6109c983838360405180602001604052806000815250610cfe565b505050565b600061059b82610f37565b60006001600160a01b038216610a02576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610a30610edd565b610a3a6000610ff9565b565b6060600380546105b090611837565b600a8054610a5890611837565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8490611837565b8015610ad15780601f10610aa657610100808354040283529160200191610ad1565b820191906000526020600020905b815481529060010190602001808311610ab457829003601f168201915b505050505081565b610ae1610edd565b600a610aed82826118b7565b5050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b65610edd565b60005b82811015610bd65781600d6000868685818110610b8757610b87611977565b9050602002016020810190610b9c91906114fb565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610bce8161198d565b915050610b68565b50505050565b610be461104b565b336000908152600d602052604090205460ff16610c3d57600b5460ff16610c3d5760405162461bcd60e51b815260206004820152600d60248201526c135a5b9d08191a5cd8589b1959609a1b6044820152606401610932565b333214610c775760405162461bcd60e51b8152602060048201526008602482015267454f41206f6e6c7960c01b6044820152606401610932565b336000908152600c602052604090205460ff1615610ccd5760405162461bcd60e51b8152602060048201526013602482015272416c7265616479206d696e746564206672656560681b6044820152606401610932565b336000818152600c60205260409020805460ff19166001908117909155610cf491906110a4565b610a3a6001600955565b610d09848484610730565b6001600160a01b0383163b15610bd657610d25848484846111af565b610bd6576040516368d2bf6b60e11b815260040160405180910390fd5b6060600a610d4f8361129b565b604051602001610d609291906119b4565b6040516020818303038152906040529050919050565b610d7e610edd565b600b54610100900460ff1615610dc65760405162461bcd60e51b815260206004820152600d60248201526c135a5b9d08191a5cd8589b1959609a1b6044820152606401610932565b60005b81811015610e2b57610e19838383818110610de657610de6611977565b9050602002016020810190610dfb91906114fb565b868684818110610e0d57610e0d611977565b905060200201356110a4565b80610e238161198d565b915050610dc9565b5050505050565b610e3a610edd565b6001600160a01b038116610e9f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610932565b6109ab81610ff9565b600081600111158015610ebc575060005482105b801561059b575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b03163314610a3a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610932565b60008180600111610f9457600054811015610f945760008181526004602052604081205490600160e01b82169003610f92575b80600003610f8b575060001901600081815260046020526040902054610f6a565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6001600160a01b03841615610bd65760405162461bcd60e51b8152602060048201526012602482015271151bdad95b881a5cc81cdbdd5b189bdd5b9960721b6044820152606401610932565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60026009540361109d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610932565b6002600955565b60008054908290036110c95760405163b562e8dd60e01b815260040160405180910390fd5b6110d66000848385610fad565b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461118557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161114d565b50816000036111a657604051622e076360e81b815260040160405180910390fd5b60005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111e4903390899088908890600401611a4b565b6020604051808303816000875af192505050801561121f575060408051601f3d908101601f1916820190925261121c91810190611a88565b60015b61127d573d80801561124d576040519150601f19603f3d011682016040523d82523d6000602084013e611252565b606091505b508051600003611275576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060006112a88361132e565b600101905060008167ffffffffffffffff8111156112c8576112c861157d565b6040519080825280601f01601f1916602001820160405280156112f2576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846112fc57509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061136d5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611399576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106113b757662386f26fc10000830492506010015b6305f5e10083106113cf576305f5e100830492506008015b61271083106113e357612710830492506004015b606483106113f5576064830492506002015b600a831061059b5760010192915050565b6001600160e01b0319811681146109ab57600080fd5b60006020828403121561142e57600080fd5b8135610f8b81611406565b60005b8381101561145457818101518382015260200161143c565b50506000910152565b60008151808452611475816020860160208601611439565b601f01601f19169290920160200192915050565b602081526000610f8b602083018461145d565b6000602082840312156114ae57600080fd5b5035919050565b80356001600160a01b03811681146114cc57600080fd5b919050565b600080604083850312156114e457600080fd5b6114ed836114b5565b946020939093013593505050565b60006020828403121561150d57600080fd5b610f8b826114b5565b60008060006060848603121561152b57600080fd5b611534846114b5565b9250611542602085016114b5565b9150604084013590509250925092565b803580151581146114cc57600080fd5b60006020828403121561157457600080fd5b610f8b82611552565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156115ae576115ae61157d565b604051601f8501601f19908116603f011681019082821181831017156115d6576115d661157d565b816040528093508581528686860111156115ef57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561161b57600080fd5b813567ffffffffffffffff81111561163257600080fd5b8201601f8101841361164357600080fd5b61129384823560208401611593565b6000806040838503121561166557600080fd5b61166e836114b5565b915061167c60208401611552565b90509250929050565b60008083601f84011261169757600080fd5b50813567ffffffffffffffff8111156116af57600080fd5b6020830191508360208260051b85010111156116ca57600080fd5b9250929050565b6000806000604084860312156116e657600080fd5b833567ffffffffffffffff8111156116fd57600080fd5b61170986828701611685565b909450925061171c905060208501611552565b90509250925092565b6000806000806080858703121561173b57600080fd5b611744856114b5565b9350611752602086016114b5565b925060408501359150606085013567ffffffffffffffff81111561177557600080fd5b8501601f8101871361178657600080fd5b61179587823560208401611593565b91505092959194509250565b600080600080604085870312156117b757600080fd5b843567ffffffffffffffff808211156117cf57600080fd5b6117db88838901611685565b909650945060208701359150808211156117f457600080fd5b5061180187828801611685565b95989497509550505050565b6000806040838503121561182057600080fd5b611829836114b5565b915061167c602084016114b5565b600181811c9082168061184b57607f821691505b60208210810361186b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156109c957600081815260208120601f850160051c810160208610156118985750805b601f850160051c820191505b818110156108ce578281556001016118a4565b815167ffffffffffffffff8111156118d1576118d161157d565b6118e5816118df8454611837565b84611871565b602080601f83116001811461191a57600084156119025750858301515b600019600386901b1c1916600185901b1785556108ce565b600085815260208120601f198616915b828110156119495788860151825594840194600190910190840161192a565b50858210156119675787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b6000600182016119ad57634e487b7160e01b600052601160045260246000fd5b5060010190565b60008084546119c281611837565b600182811680156119da57600181146119ef57611a1e565b60ff1984168752821515830287019450611a1e565b8860005260208060002060005b85811015611a155781548a8201529084019082016119fc565b50505082870194505b505050508351611a32818360208801611439565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a7e9083018461145d565b9695505050505050565b600060208284031215611a9a57600080fd5b8151610f8b8161140656fea2646970667358221220a57c2c727fb273743b392635754b7d2355cee8715038ed4e68513fe0946ba60764736f6c63430008120033697066733a2f2f516d6479764a6b50586776444a5a384a6938715a7146785a615768355053375442367862323468513236697962382f
Deployed Bytecode
0x6080604052600436106101c25760003560e01c8063715018a6116100f7578063aa45696511610095578063d123973011610064578063d1239730146104b9578063dd5eece4146104d3578063e985e9c5146104e6578063f2fde38b1461052f57600080fd5b8063aa45696514610451578063b84c2e8d14610471578063b88d4fde14610486578063c87b56dd1461049957600080fd5b80639abc8320116100d15780639abc8320146103cc578063a0bcfc7f146103e1578063a22cb46514610401578063a7cd52cb1461042157600080fd5b8063715018a6146103845780638da5cb5b1461039957806395d89b41146103b757600080fd5b806323b872dd116101645780633ccfd60b1161013e5780633ccfd60b1461032957806342842e0e146103315780636352211e1461034457806370a082311461036457600080fd5b806323b872dd146102d757806326412aca146102ea5780632be29b721461030a57600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461026b5780631a99cdb71461029257806320984801146102a757600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e236600461141c565b61054f565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105a1565b6040516101f39190611489565b34801561022a57600080fd5b5061023e61023936600461149c565b610633565b6040516001600160a01b0390911681526020016101f3565b6102696102643660046114d1565b610677565b005b34801561027757600080fd5b5060015460005403600019015b6040519081526020016101f3565b34801561029e57600080fd5b50610269610717565b3480156102b357600080fd5b506101e76102c23660046114fb565b600c6020526000908152604090205460ff1681565b6102696102e5366004611516565b610730565b3480156102f657600080fd5b50610269610305366004611562565b6108d6565b34801561031657600080fd5b50600b546101e790610100900460ff1681565b61026961094e565b61026961033f366004611516565b6109ae565b34801561035057600080fd5b5061023e61035f36600461149c565b6109ce565b34801561037057600080fd5b5061028461037f3660046114fb565b6109d9565b34801561039057600080fd5b50610269610a28565b3480156103a557600080fd5b506008546001600160a01b031661023e565b3480156103c357600080fd5b50610211610a3c565b3480156103d857600080fd5b50610211610a4b565b3480156103ed57600080fd5b506102696103fc366004611609565b610ad9565b34801561040d57600080fd5b5061026961041c366004611652565b610af1565b34801561042d57600080fd5b506101e761043c3660046114fb565b600d6020526000908152604090205460ff1681565b34801561045d57600080fd5b5061026961046c3660046116d1565b610b5d565b34801561047d57600080fd5b50610269610bdc565b610269610494366004611725565b610cfe565b3480156104a557600080fd5b506102116104b436600461149c565b610d42565b3480156104c557600080fd5b50600b546101e79060ff1681565b6102696104e13660046117a1565b610d76565b3480156104f257600080fd5b506101e761050136600461180d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561053b57600080fd5b5061026961054a3660046114fb565b610e32565b60006301ffc9a760e01b6001600160e01b03198316148061058057506380ac58cd60e01b6001600160e01b03198316145b8061059b5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105b090611837565b80601f01602080910402602001604051908101604052809291908181526020018280546105dc90611837565b80156106295780601f106105fe57610100808354040283529160200191610629565b820191906000526020600020905b81548152906001019060200180831161060c57829003601f168201915b5050505050905090565b600061063e82610ea8565b61065b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610682826109ce565b9050336001600160a01b038216146106bb5761069e8133610501565b6106bb576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61071f610edd565b600b805461ffff1916610100179055565b600061073b82610f37565b9050836001600160a01b0316816001600160a01b03161461076e5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176107bb5761079e8633610501565b6107bb57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166107e257604051633a954ecd60e21b815260040160405180910390fd5b6107ef8686866001610fad565b80156107fa57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b8416900361088c5760018401600081815260046020526040812054900361088a57600054811461088a5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6108de610edd565b600b54610100900460ff161561093b5760405162461bcd60e51b815260206004820152601e60248201527f4d696e7420686173206265656e2064697361626c656420666f7265766572000060448201526064015b60405180910390fd5b600b805460ff1916911515919091179055565b610956610edd565b604051600090339047908381818185875af1925050503d8060008114610998576040519150601f19603f3d011682016040523d82523d6000602084013e61099d565b606091505b50509050806109ab57600080fd5b50565b6109c983838360405180602001604052806000815250610cfe565b505050565b600061059b82610f37565b60006001600160a01b038216610a02576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610a30610edd565b610a3a6000610ff9565b565b6060600380546105b090611837565b600a8054610a5890611837565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8490611837565b8015610ad15780601f10610aa657610100808354040283529160200191610ad1565b820191906000526020600020905b815481529060010190602001808311610ab457829003601f168201915b505050505081565b610ae1610edd565b600a610aed82826118b7565b5050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b65610edd565b60005b82811015610bd65781600d6000868685818110610b8757610b87611977565b9050602002016020810190610b9c91906114fb565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610bce8161198d565b915050610b68565b50505050565b610be461104b565b336000908152600d602052604090205460ff16610c3d57600b5460ff16610c3d5760405162461bcd60e51b815260206004820152600d60248201526c135a5b9d08191a5cd8589b1959609a1b6044820152606401610932565b333214610c775760405162461bcd60e51b8152602060048201526008602482015267454f41206f6e6c7960c01b6044820152606401610932565b336000908152600c602052604090205460ff1615610ccd5760405162461bcd60e51b8152602060048201526013602482015272416c7265616479206d696e746564206672656560681b6044820152606401610932565b336000818152600c60205260409020805460ff19166001908117909155610cf491906110a4565b610a3a6001600955565b610d09848484610730565b6001600160a01b0383163b15610bd657610d25848484846111af565b610bd6576040516368d2bf6b60e11b815260040160405180910390fd5b6060600a610d4f8361129b565b604051602001610d609291906119b4565b6040516020818303038152906040529050919050565b610d7e610edd565b600b54610100900460ff1615610dc65760405162461bcd60e51b815260206004820152600d60248201526c135a5b9d08191a5cd8589b1959609a1b6044820152606401610932565b60005b81811015610e2b57610e19838383818110610de657610de6611977565b9050602002016020810190610dfb91906114fb565b868684818110610e0d57610e0d611977565b905060200201356110a4565b80610e238161198d565b915050610dc9565b5050505050565b610e3a610edd565b6001600160a01b038116610e9f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610932565b6109ab81610ff9565b600081600111158015610ebc575060005482105b801561059b575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b03163314610a3a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610932565b60008180600111610f9457600054811015610f945760008181526004602052604081205490600160e01b82169003610f92575b80600003610f8b575060001901600081815260046020526040902054610f6a565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6001600160a01b03841615610bd65760405162461bcd60e51b8152602060048201526012602482015271151bdad95b881a5cc81cdbdd5b189bdd5b9960721b6044820152606401610932565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60026009540361109d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610932565b6002600955565b60008054908290036110c95760405163b562e8dd60e01b815260040160405180910390fd5b6110d66000848385610fad565b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461118557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161114d565b50816000036111a657604051622e076360e81b815260040160405180910390fd5b60005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111e4903390899088908890600401611a4b565b6020604051808303816000875af192505050801561121f575060408051601f3d908101601f1916820190925261121c91810190611a88565b60015b61127d573d80801561124d576040519150601f19603f3d011682016040523d82523d6000602084013e611252565b606091505b508051600003611275576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060006112a88361132e565b600101905060008167ffffffffffffffff8111156112c8576112c861157d565b6040519080825280601f01601f1916602001820160405280156112f2576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846112fc57509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061136d5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611399576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106113b757662386f26fc10000830492506010015b6305f5e10083106113cf576305f5e100830492506008015b61271083106113e357612710830492506004015b606483106113f5576064830492506002015b600a831061059b5760010192915050565b6001600160e01b0319811681146109ab57600080fd5b60006020828403121561142e57600080fd5b8135610f8b81611406565b60005b8381101561145457818101518382015260200161143c565b50506000910152565b60008151808452611475816020860160208601611439565b601f01601f19169290920160200192915050565b602081526000610f8b602083018461145d565b6000602082840312156114ae57600080fd5b5035919050565b80356001600160a01b03811681146114cc57600080fd5b919050565b600080604083850312156114e457600080fd5b6114ed836114b5565b946020939093013593505050565b60006020828403121561150d57600080fd5b610f8b826114b5565b60008060006060848603121561152b57600080fd5b611534846114b5565b9250611542602085016114b5565b9150604084013590509250925092565b803580151581146114cc57600080fd5b60006020828403121561157457600080fd5b610f8b82611552565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156115ae576115ae61157d565b604051601f8501601f19908116603f011681019082821181831017156115d6576115d661157d565b816040528093508581528686860111156115ef57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561161b57600080fd5b813567ffffffffffffffff81111561163257600080fd5b8201601f8101841361164357600080fd5b61129384823560208401611593565b6000806040838503121561166557600080fd5b61166e836114b5565b915061167c60208401611552565b90509250929050565b60008083601f84011261169757600080fd5b50813567ffffffffffffffff8111156116af57600080fd5b6020830191508360208260051b85010111156116ca57600080fd5b9250929050565b6000806000604084860312156116e657600080fd5b833567ffffffffffffffff8111156116fd57600080fd5b61170986828701611685565b909450925061171c905060208501611552565b90509250925092565b6000806000806080858703121561173b57600080fd5b611744856114b5565b9350611752602086016114b5565b925060408501359150606085013567ffffffffffffffff81111561177557600080fd5b8501601f8101871361178657600080fd5b61179587823560208401611593565b91505092959194509250565b600080600080604085870312156117b757600080fd5b843567ffffffffffffffff808211156117cf57600080fd5b6117db88838901611685565b909650945060208701359150808211156117f457600080fd5b5061180187828801611685565b95989497509550505050565b6000806040838503121561182057600080fd5b611829836114b5565b915061167c602084016114b5565b600181811c9082168061184b57607f821691505b60208210810361186b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156109c957600081815260208120601f850160051c810160208610156118985750805b601f850160051c820191505b818110156108ce578281556001016118a4565b815167ffffffffffffffff8111156118d1576118d161157d565b6118e5816118df8454611837565b84611871565b602080601f83116001811461191a57600084156119025750858301515b600019600386901b1c1916600185901b1785556108ce565b600085815260208120601f198616915b828110156119495788860151825594840194600190910190840161192a565b50858210156119675787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b6000600182016119ad57634e487b7160e01b600052601160045260246000fd5b5060010190565b60008084546119c281611837565b600182811680156119da57600181146119ef57611a1e565b60ff1984168752821515830287019450611a1e565b8860005260208060002060005b85811015611a155781548a8201529084019082016119fc565b50505082870194505b505050508351611a32818360208801611439565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a7e9083018461145d565b9695505050505050565b600060208284031215611a9a57600080fd5b8151610f8b8161140656fea2646970667358221220a57c2c727fb273743b392635754b7d2355cee8715038ed4e68513fe0946ba60764736f6c63430008120033
Deployed Bytecode Sourcemap
163:2309:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9155:630:1;;;;;;;;;;-1:-1:-1;9155:630:1;;;;;:::i;:::-;;:::i;:::-;;;565:14:8;;558:22;540:41;;528:2;513:18;9155:630:1;;;;;;;;10039:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;16360:214::-;;;;;;;;;;-1:-1:-1;16360:214:1;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:8;;;1679:51;;1667:2;1652:18;16360:214:1;1533:203:8;15812:398:1;;;;;;:::i;:::-;;:::i;:::-;;5894:317;;;;;;;;;;-1:-1:-1;1493:1:7;6164:12:1;5955:7;6148:13;:28;-1:-1:-1;;6148:46:1;5894:317;;;2324:25:8;;;2312:2;2297:18;5894:317:1;2178:177:8;1037:112:7;;;;;;;;;;;;;:::i;389:42::-;;;;;;;;;;-1:-1:-1;389:42:7;;;;;:::i;:::-;;;;;;;;;;;;;;;;19903:2764:1;;;;;;:::i;:::-;;:::i;878:153:7:-;;;;;;;;;;-1:-1:-1;878:153:7;;;;;:::i;:::-;;:::i;350:32::-;;;;;;;;;;-1:-1:-1;350:32:7;;;;;;;;;;;2303:166;;;:::i;22758:187:1:-;;;;;;:::i;:::-;;:::i;11391:150::-;;;;;;;;;;-1:-1:-1;11391:150:1;;;;;:::i;:::-;;:::i;7045:230::-;;;;;;;;;;-1:-1:-1;7045:230:1;;;;;:::i;:::-;;:::i;1824:101:4:-;;;;;;;;;;;;;:::i;1194:85::-;;;;;;;;;;-1:-1:-1;1266:6:4;;-1:-1:-1;;;;;1266:6:4;1194:85;;10208:102:1;;;;;;;;;;;;;:::i;226:80:7:-;;;;;;;;;;;;;:::i;2211:86::-;;;;;;;;;;-1:-1:-1;2211:86:7;;;;;:::i;:::-;;:::i;16901:231:1:-;;;;;;;;;;-1:-1:-1;16901:231:1;;;;;:::i;:::-;;:::i;437:41:7:-;;;;;;;;;;-1:-1:-1;437:41:7;;;;;:::i;:::-;;;;;;;;;;;;;;;;1507:183;;;;;;;;;;-1:-1:-1;1507:183:7;;;;;:::i;:::-;;:::i;543:329::-;;;;;;;;;;;;;:::i;23526:396:1:-;;;;;;:::i;:::-;;:::i;2040:165:7:-;;;;;;;;;;-1:-1:-1;2040:165:7;;;;;:::i;:::-;;:::i;313:31::-;;;;;;;;;;-1:-1:-1;313:31:7;;;;;;;;1155:249;;;;;;:::i;:::-;;:::i;17282:162:1:-;;;;;;;;;;-1:-1:-1;17282:162:1;;;;;:::i;:::-;-1:-1:-1;;;;;17402:25:1;;;17379:4;17402:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;17282:162;2074:198:4;;;;;;;;;;-1:-1:-1;2074:198:4;;;;;:::i;:::-;;:::i;9155:630:1:-;9240:4;-1:-1:-1;;;;;;;;;9558:25:1;;;;:101;;-1:-1:-1;;;;;;;;;;9634:25:1;;;9558:101;:177;;;-1:-1:-1;;;;;;;;;;9710:25:1;;;9558:177;9539:196;9155:630;-1:-1:-1;;9155:630:1:o;10039:98::-;10093:13;10125:5;10118:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10039:98;:::o;16360:214::-;16436:7;16460:16;16468:7;16460;:16::i;:::-;16455:64;;16485:34;;-1:-1:-1;;;16485:34:1;;;;;;;;;;;16455:64;-1:-1:-1;16537:24:1;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;16537:30:1;;16360:214::o;15812:398::-;15900:13;15916:16;15924:7;15916;:16::i;:::-;15900:32;-1:-1:-1;39523:10:1;-1:-1:-1;;;;;15947:28:1;;;15943:172;;15994:44;16011:5;39523:10;17282:162;:::i;15994:44::-;15989:126;;16065:35;;-1:-1:-1;;;16065:35:1;;;;;;;;;;;15989:126;16125:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;16125:35:1;-1:-1:-1;;;;;16125:35:1;;;;;;;;;16175:28;;16125:24;;16175:28;;;;;;;15890:320;15812:398;;:::o;1037:112:7:-;1087:13:4;:11;:13::i;:::-;1094:12:7::1;:19:::0;;-1:-1:-1;;1123:19:7;1094::::1;1123::::0;;;1037:112::o;19903:2764:1:-;20040:27;20070;20089:7;20070:18;:27::i;:::-;20040:57;;20153:4;-1:-1:-1;;;;;20112:45:1;20128:19;-1:-1:-1;;;;;20112:45:1;;20108:86;;20166:28;;-1:-1:-1;;;20166:28:1;;;;;;;;;;;20108:86;20206:27;19036:24;;;:15;:24;;;;;19260:26;;39523:10;18673:30;;;-1:-1:-1;;;;;18370:28:1;;18651:20;;;18648:56;20389:179;;20481:43;20498:4;39523:10;17282:162;:::i;20481:43::-;20476:92;;20533:35;;-1:-1:-1;;;20533:35:1;;;;;;;;;;;20476:92;-1:-1:-1;;;;;20583:16:1;;20579:52;;20608:23;;-1:-1:-1;;;20608:23:1;;;;;;;;;;;20579:52;20642:43;20664:4;20670:2;20674:7;20683:1;20642:21;:43::i;:::-;20774:15;20771:157;;;20912:1;20891:19;20884:30;20771:157;-1:-1:-1;;;;;21300:24:1;;;;;;;:18;:24;;;;;;21298:26;;-1:-1:-1;;21298:26:1;;;21368:22;;;;;;;;;21366:24;;-1:-1:-1;21366:24:1;;;14703:11;14678:23;14674:41;14661:63;-1:-1:-1;;;14661:63:1;21654:26;;;;:17;:26;;;;;:172;;;;-1:-1:-1;;;21943:47:1;;:52;;21939:617;;22047:1;22037:11;;22015:19;22168:30;;;:17;:30;;;;;;:35;;22164:378;;22304:13;;22289:11;:28;22285:239;;22449:30;;;;:17;:30;;;;;:52;;;22285:239;21997:559;21939:617;22600:7;22596:2;-1:-1:-1;;;;;22581:27:1;22590:4;-1:-1:-1;;;;;22581:27:1;;;;;;;;;;;22618:42;20030:2637;;;19903:2764;;;:::o;878:153:7:-;1087:13:4;:11;:13::i;:::-;948:12:7::1;::::0;::::1;::::0;::::1;;;947:13;939:56;;;::::0;-1:-1:-1;;;939:56:7;;7902:2:8;939:56:7::1;::::0;::::1;7884:21:8::0;7941:2;7921:18;;;7914:30;7980:32;7960:18;;;7953:60;8030:18;;939:56:7::1;;;;;;;;;1005:11;:19:::0;;-1:-1:-1;;1005:19:7::1;::::0;::::1;;::::0;;;::::1;::::0;;878:153::o;2303:166::-;1087:13:4;:11;:13::i;:::-;2377:59:7::1;::::0;2359:12:::1;::::0;2385:10:::1;::::0;2410:21:::1;::::0;2359:12;2377:59;2359:12;2377:59;2410:21;2385:10;2377:59:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2358:78;;;2454:7;2446:16;;;::::0;::::1;;2348:121;2303:166::o:0;22758:187:1:-;22899:39;22916:4;22922:2;22926:7;22899:39;;;;;;;;;;;;:16;:39::i;:::-;22758:187;;;:::o;11391:150::-;11463:7;11505:27;11524:7;11505:18;:27::i;7045:230::-;7117:7;-1:-1:-1;;;;;7140:19:1;;7136:60;;7168:28;;-1:-1:-1;;;7168:28:1;;;;;;;;;;;7136:60;-1:-1:-1;;;;;;7213:25:1;;;;;:18;:25;;;;;;1360:13;7213:55;;7045:230::o;1824:101:4:-;1087:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;10208:102:1:-;10264:13;10296:7;10289:14;;;;;:::i;226:80:7:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2211:86::-;1087:13:4;:11;:13::i;:::-;2277:7:7::1;:13;2287:3:::0;2277:7;:13:::1;:::i;:::-;;2211:86:::0;:::o;16901:231:1:-;39523:10;16995:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;16995:49:1;;;;;;;;;;;;:60;;-1:-1:-1;;16995:60:1;;;;;;;;;;17070:55;;540:41:8;;;16995:49:1;;39523:10;17070:55;;513:18:8;17070:55:1;;;;;;;16901:231;;:::o;1507:183:7:-;1087:13:4;:11;:13::i;:::-;1604:9:7::1;1600:83;1619:17:::0;;::::1;1600:83;;;1678:5;1655:9;:20;1665:6;;1672:1;1665:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;1655:20:7::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;1655:20:7;:28;;-1:-1:-1;;1655:28:7::1;::::0;::::1;;::::0;;;::::1;::::0;;1638:3;::::1;::::0;::::1;:::i;:::-;;;;1600:83;;;;1507:183:::0;;;:::o;543:329::-;2261:21:5;:19;:21::i;:::-;612:10:7::1;602:21;::::0;;;:9:::1;:21;::::0;;;;;::::1;;598:76;;645:11;::::0;::::1;;637:37;;;::::0;-1:-1:-1;;;637:37:7;;11044:2:8;637:37:7::1;::::0;::::1;11026:21:8::0;11083:2;11063:18;;;11056:30;-1:-1:-1;;;11102:18:8;;;11095:43;11155:18;;637:37:7::1;10842:337:8::0;637:37:7::1;693:10;707:9;693:23;685:44;;;::::0;-1:-1:-1;;;685:44:7;;11386:2:8;685:44:7::1;::::0;::::1;11368:21:8::0;11425:1;11405:18;;;11398:29;-1:-1:-1;;;11443:18:8;;;11436:38;11491:18;;685:44:7::1;11184:331:8::0;685:44:7::1;759:10;748:22;::::0;;;:10:::1;:22;::::0;;;;;::::1;;747:23;739:55;;;::::0;-1:-1:-1;;;739:55:7;;11722:2:8;739:55:7::1;::::0;::::1;11704:21:8::0;11761:2;11741:18;;;11734:30;-1:-1:-1;;;11780:18:8;;;11773:49;11839:18;;739:55:7::1;11520:343:8::0;739:55:7::1;816:10;805:22;::::0;;;:10:::1;:22;::::0;;;;:29;;-1:-1:-1;;805:29:7::1;830:4;805:29:::0;;::::1;::::0;;;845:20:::1;::::0;816:10;845:5:::1;:20::i;:::-;2303::5::0;1716:1;2809:7;:22;2629:209;23526:396:1;23695:31;23708:4;23714:2;23718:7;23695:12;:31::i;:::-;-1:-1:-1;;;;;23740:14:1;;;:19;23736:180;;23778:56;23809:4;23815:2;23819:7;23828:5;23778:30;:56::i;:::-;23773:143;;23861:40;;-1:-1:-1;;;23861:40:1;;;;;;;;;;;2040:165:7;2105:13;2156:7;2165:25;2182:7;2165:16;:25::i;:::-;2139:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2125:76;;2040:165;;;:::o;1155:249::-;1087:13:4;:11;:13::i;:::-;1274:12:7::1;::::0;::::1;::::0;::::1;;;1273:13;1265:39;;;::::0;-1:-1:-1;;;1265:39:7;;11044:2:8;1265:39:7::1;::::0;::::1;11026:21:8::0;11083:2;11063:18;;;11056:30;-1:-1:-1;;;11102:18:8;;;11095:43;11155:18;;1265:39:7::1;10842:337:8::0;1265:39:7::1;1319:9;1315:82;1334:17:::0;;::::1;1315:82;;;1370:27;1376:6;;1383:1;1376:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;1387:6;;1394:1;1387:9;;;;;;;:::i;:::-;;;;;;;1370:5;:27::i;:::-;1353:3:::0;::::1;::::0;::::1;:::i;:::-;;;;1315:82;;;;1155:249:::0;;;;:::o;2074:198:4:-;1087:13;:11;:13::i;:::-;-1:-1:-1;;;;;2162:22:4;::::1;2154:73;;;::::0;-1:-1:-1;;;2154:73:4;;13262:2:8;2154:73:4::1;::::0;::::1;13244:21:8::0;13301:2;13281:18;;;13274:30;13340:34;13320:18;;;13313:62;-1:-1:-1;;;13391:18:8;;;13384:36;13437:19;;2154:73:4::1;13060:402:8::0;2154:73:4::1;2237:28;2256:8;2237:18;:28::i;17693:277:1:-:0;17758:4;17812:7;1493:1:7;17793:26:1;;:65;;;;;17845:13;;17835:7;:23;17793:65;:151;;;;-1:-1:-1;;17895:26:1;;;;:17;:26;;;;;;-1:-1:-1;;;17895:44:1;:49;;17693:277::o;1352:130:4:-;1266:6;;-1:-1:-1;;;;;1266:6:4;39523:10:1;1415:23:4;1407:68;;;;-1:-1:-1;;;1407:68:4;;13669:2:8;1407:68:4;;;13651:21:8;;;13688:18;;;13681:30;13747:34;13727:18;;;13720:62;13799:18;;1407:68:4;13467:356:8;12515:1249:1;12582:7;12616;;1493:1:7;12662:23:1;12658:1042;;12714:13;;12707:4;:20;12703:997;;;12751:14;12768:23;;;:17;:23;;;;;;;-1:-1:-1;;;12855:24:1;;:29;;12851:831;;13510:111;13517:6;13527:1;13517:11;13510:111;;-1:-1:-1;;;13587:6:1;13569:25;;;;:17;:25;;;;;;13510:111;;;13653:6;12515:1249;-1:-1:-1;;;12515:1249:1:o;12851:831::-;12729:971;12703:997;13726:31;;-1:-1:-1;;;13726:31:1;;;;;;;;;;;1696:338:7;-1:-1:-1;;;;;1863:18:7;;1860:129;1972:7;1860:129;1999:28;;-1:-1:-1;;;1999:28:7;;14030:2:8;1999:28:7;;;14012:21:8;14069:2;14049:18;;;14042:30;-1:-1:-1;;;14088:18:8;;;14081:48;14146:18;;1999:28:7;13828:342:8;2426:187:4;2518:6;;;-1:-1:-1;;;;;2534:17:4;;;-1:-1:-1;;;;;;2534:17:4;;;;;;;2566:40;;2518:6;;;2534:17;2518:6;;2566:40;;2499:16;;2566:40;2489:124;2426:187;:::o;2336:287:5:-;1759:1;2468:7;;:19;2460:63;;;;-1:-1:-1;;;2460:63:5;;14377:2:8;2460:63:5;;;14359:21:8;14416:2;14396:18;;;14389:30;14455:33;14435:18;;;14428:61;14506:18;;2460:63:5;14175:355:8;2460:63:5;1759:1;2598:7;:18;2336:287::o;27091:2902:1:-;27163:20;27186:13;;;27213;;;27209:44;;27235:18;;-1:-1:-1;;;27235:18:1;;;;;;;;;;;27209:44;27264:61;27294:1;27298:2;27302:12;27316:8;27264:21;:61::i;:::-;-1:-1:-1;;;;;27728:22:1;;;;;;:18;:22;;;;1495:2;27728:22;;;:71;;27766:32;27754:45;;27728:71;;;28035:31;;;:17;:31;;;;;-1:-1:-1;15123:15:1;;15097:24;15093:46;14703:11;14678:23;14674:41;14671:52;14661:63;;28035:170;;28264:23;;;;28035:31;;27728:22;;29016:25;27728:22;;28872:328;29520:1;29506:12;29502:20;29461:339;29560:3;29551:7;29548:16;29461:339;;29774:7;29764:8;29761:1;29734:25;29731:1;29728;29723:59;29612:1;29599:15;29461:339;;;29465:75;29831:8;29843:1;29831:13;29827:45;;29853:19;;-1:-1:-1;;;29853:19:1;;;;;;;;;;;29827:45;29887:13;:19;-1:-1:-1;22758:187:1;;;:::o;25948:697::-;26126:88;;-1:-1:-1;;;26126:88:1;;26106:4;;-1:-1:-1;;;;;26126:45:1;;;;;:88;;39523:10;;26193:4;;26199:7;;26208:5;;26126:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26126:88:1;;;;;;;;-1:-1:-1;;26126:88:1;;;;;;;;;;;;:::i;:::-;;;26122:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26404:6;:13;26421:1;26404:18;26400:229;;26449:40;;-1:-1:-1;;;26449:40:1;;;;;;;;;;;26400:229;26589:6;26583:13;26574:6;26570:2;26566:15;26559:38;26122:517;-1:-1:-1;;;;;;26282:64:1;-1:-1:-1;;;26282:64:1;;-1:-1:-1;26122:517:1;25948:697;;;;;;:::o;410:696:6:-;466:13;515:14;532:17;543:5;532:10;:17::i;:::-;552:1;532:21;515:38;;567:20;601:6;590:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;590:18:6;-1:-1:-1;567:41:6;-1:-1:-1;728:28:6;;;744:2;728:28;783:280;-1:-1:-1;;814:5:6;-1:-1:-1;;;948:2:6;937:14;;932:30;814:5;919:44;1007:2;998:11;;;-1:-1:-1;1027:21:6;783:280;1027:21;-1:-1:-1;1083:6:6;410:696;-1:-1:-1;;;410:696:6:o;9889:890:3:-;9942:7;;-1:-1:-1;;;10017:15:3;;10013:99;;-1:-1:-1;;;10052:15:3;;;-1:-1:-1;10095:2:3;10085:12;10013:99;10138:6;10129:5;:15;10125:99;;10173:6;10164:15;;;-1:-1:-1;10207:2:3;10197:12;10125:99;10250:6;10241:5;:15;10237:99;;10285:6;10276:15;;;-1:-1:-1;10319:2:3;10309:12;10237:99;10362:5;10353;:14;10349:96;;10396:5;10387:14;;;-1:-1:-1;10429:1:3;10419:11;10349:96;10471:5;10462;:14;10458:96;;10505:5;10496:14;;;-1:-1:-1;10538:1:3;10528:11;10458:96;10580:5;10571;:14;10567:96;;10614:5;10605:14;;;-1:-1:-1;10647:1:3;10637:11;10567:96;10689:5;10680;:14;10676:64;;10724:1;10714:11;10766:6;9889:890;-1:-1:-1;;9889:890:3:o;14:131:8:-;-1:-1:-1;;;;;;88:32:8;;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:8;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:8;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:8: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:8;;1348:180;-1:-1:-1;1348:180:8:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:8;;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:8:o;2360:186::-;2419:6;2472:2;2460:9;2451:7;2447:23;2443:32;2440:52;;;2488:1;2485;2478:12;2440:52;2511:29;2530:9;2511:29;:::i;2551:328::-;2628:6;2636;2644;2697:2;2685:9;2676:7;2672:23;2668:32;2665:52;;;2713:1;2710;2703:12;2665:52;2736:29;2755:9;2736:29;:::i;:::-;2726:39;;2784:38;2818:2;2807:9;2803:18;2784:38;:::i;:::-;2774:48;;2869:2;2858:9;2854:18;2841:32;2831:42;;2551:328;;;;;:::o;2884:160::-;2949:20;;3005:13;;2998:21;2988:32;;2978:60;;3034:1;3031;3024:12;3049:180;3105:6;3158:2;3146:9;3137:7;3133:23;3129:32;3126:52;;;3174:1;3171;3164:12;3126:52;3197:26;3213:9;3197:26;:::i;3234:127::-;3295:10;3290:3;3286:20;3283:1;3276:31;3326:4;3323:1;3316:15;3350:4;3347:1;3340:15;3366:632;3431:5;3461:18;3502:2;3494:6;3491:14;3488:40;;;3508:18;;:::i;:::-;3583:2;3577:9;3551:2;3637:15;;-1:-1:-1;;3633:24:8;;;3659:2;3629:33;3625:42;3613:55;;;3683:18;;;3703:22;;;3680:46;3677:72;;;3729:18;;:::i;:::-;3769:10;3765:2;3758:22;3798:6;3789:15;;3828:6;3820;3813:22;3868:3;3859:6;3854:3;3850:16;3847:25;3844:45;;;3885:1;3882;3875:12;3844:45;3935:6;3930:3;3923:4;3915:6;3911:17;3898:44;3990:1;3983:4;3974:6;3966;3962:19;3958:30;3951:41;;;;3366:632;;;;;:::o;4003:451::-;4072:6;4125:2;4113:9;4104:7;4100:23;4096:32;4093:52;;;4141:1;4138;4131:12;4093:52;4181:9;4168:23;4214:18;4206:6;4203:30;4200:50;;;4246:1;4243;4236:12;4200:50;4269:22;;4322:4;4314:13;;4310:27;-1:-1:-1;4300:55:8;;4351:1;4348;4341:12;4300:55;4374:74;4440:7;4435:2;4422:16;4417:2;4413;4409:11;4374:74;:::i;4459:254::-;4524:6;4532;4585:2;4573:9;4564:7;4560:23;4556:32;4553:52;;;4601:1;4598;4591:12;4553:52;4624:29;4643:9;4624:29;:::i;:::-;4614:39;;4672:35;4703:2;4692:9;4688:18;4672:35;:::i;:::-;4662:45;;4459:254;;;;;:::o;4718:367::-;4781:8;4791:6;4845:3;4838:4;4830:6;4826:17;4822:27;4812:55;;4863:1;4860;4853:12;4812:55;-1:-1:-1;4886:20:8;;4929:18;4918:30;;4915:50;;;4961:1;4958;4951:12;4915:50;4998:4;4990:6;4986:17;4974:29;;5058:3;5051:4;5041:6;5038:1;5034:14;5026:6;5022:27;5018:38;5015:47;5012:67;;;5075:1;5072;5065:12;5012:67;4718:367;;;;;:::o;5090:505::-;5182:6;5190;5198;5251:2;5239:9;5230:7;5226:23;5222:32;5219:52;;;5267:1;5264;5257:12;5219:52;5307:9;5294:23;5340:18;5332:6;5329:30;5326:50;;;5372:1;5369;5362:12;5326:50;5411:70;5473:7;5464:6;5453:9;5449:22;5411:70;:::i;:::-;5500:8;;-1:-1:-1;5385:96:8;-1:-1:-1;5554:35:8;;-1:-1:-1;5585:2:8;5570:18;;5554:35;:::i;:::-;5544:45;;5090:505;;;;;:::o;5600:667::-;5695:6;5703;5711;5719;5772:3;5760:9;5751:7;5747:23;5743:33;5740:53;;;5789:1;5786;5779:12;5740:53;5812:29;5831:9;5812:29;:::i;:::-;5802:39;;5860:38;5894:2;5883:9;5879:18;5860:38;:::i;:::-;5850:48;;5945:2;5934:9;5930:18;5917:32;5907:42;;6000:2;5989:9;5985:18;5972:32;6027:18;6019:6;6016:30;6013:50;;;6059:1;6056;6049:12;6013:50;6082:22;;6135:4;6127:13;;6123:27;-1:-1:-1;6113:55:8;;6164:1;6161;6154:12;6113:55;6187:74;6253:7;6248:2;6235:16;6230:2;6226;6222:11;6187:74;:::i;:::-;6177:84;;;5600:667;;;;;;;:::o;6272:773::-;6394:6;6402;6410;6418;6471:2;6459:9;6450:7;6446:23;6442:32;6439:52;;;6487:1;6484;6477:12;6439:52;6527:9;6514:23;6556:18;6597:2;6589:6;6586:14;6583:34;;;6613:1;6610;6603:12;6583:34;6652:70;6714:7;6705:6;6694:9;6690:22;6652:70;:::i;:::-;6741:8;;-1:-1:-1;6626:96:8;-1:-1:-1;6829:2:8;6814:18;;6801:32;;-1:-1:-1;6845:16:8;;;6842:36;;;6874:1;6871;6864:12;6842:36;;6913:72;6977:7;6966:8;6955:9;6951:24;6913:72;:::i;:::-;6272:773;;;;-1:-1:-1;7004:8:8;-1:-1:-1;;;;6272:773:8:o;7050:260::-;7118:6;7126;7179:2;7167:9;7158:7;7154:23;7150:32;7147:52;;;7195:1;7192;7185:12;7147:52;7218:29;7237:9;7218:29;:::i;:::-;7208:39;;7266:38;7300:2;7289:9;7285:18;7266:38;:::i;7315:380::-;7394:1;7390:12;;;;7437;;;7458:61;;7512:4;7504:6;7500:17;7490:27;;7458:61;7565:2;7557:6;7554:14;7534:18;7531:38;7528:161;;7611:10;7606:3;7602:20;7599:1;7592:31;7646:4;7643:1;7636:15;7674:4;7671:1;7664:15;7528:161;;7315:380;;;:::o;8395:545::-;8497:2;8492:3;8489:11;8486:448;;;8533:1;8558:5;8554:2;8547:17;8603:4;8599:2;8589:19;8673:2;8661:10;8657:19;8654:1;8650:27;8644:4;8640:38;8709:4;8697:10;8694:20;8691:47;;;-1:-1:-1;8732:4:8;8691:47;8787:2;8782:3;8778:12;8775:1;8771:20;8765:4;8761:31;8751:41;;8842:82;8860:2;8853:5;8850:13;8842:82;;;8905:17;;;8886:1;8875:13;8842:82;;9116:1352;9242:3;9236:10;9269:18;9261:6;9258:30;9255:56;;;9291:18;;:::i;:::-;9320:97;9410:6;9370:38;9402:4;9396:11;9370:38;:::i;:::-;9364:4;9320:97;:::i;:::-;9472:4;;9536:2;9525:14;;9553:1;9548:663;;;;10255:1;10272:6;10269:89;;;-1:-1:-1;10324:19:8;;;10318:26;10269:89;-1:-1:-1;;9073:1:8;9069:11;;;9065:24;9061:29;9051:40;9097:1;9093:11;;;9048:57;10371:81;;9518:944;;9548:663;8342:1;8335:14;;;8379:4;8366:18;;-1:-1:-1;;9584:20:8;;;9702:236;9716:7;9713:1;9710:14;9702:236;;;9805:19;;;9799:26;9784:42;;9897:27;;;;9865:1;9853:14;;;;9732:19;;9702:236;;;9706:3;9966:6;9957:7;9954:19;9951:201;;;10027:19;;;10021:26;-1:-1:-1;;10110:1:8;10106:14;;;10122:3;10102:24;10098:37;10094:42;10079:58;10064:74;;9951:201;-1:-1:-1;;;;;10198:1:8;10182:14;;;10178:22;10165:36;;-1:-1:-1;9116:1352:8:o;10473:127::-;10534:10;10529:3;10525:20;10522:1;10515:31;10565:4;10562:1;10555:15;10589:4;10586:1;10579:15;10605:232;10644:3;10665:17;;;10662:140;;10724:10;10719:3;10715:20;10712:1;10705:31;10759:4;10756:1;10749:15;10787:4;10784:1;10777:15;10662:140;-1:-1:-1;10829:1:8;10818:13;;10605:232::o;11868:1187::-;12145:3;12174:1;12207:6;12201:13;12237:36;12263:9;12237:36;:::i;:::-;12292:1;12309:18;;;12336:133;;;;12483:1;12478:356;;;;12302:532;;12336:133;-1:-1:-1;;12369:24:8;;12357:37;;12442:14;;12435:22;12423:35;;12414:45;;;-1:-1:-1;12336:133:8;;12478:356;12509:6;12506:1;12499:17;12539:4;12584:2;12581:1;12571:16;12609:1;12623:165;12637:6;12634:1;12631:13;12623:165;;;12715:14;;12702:11;;;12695:35;12758:16;;;;12652:10;;12623:165;;;12627:3;;;12817:6;12812:3;12808:16;12801:23;;12302:532;;;;;12865:6;12859:13;12881:68;12940:8;12935:3;12928:4;12920:6;12916:17;12881:68;:::i;:::-;-1:-1:-1;;;12971:18:8;;12998:22;;;13047:1;13036:13;;11868:1187;-1:-1:-1;;;;11868:1187:8:o;14535:489::-;-1:-1:-1;;;;;14804:15:8;;;14786:34;;14856:15;;14851:2;14836:18;;14829:43;14903:2;14888:18;;14881:34;;;14951:3;14946:2;14931:18;;14924:31;;;14729:4;;14972:46;;14998:19;;14990:6;14972:46;:::i;:::-;14964:54;14535:489;-1:-1:-1;;;;;;14535:489:8:o;15029:249::-;15098:6;15151:2;15139:9;15130:7;15126:23;15122:32;15119:52;;;15167:1;15164;15157:12;15119:52;15199:9;15193:16;15218:30;15242:5;15218:30;:::i
Swarm Source
ipfs://a57c2c727fb273743b392635754b7d2355cee8715038ed4e68513fe0946ba607
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.