ERC-721
Overview
Max Total Supply
7,425 DARK
Holders
973
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 DARKLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Firefliez
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-21 */ // SPDX-License-Identifier: Unlicense // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * 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(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 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`. * * 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 calldata data ) external; /** * @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 ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // 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` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (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 auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ 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, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev 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)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // 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] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool 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)) } } } } /** * @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 Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prices a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime prices. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_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) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @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] = _HEX_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); } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol // 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; } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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); } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas price * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @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`. * * 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 calldata data ) external; /** * @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 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 ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @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); } // File: Firefliez.sol pragma solidity ^0.8.0; contract Firefliez is ERC721A, Ownable { using Strings for uint256; string private baseURI = "https://firefliez.s3.amazonaws.com/metadata/"; uint256 public price = 0.001 ether; uint256 public maxPerTx = 20; uint256 public maxFreePerWallet = 1; uint256 public maxFree = 3333; uint256 public maxSupply = 6666; uint256 public totalFreeMinted = 0; mapping(address => uint256) public _mintedFreeAmount; constructor() ERC721A("Firefliez", "DARK") {} function mintFree(uint256 _mintAmount) external payable { uint256 addressFreeMintedCount = _mintedFreeAmount[msg.sender]; require(addressFreeMintedCount + _mintAmount <= maxFreePerWallet, "Max Firefliez per address exceeded"); require(_mintAmount > 0, "Cannot mint 0 Firefliez" ); require(totalFreeMinted + _mintAmount <= maxFree, "Cannot exceed Free Firefliez supply" ); _mintedFreeAmount[msg.sender]++; totalFreeMinted++; _safeMint(msg.sender, _mintAmount); delete addressFreeMintedCount; } function mint(uint256 _mintAmount) external payable { uint256 s = totalSupply(); require(_mintAmount > 0, "Cannot mint 0 Firefliez"); require(_mintAmount <= maxPerTx, "Cannot mint more Firefliez per transaction" ); require(s + _mintAmount <= maxSupply, "Cannot exceed Firefliez supply"); require(msg.value >= price * _mintAmount); _safeMint(msg.sender, _mintAmount); delete s; } function gift(uint256[] calldata quantity, address[] calldata recipient) external onlyOwner { require( quantity.length == recipient.length, "Provide quantities and recipients" ); uint256 totalQuantity = 0; uint256 s = totalSupply(); for (uint256 i = 0; i < quantity.length; ++i) { totalQuantity += quantity[i]; } require(s + totalQuantity <= maxSupply, "Too many Firefliez"); delete totalQuantity; for (uint256 i = 0; i < recipient.length; ++i) { _safeMint(recipient[i], quantity[i]); } delete s; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string(abi.encodePacked(baseURI, tokenId.toString(), ".json")); } function setBaseURI(string memory uri) public onlyOwner { baseURI = uri; } function setPrice(uint256 _newPrice) external onlyOwner { price = _newPrice; } function setmaxFreeSupply(uint256 _newMaxFreeSupply) public onlyOwner { maxFree = _newMaxFreeSupply; } function setSupply(uint256 _newMaxSupply) public onlyOwner { maxSupply = _newMaxSupply; } function withdraw() external onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success, "Transfer failed"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"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":"_mintedFreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintFree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFreeSupply","type":"uint256"}],"name":"setmaxFreeSupply","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":"totalFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e0604052602c60808181529062001fde60a039805162000029916009916020909101906200012c565b5066038d7ea4c68000600a556014600b556001600c55610d05600d55611a0a600e556000600f553480156200005d57600080fd5b5060408051808201825260098152682334b932b33634b2bd60b91b6020808301918252835180850190945260048452634441524b60e01b908401528151919291620000ab916002916200012c565b508051620000c19060039060208401906200012c565b5050600160005550620000d433620000da565b6200020f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013a90620001d2565b90600052602060002090601f0160209004810192826200015e5760008555620001a9565b82601f106200017957805160ff1916838001178555620001a9565b82800160010185558215620001a9579182015b82811115620001a95782518255916020019190600101906200018c565b50620001b7929150620001bb565b5090565b5b80821115620001b75760008155600101620001bc565b600181811c90821680620001e757607f821691505b602082108114156200020957634e487b7160e01b600052602260045260246000fd5b50919050565b611dbf806200021f6000396000f3fe6080604052600436106101e35760003560e01c806395d89b4111610102578063bde12d7311610095578063e985e9c511610064578063e985e9c514610531578063f2fde38b1461057a578063f4db2acb1461059a578063f968adbe146105c757600080fd5b8063bde12d73146104c5578063c87b56dd146104e5578063d5abeb0114610505578063dad7b5c91461051b57600080fd5b8063a22cb465116100d1578063a22cb4651461045c578063a41467331461047c578063a70273571461048f578063b88d4fde146104a557600080fd5b806395d89b41146103fe57806396ea3a4714610413578063a035b1fe14610433578063a0712d681461044957600080fd5b806342842e0e1161017a57806370a082311161014957806370a082311461038b578063715018a6146103ab5780638da5cb5b146103c057806391b7f5ed146103de57600080fd5b806342842e0e14610315578063485a68a31461033557806355f804b31461034b5780636352211e1461036b57600080fd5b806318160ddd116101b657806318160ddd1461029957806323b872dd146102c05780633b4c4b25146102e05780633ccfd60b1461030057600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b506102086102033660046119ff565b6105dd565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023261062f565b6040516102149190611bdb565b34801561024b57600080fd5b5061025f61025a366004611a82565b6106c1565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611969565b610705565b005b3480156102a557600080fd5b5060015460005403600019015b604051908152602001610214565b3480156102cc57600080fd5b506102976102db366004611875565b6107d8565b3480156102ec57600080fd5b506102976102fb366004611a82565b6107e8565b34801561030c57600080fd5b50610297610820565b34801561032157600080fd5b50610297610330366004611875565b6108d7565b34801561034157600080fd5b506102b2600d5481565b34801561035757600080fd5b50610297610366366004611a39565b6108f2565b34801561037757600080fd5b5061025f610386366004611a82565b610933565b34801561039757600080fd5b506102b26103a6366004611827565b61093e565b3480156103b757600080fd5b5061029761098d565b3480156103cc57600080fd5b506008546001600160a01b031661025f565b3480156103ea57600080fd5b506102976103f9366004611a82565b6109c3565b34801561040a57600080fd5b506102326109f2565b34801561041f57600080fd5b5061029761042e366004611993565b610a01565b34801561043f57600080fd5b506102b2600a5481565b610297610457366004611a82565b610b9e565b34801561046857600080fd5b5061029761047736600461192d565b610ce3565b61029761048a366004611a82565b610d79565b34801561049b57600080fd5b506102b2600c5481565b3480156104b157600080fd5b506102976104c03660046118b1565b610ee3565b3480156104d157600080fd5b506102976104e0366004611a82565b610f2d565b3480156104f157600080fd5b50610232610500366004611a82565b610f5c565b34801561051157600080fd5b506102b2600e5481565b34801561052757600080fd5b506102b2600f5481565b34801561053d57600080fd5b5061020861054c366004611842565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561058657600080fd5b50610297610595366004611827565b610ffd565b3480156105a657600080fd5b506102b26105b5366004611827565b60106020526000908152604090205481565b3480156105d357600080fd5b506102b2600b5481565b60006301ffc9a760e01b6001600160e01b03198316148061060e57506380ac58cd60e01b6001600160e01b03198316145b806106295750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461063e90611cb1565b80601f016020809104026020016040519081016040528092919081815260200182805461066a90611cb1565b80156106b75780601f1061068c576101008083540402835291602001916106b7565b820191906000526020600020905b81548152906001019060200180831161069a57829003601f168201915b5050505050905090565b60006106cc82611095565b6106e9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610710826110ca565b9050806001600160a01b0316836001600160a01b031614156107455760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461077c5761075f813361054c565b61077c576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6107e383838361113a565b505050565b6008546001600160a01b0316331461081b5760405162461bcd60e51b815260040161081290611bee565b60405180910390fd5b600e55565b6008546001600160a01b0316331461084a5760405162461bcd60e51b815260040161081290611bee565b604051600090339047908381818185875af1925050503d806000811461088c576040519150601f19603f3d011682016040523d82523d6000602084013e610891565b606091505b50509050806108d45760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610812565b50565b6107e383838360405180602001604052806000815250610ee3565b6008546001600160a01b0316331461091c5760405162461bcd60e51b815260040161081290611bee565b805161092f9060099060208401906116b0565b5050565b6000610629826110ca565b60006001600160a01b038216610967576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109b75760405162461bcd60e51b815260040161081290611bee565b6109c160006112dd565b565b6008546001600160a01b031633146109ed5760405162461bcd60e51b815260040161081290611bee565b600a55565b60606003805461063e90611cb1565b6008546001600160a01b03163314610a2b5760405162461bcd60e51b815260040161081290611bee565b828114610a845760405162461bcd60e51b815260206004820152602160248201527f50726f76696465207175616e74697469657320616e6420726563697069656e746044820152607360f81b6064820152608401610812565b600080610a9a6001546000546000199190030190565b905060005b85811015610add57868682818110610ab957610ab9611d47565b9050602002013583610acb9190611c23565b9250610ad681611cec565b9050610a9f565b50600e54610aeb8383611c23565b1115610b2e5760405162461bcd60e51b81526020600482015260126024820152712a37b79036b0b73c902334b932b33634b2bd60711b6044820152606401610812565b6000915060005b83811015610b9557610b85858583818110610b5257610b52611d47565b9050602002016020810190610b679190611827565b888884818110610b7957610b79611d47565b9050602002013561132f565b610b8e81611cec565b9050610b35565b50505050505050565b6000610bb36001546000546000199190030190565b905060008211610bff5760405162461bcd60e51b815260206004820152601760248201527621b0b73737ba1036b4b73a1018102334b932b33634b2bd60491b6044820152606401610812565b600b54821115610c645760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f74206d696e74206d6f72652046697265666c69657a2070657220746044820152693930b739b0b1ba34b7b760b11b6064820152608401610812565b600e54610c718383611c23565b1115610cbf5760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f74206578636565642046697265666c69657a20737570706c7900006044820152606401610812565b81600a54610ccd9190611c4f565b341015610cd957600080fd5b61092f338361132f565b6001600160a01b038216331415610d0d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b33600090815260106020526040902054600c54610d968383611c23565b1115610def5760405162461bcd60e51b815260206004820152602260248201527f4d61782046697265666c69657a20706572206164647265737320657863656564604482015261195960f21b6064820152608401610812565b60008211610e395760405162461bcd60e51b815260206004820152601760248201527621b0b73737ba1036b4b73a1018102334b932b33634b2bd60491b6044820152606401610812565b600d5482600f54610e4a9190611c23565b1115610ea45760405162461bcd60e51b815260206004820152602360248201527f43616e6e6f742065786365656420467265652046697265666c69657a20737570604482015262706c7960e81b6064820152608401610812565b336000908152601060205260408120805491610ebf83611cec565b9091555050600f8054906000610ed483611cec565b919050555061092f338361132f565b610eee84848461113a565b6001600160a01b0383163b15610f2757610f0a84848484611349565b610f27576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610f575760405162461bcd60e51b815260040161081290611bee565b600d55565b6060610f6782611095565b610fcb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610812565b6009610fd683611441565b604051602001610fe7929190611ae3565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146110275760405162461bcd60e51b815260040161081290611bee565b6001600160a01b03811661108c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610812565b6108d4816112dd565b6000816001111580156110a9575060005482105b8015610629575050600090815260046020526040902054600160e01b161590565b600081806001116111215760005481101561112157600081815260046020526040902054600160e01b811661111f575b806111185750600019016000818152600460205260409020546110fa565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611145826110ca565b9050836001600160a01b0316816001600160a01b0316146111785760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806111965750611196853361054c565b806111b15750336111a6846106c1565b6001600160a01b0316145b9050806111d157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111f857604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b86178117909155821661129557600183016000818152600460205260409020546112935760005481146112935760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61092f82826040518060200160405280600081525061153f565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061137e903390899088908890600401611b9e565b602060405180830381600087803b15801561139857600080fd5b505af19250505080156113c8575060408051601f3d908101601f191682019092526113c591810190611a1c565b60015b611423573d8080156113f6576040519150601f19603f3d011682016040523d82523d6000602084013e6113fb565b606091505b50805161141b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816114655750506040805180820190915260018152600360fc1b602082015290565b8160005b811561148f578061147981611cec565b91506114889050600a83611c3b565b9150611469565b60008167ffffffffffffffff8111156114aa576114aa611d5d565b6040519080825280601f01601f1916602001820160405280156114d4576020820181803683370190505b5090505b8415611439576114e9600183611c6e565b91506114f6600a86611d07565b611501906030611c23565b60f81b81838151811061151657611516611d47565b60200101906001600160f81b031916908160001a905350611538600a86611c3b565b94506114d8565b6000546001600160a01b03841661156857604051622e076360e81b815260040160405180910390fd5b826115865760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b1561165b575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46116246000878480600101955087611349565b611641576040516368d2bf6b60e11b815260040160405180910390fd5b8082106115d957826000541461165657600080fd5b6116a0565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061165c575b506000908155610f279085838684565b8280546116bc90611cb1565b90600052602060002090601f0160209004810192826116de5760008555611724565b82601f106116f757805160ff1916838001178555611724565b82800160010185558215611724579182015b82811115611724578251825591602001919060010190611709565b50611730929150611734565b5090565b5b808211156117305760008155600101611735565b600067ffffffffffffffff8084111561176457611764611d5d565b604051601f8501601f19908116603f0116810190828211818310171561178c5761178c611d5d565b816040528093508581528686860111156117a557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146117d657600080fd5b919050565b60008083601f8401126117ed57600080fd5b50813567ffffffffffffffff81111561180557600080fd5b6020830191508360208260051b850101111561182057600080fd5b9250929050565b60006020828403121561183957600080fd5b611118826117bf565b6000806040838503121561185557600080fd5b61185e836117bf565b915061186c602084016117bf565b90509250929050565b60008060006060848603121561188a57600080fd5b611893846117bf565b92506118a1602085016117bf565b9150604084013590509250925092565b600080600080608085870312156118c757600080fd5b6118d0856117bf565b93506118de602086016117bf565b925060408501359150606085013567ffffffffffffffff81111561190157600080fd5b8501601f8101871361191257600080fd5b61192187823560208401611749565b91505092959194509250565b6000806040838503121561194057600080fd5b611949836117bf565b91506020830135801515811461195e57600080fd5b809150509250929050565b6000806040838503121561197c57600080fd5b611985836117bf565b946020939093013593505050565b600080600080604085870312156119a957600080fd5b843567ffffffffffffffff808211156119c157600080fd5b6119cd888389016117db565b909650945060208701359150808211156119e657600080fd5b506119f3878288016117db565b95989497509550505050565b600060208284031215611a1157600080fd5b813561111881611d73565b600060208284031215611a2e57600080fd5b815161111881611d73565b600060208284031215611a4b57600080fd5b813567ffffffffffffffff811115611a6257600080fd5b8201601f81018413611a7357600080fd5b61143984823560208401611749565b600060208284031215611a9457600080fd5b5035919050565b60008151808452611ab3816020860160208601611c85565b601f01601f19169290920160200192915050565b60008151611ad9818560208601611c85565b9290920192915050565b600080845481600182811c915080831680611aff57607f831692505b6020808410821415611b1f57634e487b7160e01b86526022600452602486fd5b818015611b335760018114611b4457611b71565b60ff19861689528489019650611b71565b60008b81526020902060005b86811015611b695781548b820152908501908301611b50565b505084890196505b505050505050611b95611b848286611ac7565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611bd190830184611a9b565b9695505050505050565b6020815260006111186020830184611a9b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611c3657611c36611d1b565b500190565b600082611c4a57611c4a611d31565b500490565b6000816000190483118215151615611c6957611c69611d1b565b500290565b600082821015611c8057611c80611d1b565b500390565b60005b83811015611ca0578181015183820152602001611c88565b83811115610f275750506000910152565b600181811c90821680611cc557607f821691505b60208210811415611ce657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d0057611d00611d1b565b5060010190565b600082611d1657611d16611d31565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108d457600080fdfea2646970667358221220bb3913887994b8b0409e18b124736e48214e09568de93eaf86bbdc11ffe3fe3564736f6c6343000807003368747470733a2f2f66697265666c69657a2e73332e616d617a6f6e6177732e636f6d2f6d657461646174612f
Deployed Bytecode
0x6080604052600436106101e35760003560e01c806395d89b4111610102578063bde12d7311610095578063e985e9c511610064578063e985e9c514610531578063f2fde38b1461057a578063f4db2acb1461059a578063f968adbe146105c757600080fd5b8063bde12d73146104c5578063c87b56dd146104e5578063d5abeb0114610505578063dad7b5c91461051b57600080fd5b8063a22cb465116100d1578063a22cb4651461045c578063a41467331461047c578063a70273571461048f578063b88d4fde146104a557600080fd5b806395d89b41146103fe57806396ea3a4714610413578063a035b1fe14610433578063a0712d681461044957600080fd5b806342842e0e1161017a57806370a082311161014957806370a082311461038b578063715018a6146103ab5780638da5cb5b146103c057806391b7f5ed146103de57600080fd5b806342842e0e14610315578063485a68a31461033557806355f804b31461034b5780636352211e1461036b57600080fd5b806318160ddd116101b657806318160ddd1461029957806323b872dd146102c05780633b4c4b25146102e05780633ccfd60b1461030057600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b506102086102033660046119ff565b6105dd565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023261062f565b6040516102149190611bdb565b34801561024b57600080fd5b5061025f61025a366004611a82565b6106c1565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611969565b610705565b005b3480156102a557600080fd5b5060015460005403600019015b604051908152602001610214565b3480156102cc57600080fd5b506102976102db366004611875565b6107d8565b3480156102ec57600080fd5b506102976102fb366004611a82565b6107e8565b34801561030c57600080fd5b50610297610820565b34801561032157600080fd5b50610297610330366004611875565b6108d7565b34801561034157600080fd5b506102b2600d5481565b34801561035757600080fd5b50610297610366366004611a39565b6108f2565b34801561037757600080fd5b5061025f610386366004611a82565b610933565b34801561039757600080fd5b506102b26103a6366004611827565b61093e565b3480156103b757600080fd5b5061029761098d565b3480156103cc57600080fd5b506008546001600160a01b031661025f565b3480156103ea57600080fd5b506102976103f9366004611a82565b6109c3565b34801561040a57600080fd5b506102326109f2565b34801561041f57600080fd5b5061029761042e366004611993565b610a01565b34801561043f57600080fd5b506102b2600a5481565b610297610457366004611a82565b610b9e565b34801561046857600080fd5b5061029761047736600461192d565b610ce3565b61029761048a366004611a82565b610d79565b34801561049b57600080fd5b506102b2600c5481565b3480156104b157600080fd5b506102976104c03660046118b1565b610ee3565b3480156104d157600080fd5b506102976104e0366004611a82565b610f2d565b3480156104f157600080fd5b50610232610500366004611a82565b610f5c565b34801561051157600080fd5b506102b2600e5481565b34801561052757600080fd5b506102b2600f5481565b34801561053d57600080fd5b5061020861054c366004611842565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561058657600080fd5b50610297610595366004611827565b610ffd565b3480156105a657600080fd5b506102b26105b5366004611827565b60106020526000908152604090205481565b3480156105d357600080fd5b506102b2600b5481565b60006301ffc9a760e01b6001600160e01b03198316148061060e57506380ac58cd60e01b6001600160e01b03198316145b806106295750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461063e90611cb1565b80601f016020809104026020016040519081016040528092919081815260200182805461066a90611cb1565b80156106b75780601f1061068c576101008083540402835291602001916106b7565b820191906000526020600020905b81548152906001019060200180831161069a57829003601f168201915b5050505050905090565b60006106cc82611095565b6106e9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610710826110ca565b9050806001600160a01b0316836001600160a01b031614156107455760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461077c5761075f813361054c565b61077c576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6107e383838361113a565b505050565b6008546001600160a01b0316331461081b5760405162461bcd60e51b815260040161081290611bee565b60405180910390fd5b600e55565b6008546001600160a01b0316331461084a5760405162461bcd60e51b815260040161081290611bee565b604051600090339047908381818185875af1925050503d806000811461088c576040519150601f19603f3d011682016040523d82523d6000602084013e610891565b606091505b50509050806108d45760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610812565b50565b6107e383838360405180602001604052806000815250610ee3565b6008546001600160a01b0316331461091c5760405162461bcd60e51b815260040161081290611bee565b805161092f9060099060208401906116b0565b5050565b6000610629826110ca565b60006001600160a01b038216610967576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109b75760405162461bcd60e51b815260040161081290611bee565b6109c160006112dd565b565b6008546001600160a01b031633146109ed5760405162461bcd60e51b815260040161081290611bee565b600a55565b60606003805461063e90611cb1565b6008546001600160a01b03163314610a2b5760405162461bcd60e51b815260040161081290611bee565b828114610a845760405162461bcd60e51b815260206004820152602160248201527f50726f76696465207175616e74697469657320616e6420726563697069656e746044820152607360f81b6064820152608401610812565b600080610a9a6001546000546000199190030190565b905060005b85811015610add57868682818110610ab957610ab9611d47565b9050602002013583610acb9190611c23565b9250610ad681611cec565b9050610a9f565b50600e54610aeb8383611c23565b1115610b2e5760405162461bcd60e51b81526020600482015260126024820152712a37b79036b0b73c902334b932b33634b2bd60711b6044820152606401610812565b6000915060005b83811015610b9557610b85858583818110610b5257610b52611d47565b9050602002016020810190610b679190611827565b888884818110610b7957610b79611d47565b9050602002013561132f565b610b8e81611cec565b9050610b35565b50505050505050565b6000610bb36001546000546000199190030190565b905060008211610bff5760405162461bcd60e51b815260206004820152601760248201527621b0b73737ba1036b4b73a1018102334b932b33634b2bd60491b6044820152606401610812565b600b54821115610c645760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f74206d696e74206d6f72652046697265666c69657a2070657220746044820152693930b739b0b1ba34b7b760b11b6064820152608401610812565b600e54610c718383611c23565b1115610cbf5760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f74206578636565642046697265666c69657a20737570706c7900006044820152606401610812565b81600a54610ccd9190611c4f565b341015610cd957600080fd5b61092f338361132f565b6001600160a01b038216331415610d0d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b33600090815260106020526040902054600c54610d968383611c23565b1115610def5760405162461bcd60e51b815260206004820152602260248201527f4d61782046697265666c69657a20706572206164647265737320657863656564604482015261195960f21b6064820152608401610812565b60008211610e395760405162461bcd60e51b815260206004820152601760248201527621b0b73737ba1036b4b73a1018102334b932b33634b2bd60491b6044820152606401610812565b600d5482600f54610e4a9190611c23565b1115610ea45760405162461bcd60e51b815260206004820152602360248201527f43616e6e6f742065786365656420467265652046697265666c69657a20737570604482015262706c7960e81b6064820152608401610812565b336000908152601060205260408120805491610ebf83611cec565b9091555050600f8054906000610ed483611cec565b919050555061092f338361132f565b610eee84848461113a565b6001600160a01b0383163b15610f2757610f0a84848484611349565b610f27576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610f575760405162461bcd60e51b815260040161081290611bee565b600d55565b6060610f6782611095565b610fcb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610812565b6009610fd683611441565b604051602001610fe7929190611ae3565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146110275760405162461bcd60e51b815260040161081290611bee565b6001600160a01b03811661108c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610812565b6108d4816112dd565b6000816001111580156110a9575060005482105b8015610629575050600090815260046020526040902054600160e01b161590565b600081806001116111215760005481101561112157600081815260046020526040902054600160e01b811661111f575b806111185750600019016000818152600460205260409020546110fa565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611145826110ca565b9050836001600160a01b0316816001600160a01b0316146111785760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806111965750611196853361054c565b806111b15750336111a6846106c1565b6001600160a01b0316145b9050806111d157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111f857604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b86178117909155821661129557600183016000818152600460205260409020546112935760005481146112935760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61092f82826040518060200160405280600081525061153f565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061137e903390899088908890600401611b9e565b602060405180830381600087803b15801561139857600080fd5b505af19250505080156113c8575060408051601f3d908101601f191682019092526113c591810190611a1c565b60015b611423573d8080156113f6576040519150601f19603f3d011682016040523d82523d6000602084013e6113fb565b606091505b50805161141b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816114655750506040805180820190915260018152600360fc1b602082015290565b8160005b811561148f578061147981611cec565b91506114889050600a83611c3b565b9150611469565b60008167ffffffffffffffff8111156114aa576114aa611d5d565b6040519080825280601f01601f1916602001820160405280156114d4576020820181803683370190505b5090505b8415611439576114e9600183611c6e565b91506114f6600a86611d07565b611501906030611c23565b60f81b81838151811061151657611516611d47565b60200101906001600160f81b031916908160001a905350611538600a86611c3b565b94506114d8565b6000546001600160a01b03841661156857604051622e076360e81b815260040160405180910390fd5b826115865760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b1561165b575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46116246000878480600101955087611349565b611641576040516368d2bf6b60e11b815260040160405180910390fd5b8082106115d957826000541461165657600080fd5b6116a0565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061165c575b506000908155610f279085838684565b8280546116bc90611cb1565b90600052602060002090601f0160209004810192826116de5760008555611724565b82601f106116f757805160ff1916838001178555611724565b82800160010185558215611724579182015b82811115611724578251825591602001919060010190611709565b50611730929150611734565b5090565b5b808211156117305760008155600101611735565b600067ffffffffffffffff8084111561176457611764611d5d565b604051601f8501601f19908116603f0116810190828211818310171561178c5761178c611d5d565b816040528093508581528686860111156117a557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146117d657600080fd5b919050565b60008083601f8401126117ed57600080fd5b50813567ffffffffffffffff81111561180557600080fd5b6020830191508360208260051b850101111561182057600080fd5b9250929050565b60006020828403121561183957600080fd5b611118826117bf565b6000806040838503121561185557600080fd5b61185e836117bf565b915061186c602084016117bf565b90509250929050565b60008060006060848603121561188a57600080fd5b611893846117bf565b92506118a1602085016117bf565b9150604084013590509250925092565b600080600080608085870312156118c757600080fd5b6118d0856117bf565b93506118de602086016117bf565b925060408501359150606085013567ffffffffffffffff81111561190157600080fd5b8501601f8101871361191257600080fd5b61192187823560208401611749565b91505092959194509250565b6000806040838503121561194057600080fd5b611949836117bf565b91506020830135801515811461195e57600080fd5b809150509250929050565b6000806040838503121561197c57600080fd5b611985836117bf565b946020939093013593505050565b600080600080604085870312156119a957600080fd5b843567ffffffffffffffff808211156119c157600080fd5b6119cd888389016117db565b909650945060208701359150808211156119e657600080fd5b506119f3878288016117db565b95989497509550505050565b600060208284031215611a1157600080fd5b813561111881611d73565b600060208284031215611a2e57600080fd5b815161111881611d73565b600060208284031215611a4b57600080fd5b813567ffffffffffffffff811115611a6257600080fd5b8201601f81018413611a7357600080fd5b61143984823560208401611749565b600060208284031215611a9457600080fd5b5035919050565b60008151808452611ab3816020860160208601611c85565b601f01601f19169290920160200192915050565b60008151611ad9818560208601611c85565b9290920192915050565b600080845481600182811c915080831680611aff57607f831692505b6020808410821415611b1f57634e487b7160e01b86526022600452602486fd5b818015611b335760018114611b4457611b71565b60ff19861689528489019650611b71565b60008b81526020902060005b86811015611b695781548b820152908501908301611b50565b505084890196505b505050505050611b95611b848286611ac7565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611bd190830184611a9b565b9695505050505050565b6020815260006111186020830184611a9b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611c3657611c36611d1b565b500190565b600082611c4a57611c4a611d31565b500490565b6000816000190483118215151615611c6957611c69611d1b565b500290565b600082821015611c8057611c80611d1b565b500390565b60005b83811015611ca0578181015183820152602001611c88565b83811115610f275750506000910152565b600181811c90821680611cc557607f821691505b60208210811415611ce657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d0057611d00611d1b565b5060010190565b600082611d1657611d16611d31565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108d457600080fdfea2646970667358221220bb3913887994b8b0409e18b124736e48214e09568de93eaf86bbdc11ffe3fe3564736f6c63430008070033
Deployed Bytecode Sourcemap
62007:3168:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13109:615;;;;;;;;;;-1:-1:-1;13109:615:0;;;;;:::i;:::-;;:::i;:::-;;;8145:14:1;;8138:22;8120:41;;8108:2;8093:18;13109:615:0;;;;;;;;18122:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;20190:204::-;;;;;;;;;;-1:-1:-1;20190:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7443:32:1;;;7425:51;;7413:2;7398:18;20190:204:0;7279:203:1;19650:474:0;;;;;;;;;;-1:-1:-1;19650:474:0;;;;;:::i;:::-;;:::i;:::-;;12163:315;;;;;;;;;;-1:-1:-1;11769:1:0;12429:12;12216:7;12413:13;:28;-1:-1:-1;;12413:46:0;12163:315;;;12748:25:1;;;12736:2;12721:18;12163:315:0;12602:177:1;21076:170:0;;;;;;;;;;-1:-1:-1;21076:170:0;;;;;:::i;:::-;;:::i;64854:103::-;;;;;;;;;;-1:-1:-1;64854:103:0;;;;;:::i;:::-;;:::i;64965:205::-;;;;;;;;;;;;;:::i;21317:185::-;;;;;;;;;;-1:-1:-1;21317:185:0;;;;;:::i;:::-;;:::i;62293:29::-;;;;;;;;;;;;;;;;64534:88;;;;;;;;;;-1:-1:-1;64534:88:0;;;;;:::i;:::-;;:::i;17911:144::-;;;;;;;;;;-1:-1:-1;17911:144:0;;;;;:::i;:::-;;:::i;13788:224::-;;;;;;;;;;-1:-1:-1;13788:224:0;;;;;:::i;:::-;;:::i;43632:103::-;;;;;;;;;;;;;:::i;42981:87::-;;;;;;;;;;-1:-1:-1;43054:6:0;;-1:-1:-1;;;;;43054:6:0;42981:87;;64630:92;;;;;;;;;;-1:-1:-1;64630:92:0;;;;;:::i;:::-;;:::i;18291:104::-;;;;;;;;;;;;;:::i;63546:663::-;;;;;;;;;;-1:-1:-1;63546:663:0;;;;;:::i;:::-;;:::i;62169:34::-;;;;;;;;;;;;;;;;63092:446;;;;;;:::i;:::-;;:::i;20466:308::-;;;;;;;;;;-1:-1:-1;20466:308:0;;;;;:::i;:::-;;:::i;62528:556::-;;;;;;:::i;:::-;;:::i;62249:35::-;;;;;;;;;;;;;;;;21573:396;;;;;;;;;;-1:-1:-1;21573:396:0;;;;;:::i;:::-;;:::i;64730:116::-;;;;;;;;;;-1:-1:-1;64730:116:0;;;;;:::i;:::-;;:::i;64217:309::-;;;;;;;;;;-1:-1:-1;64217:309:0;;;;;:::i;:::-;;:::i;62331:31::-;;;;;;;;;;;;;;;;62371:34;;;;;;;;;;;;;;;;20845:164;;;;;;;;;;-1:-1:-1;20845:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;20966:25:0;;;20942:4;20966:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;20845:164;43890:201;;;;;;;;;;-1:-1:-1;43890:201:0;;;;;:::i;:::-;;:::i;62414:52::-;;;;;;;;;;-1:-1:-1;62414:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;62212:28;;;;;;;;;;;;;;;;13109:615;13194:4;-1:-1:-1;;;;;;;;;13494:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;13571:25:0;;;13494:102;:179;;;-1:-1:-1;;;;;;;;;;13648:25:0;;;13494:179;13474:199;13109:615;-1:-1:-1;;13109:615:0:o;18122:100::-;18176:13;18209:5;18202:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18122:100;:::o;20190:204::-;20258:7;20283:16;20291:7;20283;:16::i;:::-;20278:64;;20308:34;;-1:-1:-1;;;20308:34:0;;;;;;;;;;;20278:64;-1:-1:-1;20362:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;20362:24:0;;20190:204::o;19650:474::-;19723:13;19755:27;19774:7;19755:18;:27::i;:::-;19723:61;;19805:5;-1:-1:-1;;;;;19799:11:0;:2;-1:-1:-1;;;;;19799:11:0;;19795:48;;;19819:24;;-1:-1:-1;;;19819:24:0;;;;;;;;;;;19795:48;36293:10;-1:-1:-1;;;;;19860:28:0;;;19856:175;;19908:44;19925:5;36293:10;20845:164;:::i;19908:44::-;19903:128;;19980:35;;-1:-1:-1;;;19980:35:0;;;;;;;;;;;19903:128;20043:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;20043:29:0;-1:-1:-1;;;;;20043:29:0;;;;;;;;;20088:28;;20043:24;;20088:28;;;;;;;19712:412;19650:474;;:::o;21076:170::-;21210:28;21220:4;21226:2;21230:7;21210:9;:28::i;:::-;21076:170;;;:::o;64854:103::-;43054:6;;-1:-1:-1;;;;;43054:6:0;36293:10;43201:23;43193:68;;;;-1:-1:-1;;;43193:68:0;;;;;;;:::i;:::-;;;;;;;;;64924:9:::1;:25:::0;64854:103::o;64965:205::-;43054:6;;-1:-1:-1;;;;;43054:6:0;36293:10;43201:23;43193:68;;;;-1:-1:-1;;;43193:68:0;;;;;;;:::i;:::-;65034:82:::1;::::0;65016:12:::1;::::0;65042:10:::1;::::0;65080:21:::1;::::0;65016:12;65034:82;65016:12;65034:82;65080:21;65042:10;65034:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65015:101;;;65135:7;65127:35;;;::::0;-1:-1:-1;;;65127:35:0;;9711:2:1;65127:35:0::1;::::0;::::1;9693:21:1::0;9750:2;9730:18;;;9723:30;-1:-1:-1;;;9769:18:1;;;9762:45;9824:18;;65127:35:0::1;9509:339:1::0;65127:35:0::1;65004:166;64965:205::o:0;21317:185::-;21455:39;21472:4;21478:2;21482:7;21455:39;;;;;;;;;;;;:16;:39::i;64534:88::-;43054:6;;-1:-1:-1;;;;;43054:6:0;36293:10;43201:23;43193:68;;;;-1:-1:-1;;;43193:68:0;;;;;;;:::i;:::-;64601:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;64534:88:::0;:::o;17911:144::-;17975:7;18018:27;18037:7;18018:18;:27::i;13788:224::-;13852:7;-1:-1:-1;;;;;13876:19:0;;13872:60;;13904:28;;-1:-1:-1;;;13904:28:0;;;;;;;;;;;13872:60;-1:-1:-1;;;;;;13950:25:0;;;;;:18;:25;;;;;;9127:13;13950:54;;13788:224::o;43632:103::-;43054:6;;-1:-1:-1;;;;;43054:6:0;36293:10;43201:23;43193:68;;;;-1:-1:-1;;;43193:68:0;;;;;;;:::i;:::-;43697:30:::1;43724:1;43697:18;:30::i;:::-;43632:103::o:0;64630:92::-;43054:6;;-1:-1:-1;;;;;43054:6:0;36293:10;43201:23;43193:68;;;;-1:-1:-1;;;43193:68:0;;;;;;;:::i;:::-;64697:5:::1;:17:::0;64630:92::o;18291:104::-;18347:13;18380:7;18373:14;;;;;:::i;63546:663::-;43054:6;;-1:-1:-1;;;;;43054:6:0;36293:10;43201:23;43193:68;;;;-1:-1:-1;;;43193:68:0;;;;;;;:::i;:::-;63680:35;;::::1;63658:118;;;::::0;-1:-1:-1;;;63658:118:0;;10869:2:1;63658:118:0::1;::::0;::::1;10851:21:1::0;10908:2;10888:18;;;10881:30;10947:34;10927:18;;;10920:62;-1:-1:-1;;;10998:18:1;;;10991:31;11039:19;;63658:118:0::1;10667:397:1::0;63658:118:0::1;63787:21;63823:9:::0;63835:13:::1;11769:1:::0;12429:12;12216:7;12413:13;-1:-1:-1;;12413:28:0;;;:46;;12163:315;63835:13:::1;63823:25;;63864:9;63859:101;63879:19:::0;;::::1;63859:101;;;63937:8;;63946:1;63937:11;;;;;;;:::i;:::-;;;;;;;63920:28;;;;;:::i;:::-;::::0;-1:-1:-1;63900:3:0::1;::::0;::::1;:::i;:::-;;;63859:101;;;-1:-1:-1::0;63999:9:0::1;::::0;63978:17:::1;63982:13:::0;63978:1;:17:::1;:::i;:::-;:30;;63970:61;;;::::0;-1:-1:-1;;;63970:61:0;;8957:2:1;63970:61:0::1;::::0;::::1;8939:21:1::0;8996:2;8976:18;;;8969:30;-1:-1:-1;;;9015:18:1;;;9008:48;9073:18;;63970:61:0::1;8755:342:1::0;63970:61:0::1;64042:20;;;64078:9;64073:110;64093:20:::0;;::::1;64073:110;;;64135:36;64145:9;;64155:1;64145:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;64159:8;;64168:1;64159:11;;;;;;;:::i;:::-;;;;;;;64135:9;:36::i;:::-;64115:3;::::0;::::1;:::i;:::-;;;64073:110;;;-1:-1:-1::0;;;;;;;63546:663:0:o;63092:446::-;63155:9;63167:13;11769:1;12429:12;12216:7;12413:13;-1:-1:-1;;12413:28:0;;;:46;;12163:315;63167:13;63155:25;;63213:1;63199:11;:15;63191:51;;;;-1:-1:-1;;;63191:51:0;;12452:2:1;63191:51:0;;;12434:21:1;12491:2;12471:18;;;12464:30;-1:-1:-1;;;12510:18:1;;;12503:53;12573:18;;63191:51:0;12250:347:1;63191:51:0;63276:8;;63261:11;:23;;63253:79;;;;-1:-1:-1;;;63253:79:0;;10055:2:1;63253:79:0;;;10037:21:1;10094:2;10074:18;;;10067:30;10133:34;10113:18;;;10106:62;-1:-1:-1;;;10184:18:1;;;10177:40;10234:19;;63253:79:0;9853:406:1;63253:79:0;63370:9;;63351:15;63355:11;63351:1;:15;:::i;:::-;:28;;63343:71;;;;-1:-1:-1;;;63343:71:0;;8598:2:1;63343:71:0;;;8580:21:1;8637:2;8617:18;;;8610:30;8676:32;8656:18;;;8649:60;8726:18;;63343:71:0;8396:354:1;63343:71:0;63454:11;63446:5;;:19;;;;:::i;:::-;63433:9;:32;;63425:41;;;;;;63477:34;63487:10;63499:11;63477:9;:34::i;20466:308::-;-1:-1:-1;;;;;20565:31:0;;36293:10;20565:31;20561:61;;;20605:17;;-1:-1:-1;;;20605:17:0;;;;;;;;;;;20561:61;36293:10;20635:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;20635:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;20635:60:0;;;;;;;;;;20711:55;;8120:41:1;;;20635:49:0;;36293:10;20711:55;;8093:18:1;20711:55:0;;;;;;;20466:308;;:::o;62528:556::-;62646:10;62595:30;62628:29;;;:17;:29;;;;;;62716:16;;62676:36;62701:11;62628:29;62676:36;:::i;:::-;:56;;62668:103;;;;-1:-1:-1;;;62668:103:0;;10466:2:1;62668:103:0;;;10448:21:1;10505:2;10485:18;;;10478:30;10544:34;10524:18;;;10517:62;-1:-1:-1;;;10595:18:1;;;10588:32;10637:19;;62668:103:0;10264:398:1;62668:103:0;62798:1;62784:11;:15;62776:52;;;;-1:-1:-1;;;62776:52:0;;12452:2:1;62776:52:0;;;12434:21:1;12491:2;12471:18;;;12464:30;-1:-1:-1;;;12510:18:1;;;12503:53;12573:18;;62776:52:0;12250:347:1;62776:52:0;62874:7;;62859:11;62841:15;;:29;;;;:::i;:::-;:40;;62833:89;;;;-1:-1:-1;;;62833:89:0;;12048:2:1;62833:89:0;;;12030:21:1;12087:2;12067:18;;;12060:30;12126:34;12106:18;;;12099:62;-1:-1:-1;;;12177:18:1;;;12170:33;12220:19;;62833:89:0;11846:399:1;62833:89:0;62953:10;62935:29;;;;:17;:29;;;;;:31;;;;;;:::i;:::-;;;;-1:-1:-1;;62977:15:0;:17;;;:15;:17;;;:::i;:::-;;;;;;63005:34;63015:10;63027:11;63005:9;:34::i;21573:396::-;21740:28;21750:4;21756:2;21760:7;21740:9;:28::i;:::-;-1:-1:-1;;;;;21783:14:0;;;:19;21779:183;;21822:56;21853:4;21859:2;21863:7;21872:5;21822:30;:56::i;:::-;21817:145;;21906:40;;-1:-1:-1;;;21906:40:0;;;;;;;;;;;21817:145;21573:396;;;;:::o;64730:116::-;43054:6;;-1:-1:-1;;;;;43054:6:0;36293:10;43201:23;43193:68;;;;-1:-1:-1;;;43193:68:0;;;;;;;:::i;:::-;64811:7:::1;:27:::0;64730:116::o;64217:309::-;64299:13;64347:16;64355:7;64347;:16::i;:::-;64325:113;;;;-1:-1:-1;;;64325:113:0;;11632:2:1;64325:113:0;;;11614:21:1;11671:2;11651:18;;;11644:30;11710:34;11690:18;;;11683:62;-1:-1:-1;;;11761:18:1;;;11754:45;11816:19;;64325:113:0;11430:411:1;64325:113:0;64480:7;64489:18;:7;:16;:18::i;:::-;64463:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64449:69;;64217:309;;;:::o;43890:201::-;43054:6;;-1:-1:-1;;;;;43054:6:0;36293:10;43201:23;43193:68;;;;-1:-1:-1;;;43193:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43979:22:0;::::1;43971:73;;;::::0;-1:-1:-1;;;43971:73:0;;9304:2:1;43971:73:0::1;::::0;::::1;9286:21:1::0;9343:2;9323:18;;;9316:30;9382:34;9362:18;;;9355:62;-1:-1:-1;;;9433:18:1;;;9426:36;9479:19;;43971:73:0::1;9102:402:1::0;43971:73:0::1;44055:28;44074:8;44055:18;:28::i;22224:273::-:0;22281:4;22337:7;11769:1;22318:26;;:66;;;;;22371:13;;22361:7;:23;22318:66;:152;;;;-1:-1:-1;;22422:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;22422:43:0;:48;;22224:273::o;15426:1129::-;15493:7;15528;;11769:1;15577:23;15573:915;;15630:13;;15623:4;:20;15619:869;;;15668:14;15685:23;;;:17;:23;;;;;;-1:-1:-1;;;15774:23:0;;15770:699;;16293:113;16300:11;16293:113;;-1:-1:-1;;;16371:6:0;16353:25;;;;:17;:25;;;;;;16293:113;;;16439:6;15426:1129;-1:-1:-1;;;15426:1129:0:o;15770:699::-;15645:843;15619:869;16516:31;;-1:-1:-1;;;16516:31:0;;;;;;;;;;;27463:2515;27578:27;27608;27627:7;27608:18;:27::i;:::-;27578:57;;27693:4;-1:-1:-1;;;;;27652:45:0;27668:19;-1:-1:-1;;;;;27652:45:0;;27648:86;;27706:28;;-1:-1:-1;;;27706:28:0;;;;;;;;;;;27648:86;27747:22;36293:10;-1:-1:-1;;;;;27773:27:0;;;;:87;;-1:-1:-1;27817:43:0;27834:4;36293:10;20845:164;:::i;27817:43::-;27773:147;;;-1:-1:-1;36293:10:0;27877:20;27889:7;27877:11;:20::i;:::-;-1:-1:-1;;;;;27877:43:0;;27773:147;27747:174;;27939:17;27934:66;;27965:35;;-1:-1:-1;;;27965:35:0;;;;;;;;;;;27934:66;-1:-1:-1;;;;;28015:16:0;;28011:52;;28040:23;;-1:-1:-1;;;28040:23:0;;;;;;;;;;;28011:52;28192:24;;;;:15;:24;;;;;;;;28185:31;;-1:-1:-1;;;;;;28185:31:0;;;-1:-1:-1;;;;;28584:24:0;;;;;:18;:24;;;;;28582:26;;-1:-1:-1;;28582:26:0;;;28653:22;;;;;;;28651:24;;-1:-1:-1;28651:24:0;;;28946:26;;;:17;:26;;;;;-1:-1:-1;;;29034:15:0;9781:3;29034:41;28992:84;;:128;;28946:174;;;29240:46;;29236:626;;29344:1;29334:11;;29312:19;29467:30;;;:17;:30;;;;;;29463:384;;29605:13;;29590:11;:28;29586:242;;29752:30;;;;:17;:30;;;;;:52;;;29586:242;29293:569;29236:626;29909:7;29905:2;-1:-1:-1;;;;;29890:27:0;29899:4;-1:-1:-1;;;;;29890:27:0;;;;;;;;;;;27567:2411;;27463:2515;;;:::o;44251:191::-;44344:6;;;-1:-1:-1;;;;;44361:17:0;;;-1:-1:-1;;;;;;44361:17:0;;;;;;;44394:40;;44344:6;;;44361:17;44344:6;;44394:40;;44325:16;;44394:40;44314:128;44251:191;:::o;22581:104::-;22650:27;22660:2;22664:8;22650:27;;;;;;;;;;;;:9;:27::i;33675:716::-;33859:88;;-1:-1:-1;;;33859:88:0;;33838:4;;-1:-1:-1;;;;;33859:45:0;;;;;:88;;36293:10;;33926:4;;33932:7;;33941:5;;33859:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33859:88:0;;;;;;;;-1:-1:-1;;33859:88:0;;;;;;;;;;;;:::i;:::-;;;33855:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34142:13:0;;34138:235;;34188:40;;-1:-1:-1;;;34188:40:0;;;;;;;;;;;34138:235;34331:6;34325:13;34316:6;34312:2;34308:15;34301:38;33855:529;-1:-1:-1;;;;;;34018:64:0;-1:-1:-1;;;34018:64:0;;-1:-1:-1;33855:529:0;33675:716;;;;;;:::o;38853:723::-;38909:13;39130:10;39126:53;;-1:-1:-1;;39157:10:0;;;;;;;;;;;;-1:-1:-1;;;39157:10:0;;;;;38853:723::o;39126:53::-;39204:5;39189:12;39245:78;39252:9;;39245:78;;39278:8;;;;:::i;:::-;;-1:-1:-1;39301:10:0;;-1:-1:-1;39309:2:0;39301:10;;:::i;:::-;;;39245:78;;;39333:19;39365:6;39355:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39355:17:0;;39333:39;;39383:154;39390:10;;39383:154;;39417:11;39427:1;39417:11;;:::i;:::-;;-1:-1:-1;39486:10:0;39494:2;39486:5;:10;:::i;:::-;39473:24;;:2;:24;:::i;:::-;39460:39;;39443:6;39450;39443:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;39443:56:0;;;;;;;;-1:-1:-1;39514:11:0;39523:2;39514:11;;:::i;:::-;;;39383:154;;23058:2236;23181:20;23204:13;-1:-1:-1;;;;;23232:16:0;;23228:48;;23257:19;;-1:-1:-1;;;23257:19:0;;;;;;;;;;;23228:48;23291:13;23287:44;;23313:18;;-1:-1:-1;;;23313:18:0;;;;;;;;;;;23287:44;-1:-1:-1;;;;;23880:22:0;;;;;;:18;:22;;;;9264:2;23880:22;;;:70;;23918:31;23906:44;;23880:70;;;24193:31;;;:17;:31;;;;;24286:15;9781:3;24286:41;24244:84;;-1:-1:-1;24364:13:0;;10044:3;24349:56;24244:162;24193:213;;:31;;24487:23;;;;24531:14;:19;24527:635;;24571:313;24602:38;;24627:12;;-1:-1:-1;;;;;24602:38:0;;;24619:1;;24602:38;;24619:1;;24602:38;24668:69;24707:1;24711:2;24715:14;;;;;;24731:5;24668:30;:69::i;:::-;24663:174;;24773:40;;-1:-1:-1;;;24773:40:0;;;;;;;;;;;24663:174;24879:3;24864:12;:18;24571:313;;24965:12;24948:13;;:29;24944:43;;24979:8;;;24944:43;24527:635;;;25028:119;25059:40;;25084:14;;;;;-1:-1:-1;;;;;25059:40:0;;;25076:1;;25059:40;;25076:1;;25059:40;25142:3;25127:12;:18;25028:119;;24527:635;-1:-1:-1;25176:13:0;:28;;;25226:60;;25259:2;25263:12;25277:8;25226:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:367::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:1;;1039:18;1028:30;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:186::-;1259:6;1312:2;1300:9;1291:7;1287:23;1283:32;1280:52;;;1328:1;1325;1318:12;1280:52;1351:29;1370:9;1351:29;:::i;1391:260::-;1459:6;1467;1520:2;1508:9;1499:7;1495:23;1491:32;1488:52;;;1536:1;1533;1526:12;1488:52;1559:29;1578:9;1559:29;:::i;:::-;1549:39;;1607:38;1641:2;1630:9;1626:18;1607:38;:::i;:::-;1597:48;;1391:260;;;;;:::o;1656:328::-;1733:6;1741;1749;1802:2;1790:9;1781:7;1777:23;1773:32;1770:52;;;1818:1;1815;1808:12;1770:52;1841:29;1860:9;1841:29;:::i;:::-;1831:39;;1889:38;1923:2;1912:9;1908:18;1889:38;:::i;:::-;1879:48;;1974:2;1963:9;1959:18;1946:32;1936:42;;1656:328;;;;;:::o;1989:666::-;2084:6;2092;2100;2108;2161:3;2149:9;2140:7;2136:23;2132:33;2129:53;;;2178:1;2175;2168:12;2129:53;2201:29;2220:9;2201:29;:::i;:::-;2191:39;;2249:38;2283:2;2272:9;2268:18;2249:38;:::i;:::-;2239:48;;2334:2;2323:9;2319:18;2306:32;2296:42;;2389:2;2378:9;2374:18;2361:32;2416:18;2408:6;2405:30;2402:50;;;2448:1;2445;2438:12;2402:50;2471:22;;2524:4;2516:13;;2512:27;-1:-1:-1;2502:55:1;;2553:1;2550;2543:12;2502:55;2576:73;2641:7;2636:2;2623:16;2618:2;2614;2610:11;2576:73;:::i;:::-;2566:83;;;1989:666;;;;;;;:::o;2660:347::-;2725:6;2733;2786:2;2774:9;2765:7;2761:23;2757:32;2754:52;;;2802:1;2799;2792:12;2754:52;2825:29;2844:9;2825:29;:::i;:::-;2815:39;;2904:2;2893:9;2889:18;2876:32;2951:5;2944:13;2937:21;2930:5;2927:32;2917:60;;2973:1;2970;2963:12;2917:60;2996:5;2986:15;;;2660:347;;;;;:::o;3012:254::-;3080:6;3088;3141:2;3129:9;3120:7;3116:23;3112:32;3109:52;;;3157:1;3154;3147:12;3109:52;3180:29;3199:9;3180:29;:::i;:::-;3170:39;3256:2;3241:18;;;;3228:32;;-1:-1:-1;;;3012:254:1:o;3271:773::-;3393:6;3401;3409;3417;3470:2;3458:9;3449:7;3445:23;3441:32;3438:52;;;3486:1;3483;3476:12;3438:52;3526:9;3513:23;3555:18;3596:2;3588:6;3585:14;3582:34;;;3612:1;3609;3602:12;3582:34;3651:70;3713:7;3704:6;3693:9;3689:22;3651:70;:::i;:::-;3740:8;;-1:-1:-1;3625:96:1;-1:-1:-1;3828:2:1;3813:18;;3800:32;;-1:-1:-1;3844:16:1;;;3841:36;;;3873:1;3870;3863:12;3841:36;;3912:72;3976:7;3965:8;3954:9;3950:24;3912:72;:::i;:::-;3271:773;;;;-1:-1:-1;4003:8:1;-1:-1:-1;;;;3271:773:1:o;4049:245::-;4107:6;4160:2;4148:9;4139:7;4135:23;4131:32;4128:52;;;4176:1;4173;4166:12;4128:52;4215:9;4202:23;4234:30;4258:5;4234:30;:::i;4299:249::-;4368:6;4421:2;4409:9;4400:7;4396:23;4392:32;4389:52;;;4437:1;4434;4427:12;4389:52;4469:9;4463:16;4488:30;4512:5;4488:30;:::i;4553:450::-;4622:6;4675:2;4663:9;4654:7;4650:23;4646:32;4643:52;;;4691:1;4688;4681:12;4643:52;4731:9;4718:23;4764:18;4756:6;4753:30;4750:50;;;4796:1;4793;4786:12;4750:50;4819:22;;4872:4;4864:13;;4860:27;-1:-1:-1;4850:55:1;;4901:1;4898;4891:12;4850:55;4924:73;4989:7;4984:2;4971:16;4966:2;4962;4958:11;4924:73;:::i;5008:180::-;5067:6;5120:2;5108:9;5099:7;5095:23;5091:32;5088:52;;;5136:1;5133;5126:12;5088:52;-1:-1:-1;5159:23:1;;5008:180;-1:-1:-1;5008:180:1:o;5193:257::-;5234:3;5272:5;5266:12;5299:6;5294:3;5287:19;5315:63;5371:6;5364:4;5359:3;5355:14;5348:4;5341:5;5337:16;5315:63;:::i;:::-;5432:2;5411:15;-1:-1:-1;;5407:29:1;5398:39;;;;5439:4;5394:50;;5193:257;-1:-1:-1;;5193:257:1:o;5455:185::-;5497:3;5535:5;5529:12;5550:52;5595:6;5590:3;5583:4;5576:5;5572:16;5550:52;:::i;:::-;5618:16;;;;;5455:185;-1:-1:-1;;5455:185:1:o;5763:1301::-;6040:3;6069:1;6102:6;6096:13;6132:3;6154:1;6182:9;6178:2;6174:18;6164:28;;6242:2;6231:9;6227:18;6264;6254:61;;6308:4;6300:6;6296:17;6286:27;;6254:61;6334:2;6382;6374:6;6371:14;6351:18;6348:38;6345:165;;;-1:-1:-1;;;6409:33:1;;6465:4;6462:1;6455:15;6495:4;6416:3;6483:17;6345:165;6526:18;6553:104;;;;6671:1;6666:320;;;;6519:467;;6553:104;-1:-1:-1;;6586:24:1;;6574:37;;6631:16;;;;-1:-1:-1;6553:104:1;;6666:320;12857:1;12850:14;;;12894:4;12881:18;;6761:1;6775:165;6789:6;6786:1;6783:13;6775:165;;;6867:14;;6854:11;;;6847:35;6910:16;;;;6804:10;;6775:165;;;6779:3;;6969:6;6964:3;6960:16;6953:23;;6519:467;;;;;;;7002:56;7027:30;7053:3;7045:6;7027:30;:::i;:::-;-1:-1:-1;;;5705:20:1;;5750:1;5741:11;;5645:113;7002:56;6995:63;5763:1301;-1:-1:-1;;;;;5763:1301:1:o;7487:488::-;-1:-1:-1;;;;;7756:15:1;;;7738:34;;7808:15;;7803:2;7788:18;;7781:43;7855:2;7840:18;;7833:34;;;7903:3;7898:2;7883:18;;7876:31;;;7681:4;;7924:45;;7949:19;;7941:6;7924:45;:::i;:::-;7916:53;7487:488;-1:-1:-1;;;;;;7487:488:1:o;8172:219::-;8321:2;8310:9;8303:21;8284:4;8341:44;8381:2;8370:9;8366:18;8358:6;8341:44;:::i;11069:356::-;11271:2;11253:21;;;11290:18;;;11283:30;11349:34;11344:2;11329:18;;11322:62;11416:2;11401:18;;11069:356::o;12910:128::-;12950:3;12981:1;12977:6;12974:1;12971:13;12968:39;;;12987:18;;:::i;:::-;-1:-1:-1;13023:9:1;;12910:128::o;13043:120::-;13083:1;13109;13099:35;;13114:18;;:::i;:::-;-1:-1:-1;13148:9:1;;13043:120::o;13168:168::-;13208:7;13274:1;13270;13266:6;13262:14;13259:1;13256:21;13251:1;13244:9;13237:17;13233:45;13230:71;;;13281:18;;:::i;:::-;-1:-1:-1;13321:9:1;;13168:168::o;13341:125::-;13381:4;13409:1;13406;13403:8;13400:34;;;13414:18;;:::i;:::-;-1:-1:-1;13451:9:1;;13341:125::o;13471:258::-;13543:1;13553:113;13567:6;13564:1;13561:13;13553:113;;;13643:11;;;13637:18;13624:11;;;13617:39;13589:2;13582:10;13553:113;;;13684:6;13681:1;13678:13;13675:48;;;-1:-1:-1;;13719:1:1;13701:16;;13694:27;13471:258::o;13734:380::-;13813:1;13809:12;;;;13856;;;13877:61;;13931:4;13923:6;13919:17;13909:27;;13877:61;13984:2;13976:6;13973:14;13953:18;13950:38;13947:161;;;14030:10;14025:3;14021:20;14018:1;14011:31;14065:4;14062:1;14055:15;14093:4;14090:1;14083:15;13947:161;;13734:380;;;:::o;14119:135::-;14158:3;-1:-1:-1;;14179:17:1;;14176:43;;;14199:18;;:::i;:::-;-1:-1:-1;14246:1:1;14235:13;;14119:135::o;14259:112::-;14291:1;14317;14307:35;;14322:18;;:::i;:::-;-1:-1:-1;14356:9:1;;14259:112::o;14376:127::-;14437:10;14432:3;14428:20;14425:1;14418:31;14468:4;14465:1;14458:15;14492:4;14489:1;14482:15;14508:127;14569:10;14564:3;14560:20;14557:1;14550:31;14600:4;14597:1;14590:15;14624:4;14621:1;14614:15;14640:127;14701:10;14696:3;14692:20;14689:1;14682:31;14732:4;14729:1;14722:15;14756:4;14753:1;14746:15;14772:127;14833:10;14828:3;14824:20;14821:1;14814:31;14864:4;14861:1;14854:15;14888:4;14885:1;14878:15;14904:131;-1:-1:-1;;;;;;14978:32:1;;14968:43;;14958:71;;15025:1;15022;15015:12
Swarm Source
ipfs://bb3913887994b8b0409e18b124736e48214e09568de93eaf86bbdc11ffe3fe35
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.