Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
151 GDSHT
Holders
65
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 GDSHTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GoodShit
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; contract GoodShit is ERC721A, Ownable, ReentrancyGuard { using Strings for uint; enum State { Before, ShitlistSale, PoopsSale, SoldOut } State public sellingState; string public baseURI = "ipfs://QmWTVd5kqkM6RCZDkU8b9kbjnDVtpaHczjxnGZjaZ9q6wr/"; uint private constant MAX_POOP_MINTS = 5; uint private constant MAX_SHIT_SUPPLY = 5555; uint public poopsMintRate = 0.015 ether; uint private price = 0 ether; mapping (address => bool) public freeShitMinted; bytes32 public merkleRoot; constructor(bytes32 _merkleRoot) ERC721A("GoodShit", "GDSHT") { merkleRoot = _merkleRoot; } function shitlistMint(uint256 quantity,bytes32[] memory proof) external payable { require(sellingState == State.ShitlistSale, "Shitlist sale not started yet or has ended!"); require(isValid(proof, keccak256(abi.encodePacked(msg.sender))), "You are not in the shitlist you shithead!"); require(msg.sender == tx.origin, "Contract minting not allowed you shithead."); require(quantity + _numberMinted(msg.sender) <= MAX_POOP_MINTS, "Exceeded the mint limit you greedy shit!"); require(totalSupply() + quantity <= MAX_SHIT_SUPPLY, "NOT ENOUGH SHITS LEFT YOOO!"); if(freeShitMinted[msg.sender]) { price = quantity * poopsMintRate; } else { freeShitMinted[msg.sender] = true; price = (quantity-1) * poopsMintRate; } require(msg.value >= price, "Not enough ether sent you poor shit!"); _safeMint(msg.sender, quantity); } function poopsMint(uint256 quantity) external payable { require(sellingState == State.PoopsSale, "Shit sale not started yet or has ended!"); require(msg.sender == tx.origin, "Contract minting not allowed you shithead."); require(quantity + _numberMinted(msg.sender) <= MAX_POOP_MINTS, "Exceeded the mint limit you greedy shit!"); require(totalSupply() + quantity <= MAX_SHIT_SUPPLY, "NOT ENOUGH SHITS LEFT YOOO!"); if(freeShitMinted[msg.sender]) { price = quantity * poopsMintRate; } else { freeShitMinted[msg.sender] = true; price = (quantity-1) * poopsMintRate; } require(msg.value >= price, "Not enough ether sent you poor shit!"); _safeMint(msg.sender, quantity); } function giveawayMint(address _to, uint256 quantity) external onlyOwner { require(totalSupply() + quantity <= MAX_SHIT_SUPPLY, "Not enough shits left!"); _safeMint(_to, quantity); } function setStep(uint _state) external onlyOwner { sellingState = State(_state); } function setPoopsSaleMintRate(uint256 _mintRate) public onlyOwner { poopsMintRate = _mintRate; } function withdrawShitCoins() external onlyOwner { require(address(this).balance > 0,"You do not have enough balance!"); payable(owner()).transfer(address(this).balance); } function changeBaseURI(string memory _newURI) external onlyOwner { baseURI = _newURI; } function _baseURI() internal view override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI_ = _baseURI(); return bytes(baseURI_).length > 0 ? string(abi.encodePacked(baseURI_, Strings.toString(tokenId), ".json")) : ""; } function updateMerkleRoot(bytes32 _newMerkleRoot) external onlyOwner { merkleRoot = _newMerkleRoot; } function isValid(bytes32[] memory proof, bytes32 leaf) public view returns (bool) { return MerkleProof.verify(proof, merkleRoot, leaf); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @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 bit position of `extraData` in packed ownership. uint256 private constant BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with `_mintERC2309`. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309` // is required to cause an overflow, which is unrealistic. uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The 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` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => 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 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _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 auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * 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; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * 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 Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, BITMASK_ADDRESS) // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev 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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`. result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); 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-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 { transferFrom(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. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal { 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` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @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 transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @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 Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev 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. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.1.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(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); 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; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @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); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts 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; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeShitMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"giveawayMint","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":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"poopsMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"poopsMintRate","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":[],"name":"sellingState","outputs":[{"internalType":"enum GoodShit.State","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintRate","type":"uint256"}],"name":"setPoopsSaleMintRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_state","type":"uint256"}],"name":"setStep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"shitlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawShitCoins","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e060405260366080818152906200227f60a03980516200002991600b916020909101906200013f565b5066354a6ba7a18000600c556000600d553480156200004757600080fd5b50604051620022b5380380620022b58339810160408190526200006a91620001e5565b604080518082018252600881526711dbdbd914da1a5d60c21b60208083019182528351808501909452600584526411d114d21560da1b908401528151919291620000b7916002916200013f565b508051620000cd9060039060208401906200013f565b50506000805550620000df33620000ed565b6001600955600f556200023b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014d90620001fe565b90600052602060002090601f016020900481019282620001715760008555620001bc565b82601f106200018c57805160ff1916838001178555620001bc565b82800160010185558215620001bc579182015b82811115620001bc5782518255916020019190600101906200019f565b50620001ca929150620001ce565b5090565b5b80821115620001ca5760008155600101620001cf565b600060208284031215620001f7578081fd5b5051919050565b600181811c908216806200021357607f821691505b602082108114156200023557634e487b7160e01b600052602260045260246000fd5b50919050565b612034806200024b6000396000f3fe6080604052600436106101d85760003560e01c80635f61f2b811610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd1461052c578063e985e9c51461054c578063f2fde38b14610595578063f8dcbddb146105b557600080fd5b8063a22cb465146104b9578063a9ec8ec6146104d9578063b88d4fde146104ec578063b8a20ed01461050c57600080fd5b8063715018a6116100d1578063715018a61461045b5780637859b16a146104705780638da5cb5b1461048657806395d89b41146104a457600080fd5b80635f61f2b8146103f35780636352211e146104065780636c0360eb1461042657806370a082311461043b57600080fd5b806323b872dd1161017a57806339a0c6f91161014957806339a0c6f91461036c57806342842e0e1461038c5780634783f0ef146103ac57806352280052146103cc57600080fd5b806323b872dd146103015780632eb4a7ab146103215780633168050814610337578063352a06001461034c57600080fd5b8063081812fc116101b6578063081812fc14610256578063095ea7b31461028e5780630b413d23146102ae57806318160ddd146102de57600080fd5b806301ffc9a7146101dd578063048266241461021257806306fdde0314610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611bcc565b6105d5565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b5061023261022d366004611b48565b610627565b005b34801561024057600080fd5b506102496106ca565b6040516102099190611d5f565b34801561026257600080fd5b50610276610271366004611bb4565b61075c565b6040516001600160a01b039091168152602001610209565b34801561029a57600080fd5b506102326102a9366004611b48565b6107a0565b3480156102ba57600080fd5b506101fd6102c9366004611a0e565b600e6020526000908152604090205460ff1681565b3480156102ea57600080fd5b50600154600054035b604051908152602001610209565b34801561030d57600080fd5b5061023261031c366004611a5a565b610840565b34801561032d57600080fd5b506102f3600f5481565b34801561034357600080fd5b506102326109d1565b34801561035857600080fd5b50610232610367366004611bb4565b610a87565b34801561037857600080fd5b50610232610387366004611c04565b610ab6565b34801561039857600080fd5b506102326103a7366004611a5a565b610af3565b3480156103b857600080fd5b506102326103c7366004611bb4565b610b13565b3480156103d857600080fd5b50600a546103e69060ff1681565b6040516102099190611d37565b610232610401366004611c4a565b610b42565b34801561041257600080fd5b50610276610421366004611bb4565b610dd8565b34801561043257600080fd5b50610249610de3565b34801561044757600080fd5b506102f3610456366004611a0e565b610e71565b34801561046757600080fd5b50610232610ec0565b34801561047c57600080fd5b506102f3600c5481565b34801561049257600080fd5b506008546001600160a01b0316610276565b3480156104b057600080fd5b50610249610ef6565b3480156104c557600080fd5b506102326104d4366004611b0e565b610f05565b6102326104e7366004611bb4565b610f9b565b3480156104f857600080fd5b50610232610507366004611a95565b611190565b34801561051857600080fd5b506101fd610527366004611b71565b6111da565b34801561053857600080fd5b50610249610547366004611bb4565b6111f0565b34801561055857600080fd5b506101fd610567366004611a28565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105a157600080fd5b506102326105b0366004611a0e565b611273565b3480156105c157600080fd5b506102326105d0366004611bb4565b61130b565b60006301ffc9a760e01b6001600160e01b03198316148061060657506380ac58cd60e01b6001600160e01b03198316145b806106215750635b5e139f60e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461065a5760405162461bcd60e51b815260040161065190611dfe565b60405180910390fd5b6115b38161066b6001546000540390565b6106759190611eae565b11156106bc5760405162461bcd60e51b81526020600482015260166024820152754e6f7420656e6f756768207368697473206c6566742160501b6044820152606401610651565b6106c68282611387565b5050565b6060600280546106d990611f3c565b80601f016020809104026020016040519081016040528092919081815260200182805461070590611f3c565b80156107525780601f1061072757610100808354040283529160200191610752565b820191906000526020600020905b81548152906001019060200180831161073557829003601f168201915b5050505050905090565b6000610767826113a1565b610784576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107ab82610dd8565b9050336001600160a01b038216146107e4576107c78133610567565b6107e4576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061084b826113c8565b9050836001600160a01b0316816001600160a01b03161461087e5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176108cb576108ae8633610567565b6108cb57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166108f257604051633a954ecd60e21b815260040160405180910390fd5b80156108fd57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b831661098857600184016000818152600460205260409020546109865760005481146109865760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b031633146109fb5760405162461bcd60e51b815260040161065190611dfe565b60004711610a4b5760405162461bcd60e51b815260206004820152601f60248201527f596f7520646f206e6f74206861766520656e6f7567682062616c616e636521006044820152606401610651565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610a84573d6000803e3d6000fd5b50565b6008546001600160a01b03163314610ab15760405162461bcd60e51b815260040161065190611dfe565b600c55565b6008546001600160a01b03163314610ae05760405162461bcd60e51b815260040161065190611dfe565b80516106c690600b90602084019061187e565b610b0e83838360405180602001604052806000815250611190565b505050565b6008546001600160a01b03163314610b3d5760405162461bcd60e51b815260040161065190611dfe565b600f55565b6001600a5460ff166003811115610b6957634e487b7160e01b600052602160045260246000fd5b14610bca5760405162461bcd60e51b815260206004820152602b60248201527f536869746c6973742073616c65206e6f74207374617274656420796574206f7260448201526a2068617320656e6465642160a81b6064820152608401610651565b6040516bffffffffffffffffffffffff193360601b166020820152610c09908290603401604051602081830303815290604052805190602001206111da565b610c675760405162461bcd60e51b815260206004820152602960248201527f596f7520617265206e6f7420696e2074686520736869746c69737420796f752060448201526873686974686561642160b81b6064820152608401610651565b333214610c865760405162461bcd60e51b815260040161065190611e33565b6005610cb5336001600160a01b03166000908152600560205260409081902054901c67ffffffffffffffff1690565b610cbf9084611eae565b1115610cdd5760405162461bcd60e51b815260040161065190611db6565b6115b382610cee6001546000540390565b610cf89190611eae565b1115610d465760405162461bcd60e51b815260206004820152601b60248201527f4e4f5420454e4f554748205348495453204c45465420594f4f4f2100000000006044820152606401610651565b336000908152600e602052604090205460ff1615610d7357600c54610d6b9083611eda565b600d55610dac565b336000908152600e60205260409020805460ff19166001908117909155600c5490610d9e9084611ef9565b610da89190611eda565b600d555b600d54341015610dce5760405162461bcd60e51b815260040161065190611d72565b6106c63383611387565b6000610621826113c8565b600b8054610df090611f3c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1c90611f3c565b8015610e695780601f10610e3e57610100808354040283529160200191610e69565b820191906000526020600020905b815481529060010190602001808311610e4c57829003601f168201915b505050505081565b60006001600160a01b038216610e9a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610eea5760405162461bcd60e51b815260040161065190611dfe565b610ef46000611429565b565b6060600380546106d990611f3c565b6001600160a01b038216331415610f2f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6002600a5460ff166003811115610fc257634e487b7160e01b600052602160045260246000fd5b1461101f5760405162461bcd60e51b815260206004820152602760248201527f536869742073616c65206e6f74207374617274656420796574206f722068617360448201526620656e6465642160c81b6064820152608401610651565b33321461103e5760405162461bcd60e51b815260040161065190611e33565b600561106d336001600160a01b03166000908152600560205260409081902054901c67ffffffffffffffff1690565b6110779083611eae565b11156110955760405162461bcd60e51b815260040161065190611db6565b6115b3816110a66001546000540390565b6110b09190611eae565b11156110fe5760405162461bcd60e51b815260206004820152601b60248201527f4e4f5420454e4f554748205348495453204c45465420594f4f4f2100000000006044820152606401610651565b336000908152600e602052604090205460ff161561112b57600c546111239082611eda565b600d55611164565b336000908152600e60205260409020805460ff19166001908117909155600c54906111569083611ef9565b6111609190611eda565b600d555b600d543410156111865760405162461bcd60e51b815260040161065190611d72565b610a843382611387565b61119b848484610840565b6001600160a01b0383163b156111d4576111b78484848461147b565b6111d4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60006111e983600f5484611573565b9392505050565b60606111fb826113a1565b61121857604051630a14c4b560e41b815260040160405180910390fd5b6000611222611589565b9050600081511161124257604051806020016040528060008152506111e9565b8061124c84611598565b60405160200161125d929190611cbb565b6040516020818303038152906040529392505050565b6008546001600160a01b0316331461129d5760405162461bcd60e51b815260040161065190611dfe565b6001600160a01b0381166113025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610651565b610a8481611429565b6008546001600160a01b031633146113355760405162461bcd60e51b815260040161065190611dfe565b80600381111561135557634e487b7160e01b600052602160045260246000fd5b600a805460ff1916600183600381111561137f57634e487b7160e01b600052602160045260246000fd5b021790555050565b6106c68282604051806020016040528060008152506116b2565b6000805482108015610621575050600090815260046020526040902054600160e01b161590565b60008160005481101561141057600081815260046020526040902054600160e01b811661140e575b806111e95750600019016000818152600460205260409020546113f0565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114b0903390899088908890600401611cfa565b602060405180830381600087803b1580156114ca57600080fd5b505af19250505080156114fa575060408051601f3d908101601f191682019092526114f791810190611be8565b60015b611555573d808015611528576040519150601f19603f3d011682016040523d82523d6000602084013e61152d565b606091505b50805161154d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b600082611580858461171f565b14949350505050565b6060600b80546106d990611f3c565b6060816115bc5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115e657806115d081611f77565b91506115df9050600a83611ec6565b91506115c0565b60008167ffffffffffffffff81111561160f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611639576020820181803683370190505b5090505b841561156b5761164e600183611ef9565b915061165b600a86611f92565b611666906030611eae565b60f81b81838151811061168957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506116ab600a86611ec6565b945061163d565b6116bc83836117a1565b6001600160a01b0383163b15610b0e576000548281035b6116e6600086838060010194508661147b565b611703576040516368d2bf6b60e11b815260040160405180910390fd5b8181106116d357816000541461171857600080fd5b5050505050565b600081815b845181101561179957600085828151811061174f57634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116117755760008381526020829052604090209250611786565b600081815260208490526040902092505b508061179181611f77565b915050611724565b509392505050565b6000546001600160a01b0383166117ca57604051622e076360e81b815260040160405180910390fd5b816117e85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106118325760005550505050565b82805461188a90611f3c565b90600052602060002090601f0160209004810192826118ac57600085556118f2565b82601f106118c557805160ff19168380011785556118f2565b828001600101855582156118f2579182015b828111156118f25782518255916020019190600101906118d7565b506118fe929150611902565b5090565b5b808211156118fe5760008155600101611903565b600067ffffffffffffffff83111561193157611931611fd2565b611944601f8401601f1916602001611e7d565b905082815283838301111561195857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461198657600080fd5b919050565b600082601f83011261199b578081fd5b8135602067ffffffffffffffff8211156119b7576119b7611fd2565b8160051b6119c6828201611e7d565b8381528281019086840183880185018910156119e0578687fd5b8693505b85841015611a025780358352600193909301929184019184016119e4565b50979650505050505050565b600060208284031215611a1f578081fd5b6111e98261196f565b60008060408385031215611a3a578081fd5b611a438361196f565b9150611a516020840161196f565b90509250929050565b600080600060608486031215611a6e578081fd5b611a778461196f565b9250611a856020850161196f565b9150604084013590509250925092565b60008060008060808587031215611aaa578081fd5b611ab38561196f565b9350611ac16020860161196f565b925060408501359150606085013567ffffffffffffffff811115611ae3578182fd5b8501601f81018713611af3578182fd5b611b0287823560208401611917565b91505092959194509250565b60008060408385031215611b20578182fd5b611b298361196f565b915060208301358015158114611b3d578182fd5b809150509250929050565b60008060408385031215611b5a578182fd5b611b638361196f565b946020939093013593505050565b60008060408385031215611b83578182fd5b823567ffffffffffffffff811115611b99578283fd5b611ba58582860161198b565b95602094909401359450505050565b600060208284031215611bc5578081fd5b5035919050565b600060208284031215611bdd578081fd5b81356111e981611fe8565b600060208284031215611bf9578081fd5b81516111e981611fe8565b600060208284031215611c15578081fd5b813567ffffffffffffffff811115611c2b578182fd5b8201601f81018413611c3b578182fd5b61156b84823560208401611917565b60008060408385031215611c5c578182fd5b82359150602083013567ffffffffffffffff811115611c79578182fd5b611c858582860161198b565b9150509250929050565b60008151808452611ca7816020860160208601611f10565b601f01601f19169290920160200192915050565b60008351611ccd818460208801611f10565b835190830190611ce1818360208801611f10565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d2d90830184611c8f565b9695505050505050565b6020810160048310611d5957634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006111e96020830184611c8f565b60208082526024908201527f4e6f7420656e6f7567682065746865722073656e7420796f7520706f6f7220736040820152636869742160e01b606082015260800190565b60208082526028908201527f457863656564656420746865206d696e74206c696d697420796f752067726565604082015267647920736869742160c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602a908201527f436f6e7472616374206d696e74696e67206e6f7420616c6c6f77656420796f756040820152691039b434ba3432b0b21760b11b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611ea657611ea6611fd2565b604052919050565b60008219821115611ec157611ec1611fa6565b500190565b600082611ed557611ed5611fbc565b500490565b6000816000190483118215151615611ef457611ef4611fa6565b500290565b600082821015611f0b57611f0b611fa6565b500390565b60005b83811015611f2b578181015183820152602001611f13565b838111156111d45750506000910152565b600181811c90821680611f5057607f821691505b60208210811415611f7157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f8b57611f8b611fa6565b5060010190565b600082611fa157611fa1611fbc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a8457600080fdfea2646970667358221220f478052f286dd85741875717e88cc90449d7bca99eedcdfdd9f5e62f28f1ede864736f6c63430008040033697066733a2f2f516d57545664356b716b4d3652435a446b553862396b626a6e445674706148637a6a786e475a6a615a39713677722f36a185790e67ff97fd62475fc74488a6a367cd1198ebcad50d2c1bb10b0a7d91
Deployed Bytecode
0x6080604052600436106101d85760003560e01c80635f61f2b811610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd1461052c578063e985e9c51461054c578063f2fde38b14610595578063f8dcbddb146105b557600080fd5b8063a22cb465146104b9578063a9ec8ec6146104d9578063b88d4fde146104ec578063b8a20ed01461050c57600080fd5b8063715018a6116100d1578063715018a61461045b5780637859b16a146104705780638da5cb5b1461048657806395d89b41146104a457600080fd5b80635f61f2b8146103f35780636352211e146104065780636c0360eb1461042657806370a082311461043b57600080fd5b806323b872dd1161017a57806339a0c6f91161014957806339a0c6f91461036c57806342842e0e1461038c5780634783f0ef146103ac57806352280052146103cc57600080fd5b806323b872dd146103015780632eb4a7ab146103215780633168050814610337578063352a06001461034c57600080fd5b8063081812fc116101b6578063081812fc14610256578063095ea7b31461028e5780630b413d23146102ae57806318160ddd146102de57600080fd5b806301ffc9a7146101dd578063048266241461021257806306fdde0314610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611bcc565b6105d5565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b5061023261022d366004611b48565b610627565b005b34801561024057600080fd5b506102496106ca565b6040516102099190611d5f565b34801561026257600080fd5b50610276610271366004611bb4565b61075c565b6040516001600160a01b039091168152602001610209565b34801561029a57600080fd5b506102326102a9366004611b48565b6107a0565b3480156102ba57600080fd5b506101fd6102c9366004611a0e565b600e6020526000908152604090205460ff1681565b3480156102ea57600080fd5b50600154600054035b604051908152602001610209565b34801561030d57600080fd5b5061023261031c366004611a5a565b610840565b34801561032d57600080fd5b506102f3600f5481565b34801561034357600080fd5b506102326109d1565b34801561035857600080fd5b50610232610367366004611bb4565b610a87565b34801561037857600080fd5b50610232610387366004611c04565b610ab6565b34801561039857600080fd5b506102326103a7366004611a5a565b610af3565b3480156103b857600080fd5b506102326103c7366004611bb4565b610b13565b3480156103d857600080fd5b50600a546103e69060ff1681565b6040516102099190611d37565b610232610401366004611c4a565b610b42565b34801561041257600080fd5b50610276610421366004611bb4565b610dd8565b34801561043257600080fd5b50610249610de3565b34801561044757600080fd5b506102f3610456366004611a0e565b610e71565b34801561046757600080fd5b50610232610ec0565b34801561047c57600080fd5b506102f3600c5481565b34801561049257600080fd5b506008546001600160a01b0316610276565b3480156104b057600080fd5b50610249610ef6565b3480156104c557600080fd5b506102326104d4366004611b0e565b610f05565b6102326104e7366004611bb4565b610f9b565b3480156104f857600080fd5b50610232610507366004611a95565b611190565b34801561051857600080fd5b506101fd610527366004611b71565b6111da565b34801561053857600080fd5b50610249610547366004611bb4565b6111f0565b34801561055857600080fd5b506101fd610567366004611a28565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105a157600080fd5b506102326105b0366004611a0e565b611273565b3480156105c157600080fd5b506102326105d0366004611bb4565b61130b565b60006301ffc9a760e01b6001600160e01b03198316148061060657506380ac58cd60e01b6001600160e01b03198316145b806106215750635b5e139f60e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461065a5760405162461bcd60e51b815260040161065190611dfe565b60405180910390fd5b6115b38161066b6001546000540390565b6106759190611eae565b11156106bc5760405162461bcd60e51b81526020600482015260166024820152754e6f7420656e6f756768207368697473206c6566742160501b6044820152606401610651565b6106c68282611387565b5050565b6060600280546106d990611f3c565b80601f016020809104026020016040519081016040528092919081815260200182805461070590611f3c565b80156107525780601f1061072757610100808354040283529160200191610752565b820191906000526020600020905b81548152906001019060200180831161073557829003601f168201915b5050505050905090565b6000610767826113a1565b610784576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107ab82610dd8565b9050336001600160a01b038216146107e4576107c78133610567565b6107e4576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061084b826113c8565b9050836001600160a01b0316816001600160a01b03161461087e5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176108cb576108ae8633610567565b6108cb57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166108f257604051633a954ecd60e21b815260040160405180910390fd5b80156108fd57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b831661098857600184016000818152600460205260409020546109865760005481146109865760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b031633146109fb5760405162461bcd60e51b815260040161065190611dfe565b60004711610a4b5760405162461bcd60e51b815260206004820152601f60248201527f596f7520646f206e6f74206861766520656e6f7567682062616c616e636521006044820152606401610651565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610a84573d6000803e3d6000fd5b50565b6008546001600160a01b03163314610ab15760405162461bcd60e51b815260040161065190611dfe565b600c55565b6008546001600160a01b03163314610ae05760405162461bcd60e51b815260040161065190611dfe565b80516106c690600b90602084019061187e565b610b0e83838360405180602001604052806000815250611190565b505050565b6008546001600160a01b03163314610b3d5760405162461bcd60e51b815260040161065190611dfe565b600f55565b6001600a5460ff166003811115610b6957634e487b7160e01b600052602160045260246000fd5b14610bca5760405162461bcd60e51b815260206004820152602b60248201527f536869746c6973742073616c65206e6f74207374617274656420796574206f7260448201526a2068617320656e6465642160a81b6064820152608401610651565b6040516bffffffffffffffffffffffff193360601b166020820152610c09908290603401604051602081830303815290604052805190602001206111da565b610c675760405162461bcd60e51b815260206004820152602960248201527f596f7520617265206e6f7420696e2074686520736869746c69737420796f752060448201526873686974686561642160b81b6064820152608401610651565b333214610c865760405162461bcd60e51b815260040161065190611e33565b6005610cb5336001600160a01b03166000908152600560205260409081902054901c67ffffffffffffffff1690565b610cbf9084611eae565b1115610cdd5760405162461bcd60e51b815260040161065190611db6565b6115b382610cee6001546000540390565b610cf89190611eae565b1115610d465760405162461bcd60e51b815260206004820152601b60248201527f4e4f5420454e4f554748205348495453204c45465420594f4f4f2100000000006044820152606401610651565b336000908152600e602052604090205460ff1615610d7357600c54610d6b9083611eda565b600d55610dac565b336000908152600e60205260409020805460ff19166001908117909155600c5490610d9e9084611ef9565b610da89190611eda565b600d555b600d54341015610dce5760405162461bcd60e51b815260040161065190611d72565b6106c63383611387565b6000610621826113c8565b600b8054610df090611f3c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1c90611f3c565b8015610e695780601f10610e3e57610100808354040283529160200191610e69565b820191906000526020600020905b815481529060010190602001808311610e4c57829003601f168201915b505050505081565b60006001600160a01b038216610e9a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610eea5760405162461bcd60e51b815260040161065190611dfe565b610ef46000611429565b565b6060600380546106d990611f3c565b6001600160a01b038216331415610f2f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6002600a5460ff166003811115610fc257634e487b7160e01b600052602160045260246000fd5b1461101f5760405162461bcd60e51b815260206004820152602760248201527f536869742073616c65206e6f74207374617274656420796574206f722068617360448201526620656e6465642160c81b6064820152608401610651565b33321461103e5760405162461bcd60e51b815260040161065190611e33565b600561106d336001600160a01b03166000908152600560205260409081902054901c67ffffffffffffffff1690565b6110779083611eae565b11156110955760405162461bcd60e51b815260040161065190611db6565b6115b3816110a66001546000540390565b6110b09190611eae565b11156110fe5760405162461bcd60e51b815260206004820152601b60248201527f4e4f5420454e4f554748205348495453204c45465420594f4f4f2100000000006044820152606401610651565b336000908152600e602052604090205460ff161561112b57600c546111239082611eda565b600d55611164565b336000908152600e60205260409020805460ff19166001908117909155600c54906111569083611ef9565b6111609190611eda565b600d555b600d543410156111865760405162461bcd60e51b815260040161065190611d72565b610a843382611387565b61119b848484610840565b6001600160a01b0383163b156111d4576111b78484848461147b565b6111d4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60006111e983600f5484611573565b9392505050565b60606111fb826113a1565b61121857604051630a14c4b560e41b815260040160405180910390fd5b6000611222611589565b9050600081511161124257604051806020016040528060008152506111e9565b8061124c84611598565b60405160200161125d929190611cbb565b6040516020818303038152906040529392505050565b6008546001600160a01b0316331461129d5760405162461bcd60e51b815260040161065190611dfe565b6001600160a01b0381166113025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610651565b610a8481611429565b6008546001600160a01b031633146113355760405162461bcd60e51b815260040161065190611dfe565b80600381111561135557634e487b7160e01b600052602160045260246000fd5b600a805460ff1916600183600381111561137f57634e487b7160e01b600052602160045260246000fd5b021790555050565b6106c68282604051806020016040528060008152506116b2565b6000805482108015610621575050600090815260046020526040902054600160e01b161590565b60008160005481101561141057600081815260046020526040902054600160e01b811661140e575b806111e95750600019016000818152600460205260409020546113f0565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114b0903390899088908890600401611cfa565b602060405180830381600087803b1580156114ca57600080fd5b505af19250505080156114fa575060408051601f3d908101601f191682019092526114f791810190611be8565b60015b611555573d808015611528576040519150601f19603f3d011682016040523d82523d6000602084013e61152d565b606091505b50805161154d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b600082611580858461171f565b14949350505050565b6060600b80546106d990611f3c565b6060816115bc5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115e657806115d081611f77565b91506115df9050600a83611ec6565b91506115c0565b60008167ffffffffffffffff81111561160f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611639576020820181803683370190505b5090505b841561156b5761164e600183611ef9565b915061165b600a86611f92565b611666906030611eae565b60f81b81838151811061168957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506116ab600a86611ec6565b945061163d565b6116bc83836117a1565b6001600160a01b0383163b15610b0e576000548281035b6116e6600086838060010194508661147b565b611703576040516368d2bf6b60e11b815260040160405180910390fd5b8181106116d357816000541461171857600080fd5b5050505050565b600081815b845181101561179957600085828151811061174f57634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116117755760008381526020829052604090209250611786565b600081815260208490526040902092505b508061179181611f77565b915050611724565b509392505050565b6000546001600160a01b0383166117ca57604051622e076360e81b815260040160405180910390fd5b816117e85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106118325760005550505050565b82805461188a90611f3c565b90600052602060002090601f0160209004810192826118ac57600085556118f2565b82601f106118c557805160ff19168380011785556118f2565b828001600101855582156118f2579182015b828111156118f25782518255916020019190600101906118d7565b506118fe929150611902565b5090565b5b808211156118fe5760008155600101611903565b600067ffffffffffffffff83111561193157611931611fd2565b611944601f8401601f1916602001611e7d565b905082815283838301111561195857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461198657600080fd5b919050565b600082601f83011261199b578081fd5b8135602067ffffffffffffffff8211156119b7576119b7611fd2565b8160051b6119c6828201611e7d565b8381528281019086840183880185018910156119e0578687fd5b8693505b85841015611a025780358352600193909301929184019184016119e4565b50979650505050505050565b600060208284031215611a1f578081fd5b6111e98261196f565b60008060408385031215611a3a578081fd5b611a438361196f565b9150611a516020840161196f565b90509250929050565b600080600060608486031215611a6e578081fd5b611a778461196f565b9250611a856020850161196f565b9150604084013590509250925092565b60008060008060808587031215611aaa578081fd5b611ab38561196f565b9350611ac16020860161196f565b925060408501359150606085013567ffffffffffffffff811115611ae3578182fd5b8501601f81018713611af3578182fd5b611b0287823560208401611917565b91505092959194509250565b60008060408385031215611b20578182fd5b611b298361196f565b915060208301358015158114611b3d578182fd5b809150509250929050565b60008060408385031215611b5a578182fd5b611b638361196f565b946020939093013593505050565b60008060408385031215611b83578182fd5b823567ffffffffffffffff811115611b99578283fd5b611ba58582860161198b565b95602094909401359450505050565b600060208284031215611bc5578081fd5b5035919050565b600060208284031215611bdd578081fd5b81356111e981611fe8565b600060208284031215611bf9578081fd5b81516111e981611fe8565b600060208284031215611c15578081fd5b813567ffffffffffffffff811115611c2b578182fd5b8201601f81018413611c3b578182fd5b61156b84823560208401611917565b60008060408385031215611c5c578182fd5b82359150602083013567ffffffffffffffff811115611c79578182fd5b611c858582860161198b565b9150509250929050565b60008151808452611ca7816020860160208601611f10565b601f01601f19169290920160200192915050565b60008351611ccd818460208801611f10565b835190830190611ce1818360208801611f10565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d2d90830184611c8f565b9695505050505050565b6020810160048310611d5957634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006111e96020830184611c8f565b60208082526024908201527f4e6f7420656e6f7567682065746865722073656e7420796f7520706f6f7220736040820152636869742160e01b606082015260800190565b60208082526028908201527f457863656564656420746865206d696e74206c696d697420796f752067726565604082015267647920736869742160c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602a908201527f436f6e7472616374206d696e74696e67206e6f7420616c6c6f77656420796f756040820152691039b434ba3432b0b21760b11b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611ea657611ea6611fd2565b604052919050565b60008219821115611ec157611ec1611fa6565b500190565b600082611ed557611ed5611fbc565b500490565b6000816000190483118215151615611ef457611ef4611fa6565b500290565b600082821015611f0b57611f0b611fa6565b500390565b60005b83811015611f2b578181015183820152602001611f13565b838111156111d45750506000910152565b600181811c90821680611f5057607f821691505b60208210811415611f7157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f8b57611f8b611fa6565b5060010190565b600082611fa157611fa1611fbc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a8457600080fdfea2646970667358221220f478052f286dd85741875717e88cc90449d7bca99eedcdfdd9f5e62f28f1ede864736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
36a185790e67ff97fd62475fc74488a6a367cd1198ebcad50d2c1bb10b0a7d91
-----Decoded View---------------
Arg [0] : _merkleRoot (bytes32): 0x36a185790e67ff97fd62475fc74488a6a367cd1198ebcad50d2c1bb10b0a7d91
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 36a185790e67ff97fd62475fc74488a6a367cd1198ebcad50d2c1bb10b0a7d91
Deployed Bytecode Sourcemap
335:3936:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5653:607:6;;;;;;;;;;-1:-1:-1;5653:607:6;;;;;:::i;:::-;;:::i;:::-;;;7797:14:8;;7790:22;7772:41;;7760:2;7745:18;5653:607:6;;;;;;;;2826:201:5;;;;;;;;;;-1:-1:-1;2826:201:5;;;;;:::i;:::-;;:::i;:::-;;11161:98:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;13048:200::-;;;;;;;;;;-1:-1:-1;13048:200:6;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7095:32:8;;;7077:51;;7065:2;7050:18;13048:200:6;7032:102:8;12611:376:6;;;;;;;;;;-1:-1:-1;12611:376:6;;;;;:::i;:::-;;:::i;826:47:5:-;;;;;;;;;;-1:-1:-1;826:47:5;;;;;:::i;:::-;;;;;;;;;;;;;;;;4736:309:6;;;;;;;;;;-1:-1:-1;4998:12:6;;4789:7;4982:13;:28;4736:309;;;7970:25:8;;;7958:2;7943:18;4736:309:6;7925:76:8;22055:2739:6;;;;;;;;;;-1:-1:-1;22055:2739:6;;;;;:::i;:::-;;:::i;880:25:5:-;;;;;;;;;;;;;;;;3247:191;;;;;;;;;;;;;:::i;3133:108::-;;;;;;;;;;-1:-1:-1;3133:108:5;;;;;:::i;:::-;;:::i;3444:99::-;;;;;;;;;;-1:-1:-1;3444:99:5;;;;;:::i;:::-;;:::i;13912:179:6:-;;;;;;;;;;-1:-1:-1;13912:179:6;;;;;:::i;:::-;;:::i;4000:113:5:-;;;;;;;;;;-1:-1:-1;4000:113:5;;;;;:::i;:::-;;:::i;527:25::-;;;;;;;;;;-1:-1:-1;527:25:5;;;;;;;;;;;;;;;:::i;1021:962::-;;;;;;:::i;:::-;;:::i;10957:142:6:-;;;;;;;;;;-1:-1:-1;10957:142:6;;;;;:::i;:::-;;:::i;559:80:5:-;;;;;;;;;;;;;:::i;6319:221:6:-;;;;;;;;;;-1:-1:-1;6319:221:6;;;;;:::i;:::-;;:::i;1668:101:0:-;;;;;;;;;;;;;:::i;746:39:5:-;;;;;;;;;;;;;;;;1036:85:0;;;;;;;;;;-1:-1:-1;1108:6:0;;-1:-1:-1;;;;;1108:6:0;1036:85;;11323:102:6;;;;;;;;;;;;;:::i;13315:303::-;;;;;;;;;;-1:-1:-1;13315:303:6;;;;;:::i;:::-;;:::i;1989:831:5:-;;;;;;:::i;:::-;;:::i;14157:388:6:-;;;;;;;;;;-1:-1:-1;14157:388:6;;;;;:::i;:::-;;:::i;4119:149:5:-;;;;;;;;;;-1:-1:-1;4119:149:5;;;;;:::i;:::-;;:::i;3653:333::-;;;;;;;;;;-1:-1:-1;3653:333:5;;;;;:::i;:::-;;:::i;13684:162:6:-;;;;;;;;;;-1:-1:-1;13684:162:6;;;;;:::i;:::-;-1:-1:-1;;;;;13804:25:6;;;13781:4;13804:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;13684:162;1918:198:0;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;3033:94:5:-;;;;;;;;;;-1:-1:-1;3033:94:5;;;;;:::i;:::-;;:::i;5653:607:6:-;5738:4;-1:-1:-1;;;;;;;;;6033:25:6;;;;:101;;-1:-1:-1;;;;;;;;;;6109:25:6;;;6033:101;:177;;;-1:-1:-1;;;;;;;;;;6185:25:6;;;6033:177;6014:196;5653:607;-1:-1:-1;;5653:607:6:o;2826:201:5:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:2;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;;;;;;;;;736:4:5::1;2932:8;2916:13;4998:12:6::0;;4789:7;4982:13;:28;;4736:309;2916:13:5::1;:24;;;;:::i;:::-;:43;;2908:78;;;::::0;-1:-1:-1;;;2908:78:5;;12713:2:8;2908:78:5::1;::::0;::::1;12695:21:8::0;12752:2;12732:18;;;12725:30;-1:-1:-1;;;12771:18:8;;;12764:52;12833:18;;2908:78:5::1;12685:172:8::0;2908:78:5::1;2996:24;3006:3;3011:8;2996:9;:24::i;:::-;2826:201:::0;;:::o;11161:98:6:-;11215:13;11247:5;11240:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11161:98;:::o;13048:200::-;13116:7;13140:16;13148:7;13140;:16::i;:::-;13135:64;;13165:34;;-1:-1:-1;;;13165:34:6;;;;;;;;;;;13135:64;-1:-1:-1;13217:24:6;;;;:15;:24;;;;;;-1:-1:-1;;;;;13217:24:6;;13048:200::o;12611:376::-;12683:13;12699:16;12707:7;12699;:16::i;:::-;12683:32;-1:-1:-1;719:10:2;-1:-1:-1;;;;;12730:28:6;;;12726:172;;12777:44;12794:5;719:10:2;13684:162:6;:::i;12777:44::-;12772:126;;12848:35;;-1:-1:-1;;;12848:35:6;;;;;;;;;;;12772:126;12908:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;12908:29:6;-1:-1:-1;;;;;12908:29:6;;;;;;;;;12952:28;;12908:24;;12952:28;;;;;;;12611:376;;;:::o;22055:2739::-;22184:27;22214;22233:7;22214:18;:27::i;:::-;22184:57;;22297:4;-1:-1:-1;;;;;22256:45:6;22272:19;-1:-1:-1;;;;;22256:45:6;;22252:86;;22310:28;;-1:-1:-1;;;22310:28:6;;;;;;;;;;;22252:86;22350:27;20821:21;;;20652:15;20862:4;20855:36;20943:4;20927:21;;21031:26;;719:10:2;21766:30:6;;;-1:-1:-1;;;;;21468:26:6;;21745:19;;;21742:55;22526:173;;22612:43;22629:4;719:10:2;13684:162:6;:::i;22612:43::-;22607:92;;22664:35;;-1:-1:-1;;;22664:35:6;;;;;;;;;;;22607:92;-1:-1:-1;;;;;22714:16:6;;22710:52;;22739:23;;-1:-1:-1;;;22739:23:6;;;;;;;;;;;22710:52;22905:15;22902:2;;;23043:1;23022:19;23015:30;22902:2;-1:-1:-1;;;;;23429:24:6;;;;;;;:18;:24;;;;;;23427:26;;-1:-1:-1;;23427:26:6;;;23497:22;;;;;;;;;23495:24;;-1:-1:-1;23495:24:6;;;10863:11;10839:22;10835:40;10822:62;-1:-1:-1;;;10822:62:6;23783:26;;;;:17;:26;;;;;:171;-1:-1:-1;;;24071:46:6;;24067:616;;24174:1;24164:11;;24142:19;24295:30;;;:17;:30;;;;;;24291:378;;24431:13;;24416:11;:28;24412:239;;24576:30;;;;:17;:30;;;;;:52;;;24412:239;24067:616;;24727:7;24723:2;-1:-1:-1;;;;;24708:27:6;24717:4;-1:-1:-1;;;;;24708:27:6;;;;;;;;;;;22055:2739;;;;;;:::o;3247:191:5:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:2;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3337:1:5::1;3313:21;:25;3305:68;;;::::0;-1:-1:-1;;;3305:68:5;;8774:2:8;3305:68:5::1;::::0;::::1;8756:21:8::0;8813:2;8793:18;;;8786:30;8852:33;8832:18;;;8825:61;8903:18;;3305:68:5::1;8746:181:8::0;3305:68:5::1;1108:6:0::0;;3383:48:5::1;::::0;-1:-1:-1;;;;;1108:6:0;;;;3409:21:5::1;3383:48:::0;::::1;;;::::0;::::1;::::0;;;3409:21;1108:6:0;3383:48:5;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;3247:191::o:0;3133:108::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:2;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3209:13:5::1;:25:::0;3133:108::o;3444:99::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:2;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3519:17:5;;::::1;::::0;:7:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;13912:179:6:-:0;14045:39;14062:4;14068:2;14072:7;14045:39;;;;;;;;;;;;:16;:39::i;:::-;13912:179;;;:::o;4000:113:5:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:2;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;4079:10:5::1;:27:::0;4000:113::o;1021:962::-;1136:18;1120:12;;;;:34;;;;;;-1:-1:-1;;;1120:34:5;;;;;;;;;;1112:90;;;;-1:-1:-1;;;1112:90:5;;11126:2:8;1112:90:5;;;11108:21:8;11165:2;11145:18;;;11138:30;11204:34;11184:18;;;11177:62;-1:-1:-1;;;11255:18:8;;;11248:41;11306:19;;1112:90:5;11098:233:8;1112:90:5;1245:28;;-1:-1:-1;;1262:10:5;6204:2:8;6200:15;6196:53;1245:28:5;;;6184:66:8;1220:55:5;;1228:5;;6266:12:8;;1245:28:5;;;;;;;;;;;;1235:39;;;;;;1220:7;:55::i;:::-;1212:109;;;;-1:-1:-1;;;1212:109:5;;9541:2:8;1212:109:5;;;9523:21:8;9580:2;9560:18;;;9553:30;9619:34;9599:18;;;9592:62;-1:-1:-1;;;9670:18:8;;;9663:39;9719:19;;1212:109:5;9513:231:8;1212:109:5;1339:10;1353:9;1339:23;1331:78;;;;-1:-1:-1;;;1331:78:5;;;;;;;:::i;:::-;689:1;1438:25;1452:10;-1:-1:-1;;;;;6705:25:6;6678:7;6705:25;;;:18;:25;;1156:2;6705:25;;;;;:49;;1022:13;6704:80;;6617:174;1438:25:5;1427:36;;:8;:36;:::i;:::-;:54;;1419:107;;;;-1:-1:-1;;;1419:107:5;;;;;;;:::i;:::-;736:4;1560:8;1544:13;4998:12:6;;4789:7;4982:13;:28;;4736:309;1544:13:5;:24;;;;:::i;:::-;:43;;1536:83;;;;-1:-1:-1;;;1536:83:5;;11538:2:8;1536:83:5;;;11520:21:8;11577:2;11557:18;;;11550:30;11616:29;11596:18;;;11589:57;11663:18;;1536:83:5;11510:177:8;1536:83:5;1648:10;1633:26;;;;:14;:26;;;;;;;;1630:227;;;1703:13;;1692:24;;:8;:24;:::i;:::-;1684:5;:32;1630:227;;;1778:10;1763:26;;;;:14;:26;;;;;:33;;-1:-1:-1;;1763:33:5;1792:4;1763:33;;;;;;1833:13;;;1819:10;;:8;:10;:::i;:::-;1818:28;;;;:::i;:::-;1810:5;:36;1630:227;1888:5;;1875:9;:18;;1867:67;;;;-1:-1:-1;;;1867:67:5;;;;;;;:::i;:::-;1944:31;1954:10;1966:8;1944:9;:31::i;10957:142:6:-;11021:7;11063:27;11082:7;11063:18;:27::i;559:80:5:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6319:221:6:-;6383:7;-1:-1:-1;;;;;6406:19:6;;6402:60;;6434:28;;-1:-1:-1;;;6434:28:6;;;;;;;;;;;6402:60;-1:-1:-1;;;;;;6479:25:6;;;;;:18;:25;;;;;;1022:13;6479:54;;6319:221::o;1668:101:0:-;1108:6;;-1:-1:-1;;;;;1108:6:0;719:10:2;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;11323:102:6:-;11379:13;11411:7;11404:14;;;;;:::i;13315:303::-;-1:-1:-1;;;;;13413:31:6;;719:10:2;13413:31:6;13409:61;;;13453:17;;-1:-1:-1;;;13453:17:6;;;;;;;;;;;13409:61;719:10:2;13481:39:6;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;13481:49:6;;;;;;;;;;;;:60;;-1:-1:-1;;13481:60:6;;;;;;;;;;13556:55;;7772:41:8;;;13481:49:6;;719:10:2;13556:55:6;;7745:18:8;13556:55:6;;;;;;;13315:303;;:::o;1989:831:5:-;2078:15;2062:12;;;;:31;;;;;;-1:-1:-1;;;2062:31:5;;;;;;;;;;2054:83;;;;-1:-1:-1;;;2054:83:5;;12305:2:8;2054:83:5;;;12287:21:8;12344:2;12324:18;;;12317:30;12383:34;12363:18;;;12356:62;-1:-1:-1;;;12434:18:8;;;12427:37;12481:19;;2054:83:5;12277:229:8;2054:83:5;2155:10;2169:9;2155:23;2147:78;;;;-1:-1:-1;;;2147:78:5;;;;;;;:::i;:::-;689:1;2254:25;2268:10;-1:-1:-1;;;;;6705:25:6;6678:7;6705:25;;;:18;:25;;1156:2;6705:25;;;;;:49;;1022:13;6704:80;;6617:174;2254:25:5;2243:36;;:8;:36;:::i;:::-;:54;;2235:107;;;;-1:-1:-1;;;2235:107:5;;;;;;;:::i;:::-;736:4;2376:8;2360:13;4998:12:6;;4789:7;4982:13;:28;;4736:309;2360:13:5;:24;;;;:::i;:::-;:43;;2352:83;;;;-1:-1:-1;;;2352:83:5;;11538:2:8;2352:83:5;;;11520:21:8;11577:2;11557:18;;;11550:30;11616:29;11596:18;;;11589:57;11663:18;;2352:83:5;11510:177:8;2352:83:5;2464:10;2449:26;;;;:14;:26;;;;;;;;2446:227;;;2519:13;;2508:24;;:8;:24;:::i;:::-;2500:5;:32;2446:227;;;2594:10;2579:26;;;;:14;:26;;;;;:33;;-1:-1:-1;;2579:33:5;2608:4;2579:33;;;;;;2649:13;;;2635:10;;:8;:10;:::i;:::-;2634:28;;;;:::i;:::-;2626:5;:36;2446:227;2704:5;;2691:9;:18;;2683:67;;;;-1:-1:-1;;;2683:67:5;;;;;;;:::i;:::-;2760:31;2770:10;2782:8;2760:9;:31::i;14157:388:6:-;14318:31;14331:4;14337:2;14341:7;14318:12;:31::i;:::-;-1:-1:-1;;;;;14363:14:6;;;:19;14359:180;;14401:56;14432:4;14438:2;14442:7;14451:5;14401:30;:56::i;:::-;14396:143;;14484:40;;-1:-1:-1;;;14484:40:6;;;;;;;;;;;14396:143;14157:388;;;;:::o;4119:149:5:-;4195:4;4218:43;4237:5;4244:10;;4256:4;4218:18;:43::i;:::-;4211:50;4119:149;-1:-1:-1;;;4119:149:5:o;3653:333::-;3718:13;3748:16;3756:7;3748;:16::i;:::-;3743:59;;3773:29;;-1:-1:-1;;;3773:29:5;;;;;;;;;;;3743:59;3813:22;3838:10;:8;:10::i;:::-;3813:35;;3899:1;3880:8;3874:22;:26;:104;;;;;;;;;;;;;;;;;3927:8;3937:25;3954:7;3937:16;:25::i;:::-;3910:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3867:111;3653:333;-1:-1:-1;;;3653:333:5:o;1918:198:0:-;1108:6;;-1:-1:-1;;;;;1108:6:0;719:10:2;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;9134:2:8;1998:73:0::1;::::0;::::1;9116:21:8::0;9173:2;9153:18;;;9146:30;9212:34;9192:18;;;9185:62;-1:-1:-1;;;9263:18:8;;;9256:36;9309:19;;1998:73:0::1;9106:228:8::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;3033:94:5:-:0;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:2;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3113:6:5::1;3107:13;;;;;;-1:-1:-1::0;;;3107:13:5::1;;;;;;;;;3092:12;:28:::0;;-1:-1:-1;;3092:28:5::1;::::0;;::::1;::::0;::::1;;;;-1:-1:-1::0;;;3092:28:5::1;;;;;;;;;;;;;;3033:94:::0;:::o;15138:102:6:-;15206:27;15216:2;15220:8;15206:27;;;;;;;;;;;;:9;:27::i;14791:268::-;14848:4;14935:13;;14925:7;:23;14883:150;;;;-1:-1:-1;;14985:26:6;;;;:17;:26;;;;;;-1:-1:-1;;;14985:43:6;:48;;14791:268::o;7949:1105::-;8016:7;8050;8148:13;;8141:4;:20;8137:853;;;8185:14;8202:23;;;:17;:23;;;;;;-1:-1:-1;;;8289:23:6;;8285:687;;8800:111;8807:11;8800:111;;-1:-1:-1;;;8877:6:6;8859:25;;;;:17;:25;;;;;;8800:111;;8285:687;8137:853;;9016:31;;-1:-1:-1;;;9016:31:6;;;;;;;;;;;2270:187:0;2362:6;;;-1:-1:-1;;;;;2378:17:0;;;-1:-1:-1;;;;;;2378:17:0;;;;;;;2410:40;;2362:6;;;2378:17;2362:6;;2410:40;;2343:16;;2410:40;2270:187;;:::o;28649:697:6:-;28827:88;;-1:-1:-1;;;28827:88:6;;28807:4;;-1:-1:-1;;;;;28827:45:6;;;;;:88;;719:10:2;;28894:4:6;;28900:7;;28909:5;;28827:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28827:88:6;;;;;;;;-1:-1:-1;;28827:88:6;;;;;;;;;;;;:::i;:::-;;;28823:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29105:13:6;;29101:229;;29150:40;;-1:-1:-1;;;29150:40:6;;;;;;;;;;;29101:229;29290:6;29284:13;29275:6;29271:2;29267:15;29260:38;28823:517;-1:-1:-1;;;;;;28983:64:6;-1:-1:-1;;;28983:64:6;;-1:-1:-1;28823:517:6;28649:697;;;;;;:::o;862:184:4:-;983:4;1035;1006:25;1019:5;1026:4;1006:12;:25::i;:::-;:33;;862:184;-1:-1:-1;;;;862:184:4:o;3549:98:5:-;3601:13;3633:7;3626:14;;;;;:::i;328:703:3:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:3;;;;;;;;;;;;-1:-1:-1;;;627:10:3;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:3;;-1:-1:-1;773:2:3;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;-1:-1:-1;;;817:17:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:3;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:3;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;-1:-1:-1;;;902:14:3;;;;;;;;;;;;:56;-1:-1:-1;;;;;902:56:3;;;;;;;;-1:-1:-1;972:11:3;981:2;972:11;;:::i;:::-;;;844:150;;15641:661:6;15759:19;15765:2;15769:8;15759:5;:19::i;:::-;-1:-1:-1;;;;;15817:14:6;;;:19;15813:473;;15856:11;15870:13;15917:14;;;15949:229;15979:62;16018:1;16022:2;16026:7;;;;;;16035:5;15979:30;:62::i;:::-;15974:165;;16076:40;;-1:-1:-1;;;16076:40:6;;;;;;;;;;;15974:165;16173:3;16165:5;:11;15949:229;;16258:3;16241:13;;:20;16237:34;;16263:8;;;16237:34;15813:473;;15641:661;;;:::o;1398:662:4:-;1481:7;1523:4;1481:7;1537:488;1561:5;:12;1557:1;:16;1537:488;;;1594:20;1617:5;1623:1;1617:8;;;;;;-1:-1:-1;;;1617:8:4;;;;;;;;;;;;;;;1594:31;;1659:12;1643;:28;1639:376;;2134:13;2182:15;;;2217:4;2210:15;;;2263:4;2247:21;;1769:57;;1639:376;;;2134:13;2182:15;;;2217:4;2210:15;;;2263:4;2247:21;;1943:57;;1639:376;-1:-1:-1;1575:3:4;;;;:::i;:::-;;;;1537:488;;;-1:-1:-1;2041:12:4;1398:662;-1:-1:-1;;;1398:662:4:o;16563:1492:6:-;16627:20;16650:13;-1:-1:-1;;;;;16677:16:6;;16673:48;;16702:19;;-1:-1:-1;;;16702:19:6;;;;;;;;;;;16673:48;16735:13;16731:44;;16757:18;;-1:-1:-1;;;16757:18:6;;;;;;;;;;;16731:44;-1:-1:-1;;;;;17250:22:6;;;;;;:18;:22;;1156:2;17250:22;;:70;;17288:31;17276:44;;17250:70;;;10863:11;10839:22;10835:40;-1:-1:-1;12522:15:6;;12497:23;12493:45;10832:51;10822:62;17556:31;;;;:17;:31;;;;;:170;17574:12;17799:23;;;17836:99;17862:35;;17887:9;;;;;-1:-1:-1;;;;;17862:35:6;;;17879:1;;17862:35;;17879:1;;17862:35;17930:3;17920:7;:13;17836:99;;17949:13;:19;-1:-1:-1;13912:179:6;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:8;78:5;112:18;104:6;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:8;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:8;;532:42;;522:2;;588:1;585;578:12;522:2;474:124;;;:::o;603:743::-;657:5;710:3;703:4;695:6;691:17;687:27;677:2;;732:5;725;718:20;677:2;772:6;759:20;798:4;821:18;817:2;814:26;811:2;;;843:18;;:::i;:::-;889:2;886:1;882:10;912:28;936:2;932;928:11;912:28;:::i;:::-;974:15;;;1005:12;;;;1037:15;;;1071;;;1067:24;;1064:33;-1:-1:-1;1061:2:8;;;1114:5;1107;1100:20;1061:2;1140:5;1131:14;;1154:163;1168:2;1165:1;1162:9;1154:163;;;1225:17;;1213:30;;1186:1;1179:9;;;;;1263:12;;;;1295;;1154:163;;;-1:-1:-1;1335:5:8;667:679;-1:-1:-1;;;;;;;667:679:8:o;1351:196::-;1410:6;1463:2;1451:9;1442:7;1438:23;1434:32;1431:2;;;1484:6;1476;1469:22;1431:2;1512:29;1531:9;1512:29;:::i;1552:270::-;1620:6;1628;1681:2;1669:9;1660:7;1656:23;1652:32;1649:2;;;1702:6;1694;1687:22;1649:2;1730:29;1749:9;1730:29;:::i;:::-;1720:39;;1778:38;1812:2;1801:9;1797:18;1778:38;:::i;:::-;1768:48;;1639:183;;;;;:::o;1827:338::-;1904:6;1912;1920;1973:2;1961:9;1952:7;1948:23;1944:32;1941:2;;;1994:6;1986;1979:22;1941:2;2022:29;2041:9;2022:29;:::i;:::-;2012:39;;2070:38;2104:2;2093:9;2089:18;2070:38;:::i;:::-;2060:48;;2155:2;2144:9;2140:18;2127:32;2117:42;;1931:234;;;;;:::o;2170:696::-;2265:6;2273;2281;2289;2342:3;2330:9;2321:7;2317:23;2313:33;2310:2;;;2364:6;2356;2349:22;2310:2;2392:29;2411:9;2392:29;:::i;:::-;2382:39;;2440:38;2474:2;2463:9;2459:18;2440:38;:::i;:::-;2430:48;;2525:2;2514:9;2510:18;2497:32;2487:42;;2580:2;2569:9;2565:18;2552:32;2607:18;2599:6;2596:30;2593:2;;;2644:6;2636;2629:22;2593:2;2672:22;;2725:4;2717:13;;2713:27;-1:-1:-1;2703:2:8;;2759:6;2751;2744:22;2703:2;2787:73;2852:7;2847:2;2834:16;2829:2;2825;2821:11;2787:73;:::i;:::-;2777:83;;;2300:566;;;;;;;:::o;2871:367::-;2936:6;2944;2997:2;2985:9;2976:7;2972:23;2968:32;2965:2;;;3018:6;3010;3003:22;2965:2;3046:29;3065:9;3046:29;:::i;:::-;3036:39;;3125:2;3114:9;3110:18;3097:32;3172:5;3165:13;3158:21;3151:5;3148:32;3138:2;;3199:6;3191;3184:22;3138:2;3227:5;3217:15;;;2955:283;;;;;:::o;3243:264::-;3311:6;3319;3372:2;3360:9;3351:7;3347:23;3343:32;3340:2;;;3393:6;3385;3378:22;3340:2;3421:29;3440:9;3421:29;:::i;:::-;3411:39;3497:2;3482:18;;;;3469:32;;-1:-1:-1;;;3330:177:8:o;3512:436::-;3605:6;3613;3666:2;3654:9;3645:7;3641:23;3637:32;3634:2;;;3687:6;3679;3672:22;3634:2;3732:9;3719:23;3765:18;3757:6;3754:30;3751:2;;;3802:6;3794;3787:22;3751:2;3830:61;3883:7;3874:6;3863:9;3859:22;3830:61;:::i;:::-;3820:71;3938:2;3923:18;;;;3910:32;;-1:-1:-1;;;;3624:324:8:o;3953:190::-;4012:6;4065:2;4053:9;4044:7;4040:23;4036:32;4033:2;;;4086:6;4078;4071:22;4033:2;-1:-1:-1;4114:23:8;;4023:120;-1:-1:-1;4023:120:8:o;4148:255::-;4206:6;4259:2;4247:9;4238:7;4234:23;4230:32;4227:2;;;4280:6;4272;4265:22;4227:2;4324:9;4311:23;4343:30;4367:5;4343:30;:::i;4408:259::-;4477:6;4530:2;4518:9;4509:7;4505:23;4501:32;4498:2;;;4551:6;4543;4536:22;4498:2;4588:9;4582:16;4607:30;4631:5;4607:30;:::i;4672:480::-;4741:6;4794:2;4782:9;4773:7;4769:23;4765:32;4762:2;;;4815:6;4807;4800:22;4762:2;4860:9;4847:23;4893:18;4885:6;4882:30;4879:2;;;4930:6;4922;4915:22;4879:2;4958:22;;5011:4;5003:13;;4999:27;-1:-1:-1;4989:2:8;;5045:6;5037;5030:22;4989:2;5073:73;5138:7;5133:2;5120:16;5115:2;5111;5107:11;5073:73;:::i;5352:436::-;5445:6;5453;5506:2;5494:9;5485:7;5481:23;5477:32;5474:2;;;5527:6;5519;5512:22;5474:2;5568:9;5555:23;5545:33;;5629:2;5618:9;5614:18;5601:32;5656:18;5648:6;5645:30;5642:2;;;5693:6;5685;5678:22;5642:2;5721:61;5774:7;5765:6;5754:9;5750:22;5721:61;:::i;:::-;5711:71;;;5464:324;;;;;:::o;5793:257::-;5834:3;5872:5;5866:12;5899:6;5894:3;5887:19;5915:63;5971:6;5964:4;5959:3;5955:14;5948:4;5941:5;5937:16;5915:63;:::i;:::-;6032:2;6011:15;-1:-1:-1;;6007:29:8;5998:39;;;;6039:4;5994:50;;5842:208;-1:-1:-1;;5842:208:8:o;6289:637::-;6569:3;6607:6;6601:13;6623:53;6669:6;6664:3;6657:4;6649:6;6645:17;6623:53;:::i;:::-;6739:13;;6698:16;;;;6761:57;6739:13;6698:16;6795:4;6783:17;;6761:57;:::i;:::-;-1:-1:-1;;;6840:20:8;;6869:22;;;6918:1;6907:13;;6577:349;-1:-1:-1;;;;6577:349:8:o;7139:488::-;-1:-1:-1;;;;;7408:15:8;;;7390:34;;7460:15;;7455:2;7440:18;;7433:43;7507:2;7492:18;;7485:34;;;7555:3;7550:2;7535:18;;7528:31;;;7333:4;;7576:45;;7601:19;;7593:6;7576:45;:::i;:::-;7568:53;7342:285;-1:-1:-1;;;;;;7342:285:8:o;8006:337::-;8147:2;8132:18;;8180:1;8169:13;;8159:2;;8225:10;8220:3;8216:20;8213:1;8206:31;8260:4;8257:1;8250:15;8288:4;8285:1;8278:15;8159:2;8312:25;;;8114:229;:::o;8348:219::-;8497:2;8486:9;8479:21;8460:4;8517:44;8557:2;8546:9;8542:18;8534:6;8517:44;:::i;9749:400::-;9951:2;9933:21;;;9990:2;9970:18;;;9963:30;10029:34;10024:2;10009:18;;10002:62;-1:-1:-1;;;10095:2:8;10080:18;;10073:34;10139:3;10124:19;;9923:226::o;10154:404::-;10356:2;10338:21;;;10395:2;10375:18;;;10368:30;10434:34;10429:2;10414:18;;10407:62;-1:-1:-1;;;10500:2:8;10485:18;;10478:38;10548:3;10533:19;;10328:230::o;10563:356::-;10765:2;10747:21;;;10784:18;;;10777:30;10843:34;10838:2;10823:18;;10816:62;10910:2;10895:18;;10737:182::o;11692:406::-;11894:2;11876:21;;;11933:2;11913:18;;;11906:30;11972:34;11967:2;11952:18;;11945:62;-1:-1:-1;;;12038:2:8;12023:18;;12016:40;12088:3;12073:19;;11866:232::o;13044:275::-;13115:2;13109:9;13180:2;13161:13;;-1:-1:-1;;13157:27:8;13145:40;;13215:18;13200:34;;13236:22;;;13197:62;13194:2;;;13262:18;;:::i;:::-;13298:2;13291:22;13089:230;;-1:-1:-1;13089:230:8:o;13324:128::-;13364:3;13395:1;13391:6;13388:1;13385:13;13382:2;;;13401:18;;:::i;:::-;-1:-1:-1;13437:9:8;;13372:80::o;13457:120::-;13497:1;13523;13513:2;;13528:18;;:::i;:::-;-1:-1:-1;13562:9:8;;13503:74::o;13582:168::-;13622:7;13688:1;13684;13680:6;13676:14;13673:1;13670:21;13665:1;13658:9;13651:17;13647:45;13644:2;;;13695:18;;:::i;:::-;-1:-1:-1;13735:9:8;;13634:116::o;13755:125::-;13795:4;13823:1;13820;13817:8;13814:2;;;13828:18;;:::i;:::-;-1:-1:-1;13865:9:8;;13804:76::o;13885:258::-;13957:1;13967:113;13981:6;13978:1;13975:13;13967:113;;;14057:11;;;14051:18;14038:11;;;14031:39;14003:2;13996:10;13967:113;;;14098:6;14095:1;14092:13;14089:2;;;-1:-1:-1;;14133:1:8;14115:16;;14108:27;13938:205::o;14148:380::-;14227:1;14223:12;;;;14270;;;14291:2;;14345:4;14337:6;14333:17;14323:27;;14291:2;14398;14390:6;14387:14;14367:18;14364:38;14361:2;;;14444:10;14439:3;14435:20;14432:1;14425:31;14479:4;14476:1;14469:15;14507:4;14504:1;14497:15;14361:2;;14203:325;;;:::o;14533:135::-;14572:3;-1:-1:-1;;14593:17:8;;14590:2;;;14613:18;;:::i;:::-;-1:-1:-1;14660:1:8;14649:13;;14580:88::o;14673:112::-;14705:1;14731;14721:2;;14736:18;;:::i;:::-;-1:-1:-1;14770:9:8;;14711:74::o;14790:127::-;14851:10;14846:3;14842:20;14839:1;14832:31;14882:4;14879:1;14872:15;14906:4;14903:1;14896:15;14922:127;14983:10;14978:3;14974:20;14971:1;14964:31;15014:4;15011:1;15004:15;15038:4;15035:1;15028:15;15054:127;15115:10;15110:3;15106:20;15103:1;15096:31;15146:4;15143:1;15136:15;15170:4;15167:1;15160:15;15186:131;-1:-1:-1;;;;;;15260:32:8;;15250:43;;15240:2;;15307:1;15304;15297:12
Swarm Source
ipfs://f478052f286dd85741875717e88cc90449d7bca99eedcdfdd9f5e62f28f1ede8
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.