ERC-721
Overview
Max Total Supply
1,209 NotPoop
Holders
620
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 NotPoopLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NotPoopCollection
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-10 */ // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // 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) } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @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); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/NotPoopCollection.sol //SPDX-License-Identifier: MIT pragma solidity >=0.7.0 <0.9.0; pragma solidity >=0.7.0 <0.9.0; contract NotPoopCollection is ERC721A, Ownable { /** ERRORS */ error ExceedsMaxSupply(); error InvalidValue(); error ExceedsWalletLimit(); error TokenNotFound(); error ContractMint(); error SaleInactive(); using Strings for uint256; uint256 public basePrice = 0.004 ether; uint256 public maxSupply = 3333; uint256 public maxMintAmountPerTx = 10; uint256 public freeMaxMintPerWallet = 2; uint256 public FREE_MINT_MAX = 1111; bool public saleActive = false; mapping(address => uint256) public freeWallets; string _baseTokenURI; constructor() ERC721A("Not Poop Collection", "NotPoop") payable {} modifier mintCompliance(uint256 _mintAmount) { if (!saleActive) revert SaleInactive(); if (msg.sender != tx.origin) revert ContractMint(); unchecked { if (totalSupply() + _mintAmount > maxSupply) revert ExceedsMaxSupply(); if (_mintAmount > maxMintAmountPerTx) revert InvalidValue(); } _; } function mint(uint256 quantity_) external payable mintCompliance(quantity_) { unchecked { uint256 price = basePrice * quantity_; if (totalSupply() < FREE_MINT_MAX) { if (freeWallets[msg.sender] + quantity_ <= freeMaxMintPerWallet) { price = 0; freeWallets[msg.sender] += quantity_; } else if (freeWallets[msg.sender] + quantity_ > freeMaxMintPerWallet && freeWallets[msg.sender] < freeMaxMintPerWallet) { uint256 freeBalance = freeMaxMintPerWallet - freeWallets[msg.sender]; uint256 toSub = basePrice * freeBalance; price -= toSub; freeWallets[msg.sender] += freeBalance; } } if (msg.value != price) revert InvalidValue(); } _mint(msg.sender, quantity_); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function isFreeMint() public view returns (bool) { return totalSupply() < FREE_MINT_MAX; } function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner { _safeMint(_receiver, _mintAmount); } function setBasePrice(uint256 _cost) public onlyOwner { basePrice = _cost; } function setMaxSupply(uint256 _maxSupply) external onlyOwner { maxSupply = _maxSupply; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function toggleSaleState() public onlyOwner { saleActive = !saleActive; } function setMaxFreeMint(uint256 _max) public onlyOwner { FREE_MINT_MAX = _max; } function withdraw() public onlyOwner { payable(owner()).transfer(address(this).balance); } /** METADATA */ function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { if (!_exists(_tokenId)) revert TokenNotFound(); return string(abi.encodePacked(_baseURI(), _tokenId.toString(), ".json")); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ContractMint","type":"error"},{"inputs":[],"name":"ExceedsMaxSupply","type":"error"},{"inputs":[],"name":"ExceedsWalletLimit","type":"error"},{"inputs":[],"name":"InvalidValue","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"SaleInactive","type":"error"},{"inputs":[],"name":"TokenNotFound","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MINT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"basePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMaxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity_","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setBasePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
660e35fa931a0000600955610d05600a908155600b556002600c819055610457600d55600e805460ff19169055601360808181527f4e6f7420506f6f7020436f6c6c656374696f6e0000000000000000000000000060a0908152610100604052600760c09081526604e6f74506f6f760cc1b60e052919391926200008592919062000106565b5080516200009b90600390602084019062000106565b5050600160005550620000ae33620000b4565b620001e8565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011490620001ac565b90600052602060002090601f01602090048101928262000138576000855562000183565b82601f106200015357805160ff191683800117855562000183565b8280016001018555821562000183579182015b828111156200018357825182559160200191906001019062000166565b506200019192915062000195565b5090565b5b8082111562000191576000815560010162000196565b600181811c90821680620001c157607f821691505b602082108103620001e257634e487b7160e01b600052602260045260246000fd5b50919050565b611f0780620001f86000396000f3fe6080604052600436106102195760003560e01c8063742a4c9b1161011d578063c2d05a6e116100b0578063daaeec861161007f578063e985e9c511610064578063e985e9c5146105c9578063efbd73f414610612578063f2fde38b1461063257600080fd5b8063daaeec8614610594578063de4b3262146105a957600080fd5b8063c2d05a6e14610533578063c7876ea414610548578063c87b56dd1461055e578063d5abeb011461057e57600080fd5b8063a0712d68116100ec578063a0712d68146104c0578063a22cb465146104d3578063b071401b146104f3578063b88d4fde1461051357600080fd5b8063742a4c9b146104575780638da5cb5b1461047757806394354fd01461049557806395d89b41146104ab57600080fd5b80633ccfd60b116101b057806366112b6b1161017f5780636f8b44b0116101645780636f8b44b01461040257806370a0823114610422578063715018a61461044257600080fd5b806366112b6b146103d257806368428a1b146103e857600080fd5b80633ccfd60b1461035d57806342842e0e1461037257806355f804b3146103925780636352211e146103b257600080fd5b8063095ea7b3116101ec578063095ea7b3146102e857806318160ddd1461030a57806323b872dd146103275780633bc4b0251461034757600080fd5b806301ffc9a71461021e57806306bb99e21461025357806306fdde031461028e578063081812fc146102b0575b600080fd5b34801561022a57600080fd5b5061023e610239366004611a01565b610652565b60405190151581526020015b60405180910390f35b34801561025f57600080fd5b5061028061026e366004611a3a565b600f6020526000908152604090205481565b60405190815260200161024a565b34801561029a57600080fd5b506102a36106ef565b60405161024a9190611aad565b3480156102bc57600080fd5b506102d06102cb366004611ac0565b610781565b6040516001600160a01b03909116815260200161024a565b3480156102f457600080fd5b50610308610303366004611ad9565b6107de565b005b34801561031657600080fd5b506001546000540360001901610280565b34801561033357600080fd5b50610308610342366004611b03565b6108ef565b34801561035357600080fd5b50610280600d5481565b34801561036957600080fd5b506103086108ff565b34801561037e57600080fd5b5061030861038d366004611b03565b61099a565b34801561039e57600080fd5b506103086103ad366004611b3f565b6109b5565b3480156103be57600080fd5b506102d06103cd366004611ac0565b610a1b565b3480156103de57600080fd5b50610280600c5481565b3480156103f457600080fd5b50600e5461023e9060ff1681565b34801561040e57600080fd5b5061030861041d366004611ac0565b610a26565b34801561042e57600080fd5b5061028061043d366004611a3a565b610a85565b34801561044e57600080fd5b50610308610aed565b34801561046357600080fd5b50610308610472366004611ac0565b610b53565b34801561048357600080fd5b506008546001600160a01b03166102d0565b3480156104a157600080fd5b50610280600b5481565b3480156104b757600080fd5b506102a3610bb2565b6103086104ce366004611ac0565b610bc1565b3480156104df57600080fd5b506103086104ee366004611bb1565b610d7e565b3480156104ff57600080fd5b5061030861050e366004611ac0565b610e2c565b34801561051f57600080fd5b5061030861052e366004611c03565b610e8b565b34801561053f57600080fd5b5061023e610ed5565b34801561055457600080fd5b5061028060095481565b34801561056a57600080fd5b506102a3610579366004611ac0565b610ef3565b34801561058a57600080fd5b50610280600a5481565b3480156105a057600080fd5b50610308610f6c565b3480156105b557600080fd5b506103086105c4366004611ac0565b610fda565b3480156105d557600080fd5b5061023e6105e4366004611cdf565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561061e57600080fd5b5061030861062d366004611d12565b611039565b34801561063e57600080fd5b5061030861064d366004611a3a565b61109d565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614806106b557507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b806106e957507f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600280546106fe90611d35565b80601f016020809104026020016040519081016040528092919081815260200182805461072a90611d35565b80156107775780601f1061074c57610100808354040283529160200191610777565b820191906000526020600020905b81548152906001019060200180831161075a57829003601f168201915b5050505050905090565b600061078c8261117c565b6107c2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107e9826111b1565b9050806001600160a01b0316836001600160a01b031603610836576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216146108865761085081336105e4565b610886576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108fa838383611240565b505050565b6008546001600160a01b0316331461095e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610997573d6000803e3d6000fd5b50565b6108fa83838360405180602001604052806000815250610e8b565b6008546001600160a01b03163314610a0f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610955565b6108fa60108383611952565b60006106e9826111b1565b6008546001600160a01b03163314610a805760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610955565b600a55565b60006001600160a01b038216610ac7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b475760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610955565b610b516000611459565b565b6008546001600160a01b03163314610bad5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610955565b600d55565b6060600380546106fe90611d35565b600e54819060ff16610bff576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b333214610c38576040517f72f67c2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a54600154600054038201600019011115610c80576040517fc30436e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b54811115610ca357604051632a9ffab760e21b815260040160405180910390fd5b600954600d546001546000549285029203600019011015610d4f57600c54336000908152600f6020526040902054840111610cf35750336000908152600f60205260408120805484019055610d4f565b600c54336000908152600f60205260409020548401118015610d255750600c54336000908152600f6020526040902054105b15610d4f57336000908152600f602052604090208054600c54600954908290039182019092550290035b803414610d6f57604051632a9ffab760e21b815260040160405180910390fd5b50610d7a33836114b8565b5050565b336001600160a01b03831603610dc0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610e865760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610955565b600b55565b610e96848484611240565b6001600160a01b0383163b15610ecf57610eb284848484611599565b610ecf576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000600d54610eed6001546000546000199190030190565b10905090565b6060610efe8261117c565b610f34576040517fcbdb7b3000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f3c611685565b610f4583611694565b604051602001610f56929190611d6f565b6040516020818303038152906040529050919050565b6008546001600160a01b03163314610fc65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610955565b600e805460ff19811660ff90911615179055565b6008546001600160a01b031633146110345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610955565b600955565b6008546001600160a01b031633146110935760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610955565b610d7a81836117c9565b6008546001600160a01b031633146110f75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610955565b6001600160a01b0381166111735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610955565b61099781611459565b600081600111158015611190575060005482105b80156106e9575050600090815260046020526040902054600160e01b161590565b6000818060011161120e5760005481101561120e5760008181526004602052604081205490600160e01b8216900361120c575b806000036112055750600019016000818152600460205260409020546111e4565b9392505050565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061124b826111b1565b9050836001600160a01b0316816001600160a01b031614611298576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b03861614806112b657506112b685336105e4565b806112d15750336112c684610781565b6001600160a01b0316145b90508061130a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841661134a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000838152600660209081526040808320805473ffffffffffffffffffffffffffffffffffffffff191690556001600160a01b0388811684526005835281842080546000190190558716835280832080546001019055858352600490915281207c02000000000000000000000000000000000000000000000000000000004260a01b87178117909155831690036114115760018301600081815260046020526040812054900361140f57600054811461140f5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000546001600160a01b0383166114e157604051622e076360e81b815260040160405180910390fd5b816000036115025760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061154d5750600055505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906115ce903390899088908890600401611dc6565b6020604051808303816000875af1925050508015611609575060408051601f3d908101601f1916820190925261160691810190611e02565b60015b611667573d808015611637576040519150601f19603f3d011682016040523d82523d6000602084013e61163c565b606091505b50805160000361165f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060601080546106fe90611d35565b6060816000036116d757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561170157806116eb81611e35565b91506116fa9050600a83611e64565b91506116db565b60008167ffffffffffffffff81111561171c5761171c611bed565b6040519080825280601f01601f191660200182016040528015611746576020820181803683370190505b5090505b841561167d5761175b600183611e78565b9150611768600a86611e8f565b611773906030611ea3565b60f81b81838151811061178857611788611ebb565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506117c2600a86611e64565b945061174a565b610d7a8282604051806020016040528060008152506000546001600160a01b03841661180757604051622e076360e81b815260040160405180910390fd5b826000036118285760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156118fd575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118c66000878480600101955087611599565b6118e3576040516368d2bf6b60e11b815260040160405180910390fd5b80821061187b5782600054146118f857600080fd5b611942565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106118fe575b506000908155610ecf9085838684565b82805461195e90611d35565b90600052602060002090601f01602090048101928261198057600085556119c6565b82601f106119995782800160ff198235161785556119c6565b828001600101855582156119c6579182015b828111156119c65782358255916020019190600101906119ab565b506119d29291506119d6565b5090565b5b808211156119d257600081556001016119d7565b6001600160e01b03198116811461099757600080fd5b600060208284031215611a1357600080fd5b8135611205816119eb565b80356001600160a01b0381168114611a3557600080fd5b919050565b600060208284031215611a4c57600080fd5b61120582611a1e565b60005b83811015611a70578181015183820152602001611a58565b83811115610ecf5750506000910152565b60008151808452611a99816020860160208601611a55565b601f01601f19169290920160200192915050565b6020815260006112056020830184611a81565b600060208284031215611ad257600080fd5b5035919050565b60008060408385031215611aec57600080fd5b611af583611a1e565b946020939093013593505050565b600080600060608486031215611b1857600080fd5b611b2184611a1e565b9250611b2f60208501611a1e565b9150604084013590509250925092565b60008060208385031215611b5257600080fd5b823567ffffffffffffffff80821115611b6a57600080fd5b818501915085601f830112611b7e57600080fd5b813581811115611b8d57600080fd5b866020828501011115611b9f57600080fd5b60209290920196919550909350505050565b60008060408385031215611bc457600080fd5b611bcd83611a1e565b915060208301358015158114611be257600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611c1957600080fd5b611c2285611a1e565b9350611c3060208601611a1e565b925060408501359150606085013567ffffffffffffffff80821115611c5457600080fd5b818701915087601f830112611c6857600080fd5b813581811115611c7a57611c7a611bed565b604051601f8201601f19908116603f01168101908382118183101715611ca257611ca2611bed565b816040528281528a6020848701011115611cbb57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611cf257600080fd5b611cfb83611a1e565b9150611d0960208401611a1e565b90509250929050565b60008060408385031215611d2557600080fd5b82359150611d0960208401611a1e565b600181811c90821680611d4957607f821691505b602082108103611d6957634e487b7160e01b600052602260045260246000fd5b50919050565b60008351611d81818460208801611a55565b835190830190611d95818360208801611a55565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611df86080830184611a81565b9695505050505050565b600060208284031215611e1457600080fd5b8151611205816119eb565b634e487b7160e01b600052601160045260246000fd5b600060018201611e4757611e47611e1f565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611e7357611e73611e4e565b500490565b600082821015611e8a57611e8a611e1f565b500390565b600082611e9e57611e9e611e4e565b500690565b60008219821115611eb657611eb6611e1f565b500190565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220023b227ceddb3cb68c3788713139199ca6a813b20d07e7c649327069e5543f7c64736f6c634300080d0033
Deployed Bytecode
0x6080604052600436106102195760003560e01c8063742a4c9b1161011d578063c2d05a6e116100b0578063daaeec861161007f578063e985e9c511610064578063e985e9c5146105c9578063efbd73f414610612578063f2fde38b1461063257600080fd5b8063daaeec8614610594578063de4b3262146105a957600080fd5b8063c2d05a6e14610533578063c7876ea414610548578063c87b56dd1461055e578063d5abeb011461057e57600080fd5b8063a0712d68116100ec578063a0712d68146104c0578063a22cb465146104d3578063b071401b146104f3578063b88d4fde1461051357600080fd5b8063742a4c9b146104575780638da5cb5b1461047757806394354fd01461049557806395d89b41146104ab57600080fd5b80633ccfd60b116101b057806366112b6b1161017f5780636f8b44b0116101645780636f8b44b01461040257806370a0823114610422578063715018a61461044257600080fd5b806366112b6b146103d257806368428a1b146103e857600080fd5b80633ccfd60b1461035d57806342842e0e1461037257806355f804b3146103925780636352211e146103b257600080fd5b8063095ea7b3116101ec578063095ea7b3146102e857806318160ddd1461030a57806323b872dd146103275780633bc4b0251461034757600080fd5b806301ffc9a71461021e57806306bb99e21461025357806306fdde031461028e578063081812fc146102b0575b600080fd5b34801561022a57600080fd5b5061023e610239366004611a01565b610652565b60405190151581526020015b60405180910390f35b34801561025f57600080fd5b5061028061026e366004611a3a565b600f6020526000908152604090205481565b60405190815260200161024a565b34801561029a57600080fd5b506102a36106ef565b60405161024a9190611aad565b3480156102bc57600080fd5b506102d06102cb366004611ac0565b610781565b6040516001600160a01b03909116815260200161024a565b3480156102f457600080fd5b50610308610303366004611ad9565b6107de565b005b34801561031657600080fd5b506001546000540360001901610280565b34801561033357600080fd5b50610308610342366004611b03565b6108ef565b34801561035357600080fd5b50610280600d5481565b34801561036957600080fd5b506103086108ff565b34801561037e57600080fd5b5061030861038d366004611b03565b61099a565b34801561039e57600080fd5b506103086103ad366004611b3f565b6109b5565b3480156103be57600080fd5b506102d06103cd366004611ac0565b610a1b565b3480156103de57600080fd5b50610280600c5481565b3480156103f457600080fd5b50600e5461023e9060ff1681565b34801561040e57600080fd5b5061030861041d366004611ac0565b610a26565b34801561042e57600080fd5b5061028061043d366004611a3a565b610a85565b34801561044e57600080fd5b50610308610aed565b34801561046357600080fd5b50610308610472366004611ac0565b610b53565b34801561048357600080fd5b506008546001600160a01b03166102d0565b3480156104a157600080fd5b50610280600b5481565b3480156104b757600080fd5b506102a3610bb2565b6103086104ce366004611ac0565b610bc1565b3480156104df57600080fd5b506103086104ee366004611bb1565b610d7e565b3480156104ff57600080fd5b5061030861050e366004611ac0565b610e2c565b34801561051f57600080fd5b5061030861052e366004611c03565b610e8b565b34801561053f57600080fd5b5061023e610ed5565b34801561055457600080fd5b5061028060095481565b34801561056a57600080fd5b506102a3610579366004611ac0565b610ef3565b34801561058a57600080fd5b50610280600a5481565b3480156105a057600080fd5b50610308610f6c565b3480156105b557600080fd5b506103086105c4366004611ac0565b610fda565b3480156105d557600080fd5b5061023e6105e4366004611cdf565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561061e57600080fd5b5061030861062d366004611d12565b611039565b34801561063e57600080fd5b5061030861064d366004611a3a565b61109d565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614806106b557507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b806106e957507f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600280546106fe90611d35565b80601f016020809104026020016040519081016040528092919081815260200182805461072a90611d35565b80156107775780601f1061074c57610100808354040283529160200191610777565b820191906000526020600020905b81548152906001019060200180831161075a57829003601f168201915b5050505050905090565b600061078c8261117c565b6107c2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107e9826111b1565b9050806001600160a01b0316836001600160a01b031603610836576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216146108865761085081336105e4565b610886576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108fa838383611240565b505050565b6008546001600160a01b0316331461095e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610997573d6000803e3d6000fd5b50565b6108fa83838360405180602001604052806000815250610e8b565b6008546001600160a01b03163314610a0f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610955565b6108fa60108383611952565b60006106e9826111b1565b6008546001600160a01b03163314610a805760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610955565b600a55565b60006001600160a01b038216610ac7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b475760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610955565b610b516000611459565b565b6008546001600160a01b03163314610bad5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610955565b600d55565b6060600380546106fe90611d35565b600e54819060ff16610bff576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b333214610c38576040517f72f67c2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a54600154600054038201600019011115610c80576040517fc30436e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b54811115610ca357604051632a9ffab760e21b815260040160405180910390fd5b600954600d546001546000549285029203600019011015610d4f57600c54336000908152600f6020526040902054840111610cf35750336000908152600f60205260408120805484019055610d4f565b600c54336000908152600f60205260409020548401118015610d255750600c54336000908152600f6020526040902054105b15610d4f57336000908152600f602052604090208054600c54600954908290039182019092550290035b803414610d6f57604051632a9ffab760e21b815260040160405180910390fd5b50610d7a33836114b8565b5050565b336001600160a01b03831603610dc0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610e865760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610955565b600b55565b610e96848484611240565b6001600160a01b0383163b15610ecf57610eb284848484611599565b610ecf576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000600d54610eed6001546000546000199190030190565b10905090565b6060610efe8261117c565b610f34576040517fcbdb7b3000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f3c611685565b610f4583611694565b604051602001610f56929190611d6f565b6040516020818303038152906040529050919050565b6008546001600160a01b03163314610fc65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610955565b600e805460ff19811660ff90911615179055565b6008546001600160a01b031633146110345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610955565b600955565b6008546001600160a01b031633146110935760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610955565b610d7a81836117c9565b6008546001600160a01b031633146110f75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610955565b6001600160a01b0381166111735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610955565b61099781611459565b600081600111158015611190575060005482105b80156106e9575050600090815260046020526040902054600160e01b161590565b6000818060011161120e5760005481101561120e5760008181526004602052604081205490600160e01b8216900361120c575b806000036112055750600019016000818152600460205260409020546111e4565b9392505050565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061124b826111b1565b9050836001600160a01b0316816001600160a01b031614611298576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b03861614806112b657506112b685336105e4565b806112d15750336112c684610781565b6001600160a01b0316145b90508061130a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841661134a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000838152600660209081526040808320805473ffffffffffffffffffffffffffffffffffffffff191690556001600160a01b0388811684526005835281842080546000190190558716835280832080546001019055858352600490915281207c02000000000000000000000000000000000000000000000000000000004260a01b87178117909155831690036114115760018301600081815260046020526040812054900361140f57600054811461140f5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000546001600160a01b0383166114e157604051622e076360e81b815260040160405180910390fd5b816000036115025760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061154d5750600055505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906115ce903390899088908890600401611dc6565b6020604051808303816000875af1925050508015611609575060408051601f3d908101601f1916820190925261160691810190611e02565b60015b611667573d808015611637576040519150601f19603f3d011682016040523d82523d6000602084013e61163c565b606091505b50805160000361165f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060601080546106fe90611d35565b6060816000036116d757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561170157806116eb81611e35565b91506116fa9050600a83611e64565b91506116db565b60008167ffffffffffffffff81111561171c5761171c611bed565b6040519080825280601f01601f191660200182016040528015611746576020820181803683370190505b5090505b841561167d5761175b600183611e78565b9150611768600a86611e8f565b611773906030611ea3565b60f81b81838151811061178857611788611ebb565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506117c2600a86611e64565b945061174a565b610d7a8282604051806020016040528060008152506000546001600160a01b03841661180757604051622e076360e81b815260040160405180910390fd5b826000036118285760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156118fd575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118c66000878480600101955087611599565b6118e3576040516368d2bf6b60e11b815260040160405180910390fd5b80821061187b5782600054146118f857600080fd5b611942565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106118fe575b506000908155610ecf9085838684565b82805461195e90611d35565b90600052602060002090601f01602090048101928261198057600085556119c6565b82601f106119995782800160ff198235161785556119c6565b828001600101855582156119c6579182015b828111156119c65782358255916020019190600101906119ab565b506119d29291506119d6565b5090565b5b808211156119d257600081556001016119d7565b6001600160e01b03198116811461099757600080fd5b600060208284031215611a1357600080fd5b8135611205816119eb565b80356001600160a01b0381168114611a3557600080fd5b919050565b600060208284031215611a4c57600080fd5b61120582611a1e565b60005b83811015611a70578181015183820152602001611a58565b83811115610ecf5750506000910152565b60008151808452611a99816020860160208601611a55565b601f01601f19169290920160200192915050565b6020815260006112056020830184611a81565b600060208284031215611ad257600080fd5b5035919050565b60008060408385031215611aec57600080fd5b611af583611a1e565b946020939093013593505050565b600080600060608486031215611b1857600080fd5b611b2184611a1e565b9250611b2f60208501611a1e565b9150604084013590509250925092565b60008060208385031215611b5257600080fd5b823567ffffffffffffffff80821115611b6a57600080fd5b818501915085601f830112611b7e57600080fd5b813581811115611b8d57600080fd5b866020828501011115611b9f57600080fd5b60209290920196919550909350505050565b60008060408385031215611bc457600080fd5b611bcd83611a1e565b915060208301358015158114611be257600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611c1957600080fd5b611c2285611a1e565b9350611c3060208601611a1e565b925060408501359150606085013567ffffffffffffffff80821115611c5457600080fd5b818701915087601f830112611c6857600080fd5b813581811115611c7a57611c7a611bed565b604051601f8201601f19908116603f01168101908382118183101715611ca257611ca2611bed565b816040528281528a6020848701011115611cbb57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611cf257600080fd5b611cfb83611a1e565b9150611d0960208401611a1e565b90509250929050565b60008060408385031215611d2557600080fd5b82359150611d0960208401611a1e565b600181811c90821680611d4957607f821691505b602082108103611d6957634e487b7160e01b600052602260045260246000fd5b50919050565b60008351611d81818460208801611a55565b835190830190611d95818360208801611a55565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611df86080830184611a81565b9695505050505050565b600060208284031215611e1457600080fd5b8151611205816119eb565b634e487b7160e01b600052601160045260246000fd5b600060018201611e4757611e47611e1f565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611e7357611e73611e4e565b500490565b600082821015611e8a57611e8a611e1f565b500390565b600082611e9e57611e9e611e4e565b500690565b60008219821115611eb657611eb6611e1f565b500190565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220023b227ceddb3cb68c3788713139199ca6a813b20d07e7c649327069e5543f7c64736f6c634300080d0033
Deployed Bytecode Sourcemap
44048:3297:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13073:615;;;;;;;;;;-1:-1:-1;13073:615:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;13073:615:0;;;;;;;;44565:46;;;;;;;;;;-1:-1:-1;44565:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;1176:25:1;;;1164:2;1149:18;44565:46:0;1030:177:1;18086:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;20154:204::-;;;;;;;;;;-1:-1:-1;20154:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2312:55:1;;;2294:74;;2282:2;2267:18;20154:204:0;2148:226:1;19614:474:0;;;;;;;;;;-1:-1:-1;19614:474:0;;;;;:::i;:::-;;:::i;:::-;;12127:315;;;;;;;;;;-1:-1:-1;45979:1:0;12393:12;12180:7;12377:13;:28;-1:-1:-1;;12377:46:0;12127:315;;21040:170;;;;;;;;;;-1:-1:-1;21040:170:0;;;;;:::i;:::-;;:::i;44482:35::-;;;;;;;;;;;;;;;;46741:98;;;;;;;;;;;;;:::i;21281:185::-;;;;;;;;;;-1:-1:-1;21281:185:0;;;;;:::i;:::-;;:::i;46978:100::-;;;;;;;;;;-1:-1:-1;46978:100:0;;;;;:::i;:::-;;:::i;17875:144::-;;;;;;;;;;-1:-1:-1;17875:144:0;;;;;:::i;:::-;;:::i;44436:39::-;;;;;;;;;;;;;;;;44526:30;;;;;;;;;;-1:-1:-1;44526:30:0;;;;;;;;46320:96;;;;;;;;;;-1:-1:-1;46320:96:0;;;;;:::i;:::-;;:::i;13752:224::-;;;;;;;;;;-1:-1:-1;13752:224:0;;;;;:::i;:::-;;:::i;43077:103::-;;;;;;;;;;;;;:::i;46647:88::-;;;;;;;;;;-1:-1:-1;46647:88:0;;;;;:::i;:::-;;:::i;42426:87::-;;;;;;;;;;-1:-1:-1;42499:6:0;;-1:-1:-1;;;;;42499:6:0;42426:87;;44393:38;;;;;;;;;;;;;;;;18255:104;;;;;;;;;;;;;:::i;45056:795::-;;;;;;:::i;:::-;;:::i;20430:308::-;;;;;;;;;;-1:-1:-1;20430:308:0;;;;;:::i;:::-;;:::i;46422:130::-;;;;;;;;;;-1:-1:-1;46422:130:0;;;;;:::i;:::-;;:::i;21537:396::-;;;;;;;;;;-1:-1:-1;21537:396:0;;;;;:::i;:::-;;:::i;45992:98::-;;;;;;;;;;;;;:::i;44314:38::-;;;;;;;;;;;;;;;;47084:256;;;;;;;;;;-1:-1:-1;47084:256:0;;;;;:::i;:::-;;:::i;44357:31::-;;;;;;;;;;;;;;;;46560:81;;;;;;;;;;;;;:::i;46229:84::-;;;;;;;;;;-1:-1:-1;46229:84:0;;;;;:::i;:::-;;:::i;20809:164::-;;;;;;;;;;-1:-1:-1;20809:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;20930:25:0;;;20906:4;20930:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;20809:164;46096:127;;;;;;;;;;-1:-1:-1;46096:127:0;;;;;:::i;:::-;;:::i;43335:201::-;;;;;;;;;;-1:-1:-1;43335:201:0;;;;;:::i;:::-;;:::i;13073:615::-;13158:4;13458:25;-1:-1:-1;;;;;;13458:25:0;;;;:102;;-1:-1:-1;13535:25:0;-1:-1:-1;;;;;;13535:25:0;;;13458:102;:179;;;-1:-1:-1;13612:25:0;-1:-1:-1;;;;;;13612:25:0;;;13458:179;13438:199;13073:615;-1:-1:-1;;13073:615:0:o;18086:100::-;18140:13;18173:5;18166:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18086:100;:::o;20154:204::-;20222:7;20247:16;20255:7;20247;:16::i;:::-;20242:64;;20272:34;;;;;;;;;;;;;;20242:64;-1:-1:-1;20326:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;20326:24:0;;20154:204::o;19614:474::-;19687:13;19719:27;19738:7;19719:18;:27::i;:::-;19687:61;;19769:5;-1:-1:-1;;;;;19763:11:0;:2;-1:-1:-1;;;;;19763:11:0;;19759:48;;19783:24;;;;;;;;;;;;;;19759:48;36257:10;-1:-1:-1;;;;;19824:28:0;;;19820:175;;19872:44;19889:5;36257:10;20809:164;:::i;19872:44::-;19867:128;;19944:35;;;;;;;;;;;;;;19867:128;20007:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;20007:29:0;-1:-1:-1;;;;;20007:29:0;;;;;;;;;20052:28;;20007:24;;20052:28;;;;;;;19676:412;19614:474;;:::o;21040:170::-;21174:28;21184:4;21190:2;21194:7;21174:9;:28::i;:::-;21040:170;;;:::o;46741:98::-;42499:6;;-1:-1:-1;;;;;42499:6:0;36257:10;42646:23;42638:68;;;;-1:-1:-1;;;42638:68:0;;6420:2:1;42638:68:0;;;6402:21:1;;;6439:18;;;6432:30;6498:34;6478:18;;;6471:62;6550:18;;42638:68:0;;;;;;;;;42499:6;;46785:48:::1;::::0;-1:-1:-1;;;;;42499:6:0;;;;46811:21:::1;46785:48:::0;::::1;;;::::0;::::1;::::0;;;46811:21;42499:6;46785:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;46741:98::o:0;21281:185::-;21419:39;21436:4;21442:2;21446:7;21419:39;;;;;;;;;;;;:16;:39::i;46978:100::-;42499:6;;-1:-1:-1;;;;;42499:6:0;36257:10;42646:23;42638:68;;;;-1:-1:-1;;;42638:68:0;;6420:2:1;42638:68:0;;;6402:21:1;;;6439:18;;;6432:30;6498:34;6478:18;;;6471:62;6550:18;;42638:68:0;6218:356:1;42638:68:0;47049:23:::1;:13;47065:7:::0;;47049:23:::1;:::i;17875:144::-:0;17939:7;17982:27;18001:7;17982:18;:27::i;46320:96::-;42499:6;;-1:-1:-1;;;;;42499:6:0;36257:10;42646:23;42638:68;;;;-1:-1:-1;;;42638:68:0;;6420:2:1;42638:68:0;;;6402:21:1;;;6439:18;;;6432:30;6498:34;6478:18;;;6471:62;6550:18;;42638:68:0;6218:356:1;42638:68:0;46388:9:::1;:22:::0;46320:96::o;13752:224::-;13816:7;-1:-1:-1;;;;;13840:19:0;;13836:60;;13868:28;;;;;;;;;;;;;;13836:60;-1:-1:-1;;;;;;13914:25:0;;;;;:18;:25;;;;;;9091:13;13914:54;;13752:224::o;43077:103::-;42499:6;;-1:-1:-1;;;;;42499:6:0;36257:10;42646:23;42638:68;;;;-1:-1:-1;;;42638:68:0;;6420:2:1;42638:68:0;;;6402:21:1;;;6439:18;;;6432:30;6498:34;6478:18;;;6471:62;6550:18;;42638:68:0;6218:356:1;42638:68:0;43142:30:::1;43169:1;43142:18;:30::i;:::-;43077:103::o:0;46647:88::-;42499:6;;-1:-1:-1;;;;;42499:6:0;36257:10;42646:23;42638:68;;;;-1:-1:-1;;;42638:68:0;;6420:2:1;42638:68:0;;;6402:21:1;;;6439:18;;;6432:30;6498:34;6478:18;;;6471:62;6550:18;;42638:68:0;6218:356:1;42638:68:0;46709:13:::1;:20:::0;46647:88::o;18255:104::-;18311:13;18344:7;18337:14;;;;;:::i;45056:795::-;44774:10;;45121:9;;44774:10;;44769:38;;44793:14;;;;;;;;;;;;;;44769:38;44818:10;44832:9;44818:23;44814:50;;44850:14;;;;;;;;;;;;;;44814:50;44924:9;;45979:1;12393:12;12180:7;12377:13;:28;44894:27;;-1:-1:-1;;44894:27:0;:39;44890:70;;;44942:18;;;;;;;;;;;;;;44890:70;44987:18;;44973:11;:32;44969:59;;;45014:14;;-1:-1:-1;;;45014:14:0;;;;;;;;;;;44969:59;45174:9:::1;::::0;45224:13:::1;::::0;45979:1;12393:12;12180:7;12377:13;45174:21;;::::1;::::0;12377:28;-1:-1:-1;;12377:46:0;45208:29:::1;45204:546;;;45293:20;::::0;45266:10:::1;45254:23;::::0;;;:11:::1;:23;::::0;;;;;:35;::::1;:59;45250:491;;-1:-1:-1::0;45362:10:0::1;45336:1;45350:23:::0;;;:11:::1;:23;::::0;;;;:36;;;::::1;::::0;;45250:491:::1;;;45446:20;::::0;45420:10:::1;45408:23;::::0;;;:11:::1;:23;::::0;;;;;:35;::::1;:58;:108:::0;::::1;;;-1:-1:-1::0;45496:20:0::1;::::0;45482:10:::1;45470:23;::::0;;;:11:::1;:23;::::0;;;;;:46:::1;45408:108;45404:337;;;45588:10;45531:19;45576:23:::0;;;:11:::1;:23;::::0;;;;;;45553:20:::1;::::0;45628:9:::1;::::0;45553:46;;;::::1;45691:38:::0;;::::1;::::0;;;45628:23:::1;45664:14:::0;::::1;45404:337;45775:5;45762:9;:18;45758:45;;45789:14;;-1:-1:-1::0;;;45789:14:0::1;;;;;;;;;;;45758:45;45139:672;45817:28;45823:10;45835:9;45817:5;:28::i;:::-;45056:795:::0;;:::o;20430:308::-;36257:10;-1:-1:-1;;;;;20529:31:0;;;20525:61;;20569:17;;;;;;;;;;;;;;20525:61;36257:10;20599:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;20599:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;20599:60:0;;;;;;;;;;20675:55;;586:41:1;;;20599:49:0;;36257:10;20675:55;;559:18:1;20675:55:0;;;;;;;20430:308;;:::o;46422:130::-;42499:6;;-1:-1:-1;;;;;42499:6:0;36257:10;42646:23;42638:68;;;;-1:-1:-1;;;42638:68:0;;6420:2:1;42638:68:0;;;6402:21:1;;;6439:18;;;6432:30;6498:34;6478:18;;;6471:62;6550:18;;42638:68:0;6218:356:1;42638:68:0;46506:18:::1;:40:::0;46422:130::o;21537:396::-;21704:28;21714:4;21720:2;21724:7;21704:9;:28::i;:::-;-1:-1:-1;;;;;21747:14:0;;;:19;21743:183;;21786:56;21817:4;21823:2;21827:7;21836:5;21786:30;:56::i;:::-;21781:145;;21870:40;;-1:-1:-1;;;21870:40:0;;;;;;;;;;;21781:145;21537:396;;;;:::o;45992:98::-;46035:4;46071:13;;46055;45979:1;12393:12;12180:7;12377:13;-1:-1:-1;;12377:28:0;;;:46;;12127:315;46055:13;:29;46048:36;;45992:98;:::o;47084:256::-;47183:13;47213:17;47221:8;47213:7;:17::i;:::-;47208:46;;47239:15;;;;;;;;;;;;;;47208:46;47292:10;:8;:10::i;:::-;47304:19;:8;:17;:19::i;:::-;47275:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47261:73;;47084:256;;;:::o;46560:81::-;42499:6;;-1:-1:-1;;;;;42499:6:0;36257:10;42646:23;42638:68;;;;-1:-1:-1;;;42638:68:0;;6420:2:1;42638:68:0;;;6402:21:1;;;6439:18;;;6432:30;6498:34;6478:18;;;6471:62;6550:18;;42638:68:0;6218:356:1;42638:68:0;46625:10:::1;::::0;;-1:-1:-1;;46611:24:0;::::1;46625:10;::::0;;::::1;46624:11;46611:24;::::0;;46560:81::o;46229:84::-;42499:6;;-1:-1:-1;;;;;42499:6:0;36257:10;42646:23;42638:68;;;;-1:-1:-1;;;42638:68:0;;6420:2:1;42638:68:0;;;6402:21:1;;;6439:18;;;6432:30;6498:34;6478:18;;;6471:62;6550:18;;42638:68:0;6218:356:1;42638:68:0;46290:9:::1;:17:::0;46229:84::o;46096:127::-;42499:6;;-1:-1:-1;;;;;42499:6:0;36257:10;42646:23;42638:68;;;;-1:-1:-1;;;42638:68:0;;6420:2:1;42638:68:0;;;6402:21:1;;;6439:18;;;6432:30;6498:34;6478:18;;;6471:62;6550:18;;42638:68:0;6218:356:1;42638:68:0;46184:33:::1;46194:9;46205:11;46184:9;:33::i;43335:201::-:0;42499:6;;-1:-1:-1;;;;;42499:6:0;36257:10;42646:23;42638:68;;;;-1:-1:-1;;;42638:68:0;;6420:2:1;42638:68:0;;;6402:21:1;;;6439:18;;;6432:30;6498:34;6478:18;;;6471:62;6550:18;;42638:68:0;6218:356:1;42638:68:0;-1:-1:-1;;;;;43424:22:0;::::1;43416:73;;;::::0;-1:-1:-1;;;43416:73:0;;7423:2:1;43416:73:0::1;::::0;::::1;7405:21:1::0;7462:2;7442:18;;;7435:30;7501:34;7481:18;;;7474:62;7572:8;7552:18;;;7545:36;7598:19;;43416:73:0::1;7221:402:1::0;43416:73:0::1;43500:28;43519:8;43500:18;:28::i;22188:273::-:0;22245:4;22301:7;45979:1;22282:26;;:66;;;;;22335:13;;22325:7;:23;22282:66;:152;;;;-1:-1:-1;;22386:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;22386:43:0;:48;;22188:273::o;15390:1129::-;15457:7;15492;;45979:1;15541:23;15537:915;;15594:13;;15587:4;:20;15583:869;;;15632:14;15649:23;;;:17;:23;;;;;;;-1:-1:-1;;;15738:23:0;;:28;;15734:699;;16257:113;16264:6;16274:1;16264:11;16257:113;;-1:-1:-1;;;16335:6:0;16317:25;;;;:17;:25;;;;;;16257:113;;;16403:6;15390:1129;-1:-1:-1;;;15390:1129:0:o;15734:699::-;15609:843;15583:869;16480:31;;;;;;;;;;;;;;27427:2515;27542:27;27572;27591:7;27572:18;:27::i;:::-;27542:57;;27657:4;-1:-1:-1;;;;;27616:45:0;27632:19;-1:-1:-1;;;;;27616:45:0;;27612:86;;27670:28;;;;;;;;;;;;;;27612:86;27711:22;36257:10;-1:-1:-1;;;;;27737:27:0;;;;:87;;-1:-1:-1;27781:43:0;27798:4;36257:10;20809:164;:::i;27781:43::-;27737:147;;;-1:-1:-1;36257:10:0;27841:20;27853:7;27841:11;:20::i;:::-;-1:-1:-1;;;;;27841:43:0;;27737:147;27711:174;;27903:17;27898:66;;27929:35;;;;;;;;;;;;;;27898:66;-1:-1:-1;;;;;27979:16:0;;27975:52;;28004:23;;;;;;;;;;;;;;27975:52;28156:24;;;;:15;:24;;;;;;;;28149:31;;-1:-1:-1;;28149:31:0;;;-1:-1:-1;;;;;28548:24:0;;;;;:18;:24;;;;;28546:26;;-1:-1:-1;;28546:26:0;;;28617:22;;;;;;;28615:24;;-1:-1:-1;28615:24:0;;;28910:26;;;:17;:26;;;;;10143:8;28998:15;9745:3;28998:41;28956:84;;:128;;28910:174;;;29204:46;;:51;;29200:626;;29308:1;29298:11;;29276:19;29431:30;;;:17;:30;;;;;;:35;;29427:384;;29569:13;;29554:11;:28;29550:242;;29716:30;;;;:17;:30;;;;;:52;;;29550:242;29257:569;29200:626;29873:7;29869:2;-1:-1:-1;;;;;29854:27:0;29863:4;-1:-1:-1;;;;;29854:27:0;;;;;;;;;;;27531:2411;;27427:2515;;;:::o;43696:191::-;43789:6;;;-1:-1:-1;;;;;43806:17:0;;;-1:-1:-1;;43806:17:0;;;;;;;43839:40;;43789:6;;;43806:17;43789:6;;43839:40;;43770:16;;43839:40;43759:128;43696:191;:::o;25517:1656::-;25582:20;25605:13;-1:-1:-1;;;;;25633:16:0;;25629:48;;25658:19;;-1:-1:-1;;;25658:19:0;;;;;;;;;;;25629:48;25692:8;25704:1;25692:13;25688:44;;25714:18;;-1:-1:-1;;;25714:18:0;;;;;;;;;;;25688:44;-1:-1:-1;;;;;26281:22:0;;;;;;:18;:22;;;;9228:2;26281:22;;;:70;;26319:31;26307:44;;26281:70;;;26594:31;;;:17;:31;;;;;26687:15;9745:3;26687:41;26645:84;;-1:-1:-1;26765:13:0;;10008:3;26750:56;26645:162;26594:213;;:31;26888:23;;;26928:111;26955:40;;26980:14;;;;;-1:-1:-1;;;;;26955:40:0;;;26972:1;;26955:40;;26972:1;;26955:40;27034:3;27019:12;:18;26928:111;;-1:-1:-1;27055:13:0;:28;21040:170;;;:::o;33639:716::-;33823:88;;-1:-1:-1;;;33823:88:0;;33802:4;;-1:-1:-1;;;;;33823:45:0;;;;;:88;;36257:10;;33890:4;;33896:7;;33905:5;;33823:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33823:88:0;;;;;;;;-1:-1:-1;;33823:88:0;;;;;;;;;;;;:::i;:::-;;;33819:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34106:6;:13;34123:1;34106:18;34102:235;;34152:40;;-1:-1:-1;;;34152:40:0;;;;;;;;;;;34102:235;34295:6;34289:13;34280:6;34276:2;34272:15;34265:38;33819:529;-1:-1:-1;;;;;;33982:64:0;-1:-1:-1;;;33982:64:0;;-1:-1:-1;33819:529:0;33639:716;;;;;;:::o;46864:108::-;46924:13;46953;46946:20;;;;;:::i;38712:723::-;38768:13;38989:5;38998:1;38989:10;38985:53;;-1:-1:-1;;39016:10:0;;;;;;;;;;;;;;;;;;38712:723::o;38985:53::-;39063:5;39048:12;39104:78;39111:9;;39104:78;;39137:8;;;;:::i;:::-;;-1:-1:-1;39160:10:0;;-1:-1:-1;39168:2:0;39160:10;;:::i;:::-;;;39104:78;;;39192:19;39224:6;39214:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39214:17:0;;39192:39;;39242:154;39249:10;;39242:154;;39276:11;39286:1;39276:11;;:::i;:::-;;-1:-1:-1;39345:10:0;39353:2;39345:5;:10;:::i;:::-;39332:24;;:2;:24;:::i;:::-;39319:39;;39302:6;39309;39302:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;39373:11:0;39382:2;39373:11;;:::i;:::-;;;39242:154;;22545:104;22614:27;22624:2;22628:8;22614:27;;;;;;;;;;;;23145:20;23168:13;-1:-1:-1;;;;;23196:16:0;;23192:48;;23221:19;;-1:-1:-1;;;23221:19:0;;;;;;;;;;;23192:48;23255:8;23267:1;23255:13;23251:44;;23277:18;;-1:-1:-1;;;23277:18:0;;;;;;;;;;;23251:44;-1:-1:-1;;;;;23844:22:0;;;;;;:18;:22;;;;9228:2;23844:22;;;:70;;23882:31;23870:44;;23844:70;;;24157:31;;;:17;:31;;;;;24250:15;9745:3;24250:41;24208:84;;-1:-1:-1;24328:13:0;;10008:3;24313:56;24208:162;24157:213;;:31;;24451:23;;;;24495:14;:19;24491:635;;24535:313;24566:38;;24591:12;;-1:-1:-1;;;;;24566:38:0;;;24583:1;;24566:38;;24583:1;;24566:38;24632:69;24671:1;24675:2;24679:14;;;;;;24695:5;24632:30;:69::i;:::-;24627:174;;24737:40;;-1:-1:-1;;;24737:40:0;;;;;;;;;;;24627:174;24843:3;24828:12;:18;24535:313;;24929:12;24912:13;;:29;24908:43;;24943:8;;;24908:43;24491:635;;;24992:119;25023:40;;25048:14;;;;;-1:-1:-1;;;;;25023:40:0;;;25040:1;;25023:40;;25040:1;;25023:40;25106:3;25091:12;:18;24992:119;;24491:635;-1:-1:-1;25140:13:0;:28;;;25190:60;;25223:2;25227:12;25241:8;25190:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:1;-1:-1:-1;;;;;;92:5:1;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:196::-;706:20;;-1:-1:-1;;;;;755:54:1;;745:65;;735:93;;824:1;821;814:12;735:93;638:196;;;:::o;839:186::-;898:6;951:2;939:9;930:7;926:23;922:32;919:52;;;967:1;964;957:12;919:52;990:29;1009:9;990:29;:::i;1212:258::-;1284:1;1294:113;1308:6;1305:1;1302:13;1294:113;;;1384:11;;;1378:18;1365:11;;;1358:39;1330:2;1323:10;1294:113;;;1425:6;1422:1;1419:13;1416:48;;;-1:-1:-1;;1460:1:1;1442:16;;1435:27;1212:258::o;1475:::-;1517:3;1555:5;1549:12;1582:6;1577:3;1570:19;1598:63;1654:6;1647:4;1642:3;1638:14;1631:4;1624:5;1620:16;1598:63;:::i;:::-;1715:2;1694:15;-1:-1:-1;;1690:29:1;1681:39;;;;1722:4;1677:50;;1475:258;-1:-1:-1;;1475:258:1:o;1738:220::-;1887:2;1876:9;1869:21;1850:4;1907:45;1948:2;1937:9;1933:18;1925:6;1907:45;:::i;1963:180::-;2022:6;2075:2;2063:9;2054:7;2050:23;2046:32;2043:52;;;2091:1;2088;2081:12;2043:52;-1:-1:-1;2114:23:1;;1963:180;-1:-1:-1;1963:180:1:o;2379:254::-;2447:6;2455;2508:2;2496:9;2487:7;2483:23;2479:32;2476:52;;;2524:1;2521;2514:12;2476:52;2547:29;2566:9;2547:29;:::i;:::-;2537:39;2623:2;2608:18;;;;2595:32;;-1:-1:-1;;;2379:254:1:o;2638:328::-;2715:6;2723;2731;2784:2;2772:9;2763:7;2759:23;2755:32;2752:52;;;2800:1;2797;2790:12;2752:52;2823:29;2842:9;2823:29;:::i;:::-;2813:39;;2871:38;2905:2;2894:9;2890:18;2871:38;:::i;:::-;2861:48;;2956:2;2945:9;2941:18;2928:32;2918:42;;2638:328;;;;;:::o;2971:592::-;3042:6;3050;3103:2;3091:9;3082:7;3078:23;3074:32;3071:52;;;3119:1;3116;3109:12;3071:52;3159:9;3146:23;3188:18;3229:2;3221:6;3218:14;3215:34;;;3245:1;3242;3235:12;3215:34;3283:6;3272:9;3268:22;3258:32;;3328:7;3321:4;3317:2;3313:13;3309:27;3299:55;;3350:1;3347;3340:12;3299:55;3390:2;3377:16;3416:2;3408:6;3405:14;3402:34;;;3432:1;3429;3422:12;3402:34;3477:7;3472:2;3463:6;3459:2;3455:15;3451:24;3448:37;3445:57;;;3498:1;3495;3488:12;3445:57;3529:2;3521:11;;;;;3551:6;;-1:-1:-1;2971:592:1;;-1:-1:-1;;;;2971:592:1:o;3568:347::-;3633:6;3641;3694:2;3682:9;3673:7;3669:23;3665:32;3662:52;;;3710:1;3707;3700:12;3662:52;3733:29;3752:9;3733:29;:::i;:::-;3723:39;;3812:2;3801:9;3797:18;3784:32;3859:5;3852:13;3845:21;3838:5;3835:32;3825:60;;3881:1;3878;3871:12;3825:60;3904:5;3894:15;;;3568:347;;;;;:::o;3920:184::-;-1:-1:-1;;;3969:1:1;3962:88;4069:4;4066:1;4059:15;4093:4;4090:1;4083:15;4109:1138;4204:6;4212;4220;4228;4281:3;4269:9;4260:7;4256:23;4252:33;4249:53;;;4298:1;4295;4288:12;4249:53;4321:29;4340:9;4321:29;:::i;:::-;4311:39;;4369:38;4403:2;4392:9;4388:18;4369:38;:::i;:::-;4359:48;;4454:2;4443:9;4439:18;4426:32;4416:42;;4509:2;4498:9;4494:18;4481:32;4532:18;4573:2;4565:6;4562:14;4559:34;;;4589:1;4586;4579:12;4559:34;4627:6;4616:9;4612:22;4602:32;;4672:7;4665:4;4661:2;4657:13;4653:27;4643:55;;4694:1;4691;4684:12;4643:55;4730:2;4717:16;4752:2;4748;4745:10;4742:36;;;4758:18;;:::i;:::-;4833:2;4827:9;4801:2;4887:13;;-1:-1:-1;;4883:22:1;;;4907:2;4879:31;4875:40;4863:53;;;4931:18;;;4951:22;;;4928:46;4925:72;;;4977:18;;:::i;:::-;5017:10;5013:2;5006:22;5052:2;5044:6;5037:18;5092:7;5087:2;5082;5078;5074:11;5070:20;5067:33;5064:53;;;5113:1;5110;5103:12;5064:53;5169:2;5164;5160;5156:11;5151:2;5143:6;5139:15;5126:46;5214:1;5209:2;5204;5196:6;5192:15;5188:24;5181:35;5235:6;5225:16;;;;;;;4109:1138;;;;;;;:::o;5252:260::-;5320:6;5328;5381:2;5369:9;5360:7;5356:23;5352:32;5349:52;;;5397:1;5394;5387:12;5349:52;5420:29;5439:9;5420:29;:::i;:::-;5410:39;;5468:38;5502:2;5491:9;5487:18;5468:38;:::i;:::-;5458:48;;5252:260;;;;;:::o;5517:254::-;5585:6;5593;5646:2;5634:9;5625:7;5621:23;5617:32;5614:52;;;5662:1;5659;5652:12;5614:52;5698:9;5685:23;5675:33;;5727:38;5761:2;5750:9;5746:18;5727:38;:::i;5776:437::-;5855:1;5851:12;;;;5898;;;5919:61;;5973:4;5965:6;5961:17;5951:27;;5919:61;6026:2;6018:6;6015:14;5995:18;5992:38;5989:218;;-1:-1:-1;;;6060:1:1;6053:88;6164:4;6161:1;6154:15;6192:4;6189:1;6182:15;5989:218;;5776:437;;;:::o;6579:637::-;6859:3;6897:6;6891:13;6913:53;6959:6;6954:3;6947:4;6939:6;6935:17;6913:53;:::i;:::-;7029:13;;6988:16;;;;7051:57;7029:13;6988:16;7085:4;7073:17;;7051:57;:::i;:::-;7173:7;7130:20;;7159:22;;;7208:1;7197:13;;6579:637;-1:-1:-1;;;;6579:637:1:o;7628:512::-;7822:4;-1:-1:-1;;;;;7932:2:1;7924:6;7920:15;7909:9;7902:34;7984:2;7976:6;7972:15;7967:2;7956:9;7952:18;7945:43;;8024:6;8019:2;8008:9;8004:18;7997:34;8067:3;8062:2;8051:9;8047:18;8040:31;8088:46;8129:3;8118:9;8114:19;8106:6;8088:46;:::i;:::-;8080:54;7628:512;-1:-1:-1;;;;;;7628:512:1:o;8145:249::-;8214:6;8267:2;8255:9;8246:7;8242:23;8238:32;8235:52;;;8283:1;8280;8273:12;8235:52;8315:9;8309:16;8334:30;8358:5;8334:30;:::i;8399:184::-;-1:-1:-1;;;8448:1:1;8441:88;8548:4;8545:1;8538:15;8572:4;8569:1;8562:15;8588:135;8627:3;8648:17;;;8645:43;;8668:18;;:::i;:::-;-1:-1:-1;8715:1:1;8704:13;;8588:135::o;8728:184::-;-1:-1:-1;;;8777:1:1;8770:88;8877:4;8874:1;8867:15;8901:4;8898:1;8891:15;8917:120;8957:1;8983;8973:35;;8988:18;;:::i;:::-;-1:-1:-1;9022:9:1;;8917:120::o;9042:125::-;9082:4;9110:1;9107;9104:8;9101:34;;;9115:18;;:::i;:::-;-1:-1:-1;9152:9:1;;9042:125::o;9172:112::-;9204:1;9230;9220:35;;9235:18;;:::i;:::-;-1:-1:-1;9269:9:1;;9172:112::o;9289:128::-;9329:3;9360:1;9356:6;9353:1;9350:13;9347:39;;;9366:18;;:::i;:::-;-1:-1:-1;9402:9:1;;9289:128::o;9422:184::-;-1:-1:-1;;;9471:1:1;9464:88;9571:4;9568:1;9561:15;9595:4;9592:1;9585:15
Swarm Source
ipfs://023b227ceddb3cb68c3788713139199ca6a813b20d07e7c649327069e5543f7c
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.