ERC-721
Overview
Max Total Supply
768 DTPP
Holders
708
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 DTPPLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DToolsPremiumPass
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "./ERC721A.sol"; import "./ERC721ABurnable.sol"; import "./Ownable.sol"; contract DToolsPremiumPass is ERC721A, ERC721ABurnable, Ownable { uint256 public mintPrice = 40000000000000000; uint256 public renewPrice = 40000000000000000; uint256 public maxSupply = 512; string public metadataURI = "https://api.dtools.org/premiumpass/"; address public contractReceiver; event RenewEvent(address indexed payer, uint256 indexed tokenId); constructor() ERC721A("DToolsPremiumPass", "DTPP") { contractReceiver = msg.sender; } // metadata uri function _baseURI() internal view override returns (string memory) { return metadataURI; } function setBaseURI(string calldata _uri) external onlyOwner { metadataURI = _uri; } // mint/renew price function setMintPrice(uint256 _price) external onlyOwner { mintPrice = _price; } function setRenewPrice(uint256 _price) external onlyOwner { renewPrice = _price; } // receiver function setContractReceiver(address _receiver) external onlyOwner { contractReceiver = _receiver; } // max supply function setMaxSupply(uint256 _supply) external onlyOwner { maxSupply = _supply; } // pass management function mint() external payable { require(totalSupply() < maxSupply, "sold out"); require(msg.value >= mintPrice, "insufficient value"); _mint(msg.sender, 1); } function renew(uint256 tokenId) external payable { require(msg.value >= renewPrice, "insufficient value"); emit RenewEvent(msg.sender, tokenId); } function renewByOwner(uint256[] calldata tokenIds) external onlyOwner { uint256 len = tokenIds.length; for (uint32 i = 0; i < len; ++i) { emit RenewEvent(msg.sender, tokenIds[i]); } } function mintByOwner(uint256 quantity) external onlyOwner { _mint(msg.sender, quantity); } function airdropByOwner( address[] calldata _addresses, uint8[] calldata _counts ) external onlyOwner { for (uint32 i = 0; i < _addresses.length; ++i) { _mint(_addresses[i], _counts[i]); } } function extract() external onlyOwner { payable(contractReceiver).transfer(address(this).balance); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import "./IERC721A.sol"; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The 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) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import "./IERC721ABurnable.sol"; import "./ERC721A.sol"; /** * @title ERC721A Burnable Token * @dev ERC721A Token that can be irreversibly burned (destroyed). */ abstract contract ERC721ABurnable is ERC721A, IERC721ABurnable { /** * @dev Burns `tokenId`. See {ERC721A-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual override { _burn(tokenId, true); } }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import "./IERC721A.sol"; /** * @dev Interface of an ERC721ABurnable compliant contract. */ interface IERC721ABurnable is IERC721A { /** * @dev Burns `tokenId`. See {ERC721A-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"payer","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"RenewEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint8[]","name":"_counts","type":"uint8[]"}],"name":"airdropByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"extract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"renew","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"renewByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renewPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"}],"name":"setContractReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setRenewPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
668e1bc9bf0400006009819055600a55610200600b5560e0604052602360808181529062001e1360a03980516200003f91600c9160209091019062000135565b503480156200004d57600080fd5b50604080518082018252601181527044546f6f6c735072656d69756d5061737360781b6020808301918252835180850190945260048452630445450560e41b908401528151919291620000a39160029162000135565b508051620000b990600390602084019062000135565b50506000805550620000cb33620000e3565b600d80546001600160a01b0319163317905562000217565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014390620001db565b90600052602060002090601f016020900481019282620001675760008555620001b2565b82601f106200018257805160ff1916838001178555620001b2565b82800160010185558215620001b2579182015b82811115620001b257825182559160200191906001019062000195565b50620001c0929150620001c4565b5090565b5b80821115620001c05760008155600101620001c5565b600181811c90821680620001f057607f821691505b6020821081036200021157634e487b7160e01b600052602260045260246000fd5b50919050565b611bec80620002276000396000f3fe6080604052600436106101f95760003560e01c8063615e1be61161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461056b578063e985e9c514610581578063f2fde38b146105ca578063f4a0a528146105ea578063f55f15d91461060a57600080fd5b8063a22cb465146104eb578063b65d8d101461050b578063b88d4fde1461052b578063c87b56dd1461054b57600080fd5b806370a08231116100dc57806370a0823114610483578063715018a6146104a35780638da5cb5b146104b857806395d89b41146104d657600080fd5b8063615e1be61461040d5780636352211e1461042d5780636817c76c1461044d5780636f8b44b01461046357600080fd5b806323b872dd1161019057806342842e0e1161015f57806342842e0e1461038457806342966c68146103a45780635592d61b146103c457806355f804b3146103da5780635baa7509146103fa57600080fd5b806323b872dd146103045780632a944b191461032457806332fbbea31461034457806337e06c531461036457600080fd5b8063095ea7b3116101cc578063095ea7b3146102a25780631249c58b146102c457806318160ddd146102cc5780631e83cdab146102ef57600080fd5b806301ffc9a7146101fe57806303ee438c1461023357806306fdde0314610255578063081812fc1461026a575b600080fd5b34801561020a57600080fd5b5061021e610219366004611649565b61062a565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061024861067c565b60405161022a91906116be565b34801561026157600080fd5b5061024861070a565b34801561027657600080fd5b5061028a6102853660046116d1565b61079c565b6040516001600160a01b03909116815260200161022a565b3480156102ae57600080fd5b506102c26102bd366004611706565b6107e0565b005b6102c26108b2565b3480156102d857600080fd5b50600154600054035b60405190815260200161022a565b3480156102fb57600080fd5b506102c261094d565b34801561031057600080fd5b506102c261031f366004611730565b6109b3565b34801561033057600080fd5b506102c261033f3660046116d1565b6109c3565b34801561035057600080fd5b506102c261035f3660046116d1565b6109f7565b34801561037057600080fd5b506102c261037f3660046117b8565b610a26565b34801561039057600080fd5b506102c261039f366004611730565b610acd565b3480156103b057600080fd5b506102c26103bf3660046116d1565b610ae8565b3480156103d057600080fd5b506102e1600a5481565b3480156103e657600080fd5b506102c26103f53660046117fa565b610af3565b6102c26104083660046116d1565b610b29565b34801561041957600080fd5b506102c261042836600461186c565b610ba0565b34801561043957600080fd5b5061028a6104483660046116d1565b610bec565b34801561045957600080fd5b506102e160095481565b34801561046f57600080fd5b506102c261047e3660046116d1565b610bf7565b34801561048f57600080fd5b506102e161049e36600461186c565b610c26565b3480156104af57600080fd5b506102c2610c75565b3480156104c457600080fd5b506008546001600160a01b031661028a565b3480156104e257600080fd5b50610248610ca9565b3480156104f757600080fd5b506102c2610506366004611887565b610cb8565b34801561051757600080fd5b50600d5461028a906001600160a01b031681565b34801561053757600080fd5b506102c26105463660046118d9565b610d4d565b34801561055757600080fd5b506102486105663660046116d1565b610d91565b34801561057757600080fd5b506102e1600b5481565b34801561058d57600080fd5b5061021e61059c3660046119b5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105d657600080fd5b506102c26105e536600461186c565b610e15565b3480156105f657600080fd5b506102c26106053660046116d1565b610ead565b34801561061657600080fd5b506102c26106253660046119e8565b610edc565b60006301ffc9a760e01b6001600160e01b03198316148061065b57506380ac58cd60e01b6001600160e01b03198316145b806106765750635b5e139f60e01b6001600160e01b03198316145b92915050565b600c805461068990611a54565b80601f01602080910402602001604051908101604052809291908181526020018280546106b590611a54565b80156107025780601f106106d757610100808354040283529160200191610702565b820191906000526020600020905b8154815290600101906020018083116106e557829003601f168201915b505050505081565b60606002805461071990611a54565b80601f016020809104026020016040519081016040528092919081815260200182805461074590611a54565b80156107925780601f1061076757610100808354040283529160200191610792565b820191906000526020600020905b81548152906001019060200180831161077557829003601f168201915b5050505050905090565b60006107a782610f93565b6107c4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107eb82610fba565b9050806001600160a01b0316836001600160a01b03160361081f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461085657610839813361059c565b610856576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600b5460015460005403106108f95760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b60448201526064015b60405180910390fd5b6009543410156109405760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742076616c756560701b60448201526064016108f0565b61094b336001611021565b565b6008546001600160a01b031633146109775760405162461bcd60e51b81526004016108f090611a8e565b600d546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156109b0573d6000803e3d6000fd5b50565b6109be838383611102565b505050565b6008546001600160a01b031633146109ed5760405162461bcd60e51b81526004016108f090611a8e565b6109b03382611021565b6008546001600160a01b03163314610a215760405162461bcd60e51b81526004016108f090611a8e565b600a55565b6008546001600160a01b03163314610a505760405162461bcd60e51b81526004016108f090611a8e565b8060005b818163ffffffff161015610ac75783838263ffffffff16818110610a7a57610a7a611ac3565b90506020020135336001600160a01b03167fd88ef856207baf12067e0f634b97db2e39a7b597736ccfbe78a7b390f3f15bfb60405160405180910390a3610ac081611ad9565b9050610a54565b50505050565b6109be83838360405180602001604052806000815250610d4d565b6109b08160016112a7565b6008546001600160a01b03163314610b1d5760405162461bcd60e51b81526004016108f090611a8e565b6109be600c838361159a565b600a54341015610b705760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742076616c756560701b60448201526064016108f0565b604051819033907fd88ef856207baf12067e0f634b97db2e39a7b597736ccfbe78a7b390f3f15bfb90600090a350565b6008546001600160a01b03163314610bca5760405162461bcd60e51b81526004016108f090611a8e565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600061067682610fba565b6008546001600160a01b03163314610c215760405162461bcd60e51b81526004016108f090611a8e565b600b55565b60006001600160a01b038216610c4f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c9f5760405162461bcd60e51b81526004016108f090611a8e565b61094b60006113ff565b60606003805461071990611a54565b336001600160a01b03831603610ce15760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d58848484611102565b6001600160a01b0383163b15610ac757610d7484848484611451565b610ac7576040516368d2bf6b60e11b815260040160405180910390fd5b6060610d9c82610f93565b610db957604051630a14c4b560e41b815260040160405180910390fd5b6000610dc361153c565b90508051600003610de35760405180602001604052806000815250610e0e565b80610ded8461154b565b604051602001610dfe929190611b0a565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610e3f5760405162461bcd60e51b81526004016108f090611a8e565b6001600160a01b038116610ea45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f0565b6109b0816113ff565b6008546001600160a01b03163314610ed75760405162461bcd60e51b81526004016108f090611a8e565b600955565b6008546001600160a01b03163314610f065760405162461bcd60e51b81526004016108f090611a8e565b60005b63ffffffff8116841115610f8c57610f7c85858363ffffffff16818110610f3257610f32611ac3565b9050602002016020810190610f47919061186c565b84848463ffffffff16818110610f5f57610f5f611ac3565b9050602002016020810190610f749190611b39565b60ff16611021565b610f8581611ad9565b9050610f09565b5050505050565b6000805482108015610676575050600090815260046020526040902054600160e01b161590565b6000816000548110156110085760008181526004602052604081205490600160e01b82169003611006575b80600003610e0e575060001901600081815260046020526040902054610fe5565b505b604051636f96cda160e11b815260040160405180910390fd5b6000546001600160a01b03831661104a57604051622e076360e81b815260040160405180910390fd5b8160000361106b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106110b65750600055505050565b600061110d82610fba565b9050836001600160a01b0316816001600160a01b0316146111405760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061115e575061115e853361059c565b8061117957503361116e8461079c565b6001600160a01b0316145b90508061119957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111c057604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b87178117909155831690036112615760018301600081815260046020526040812054900361125f57600054811461125f5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f8c565b60006112b283610fba565b9050808215611316576000336001600160a01b03831614806112d957506112d9823361059c565b806112f45750336112e98661079c565b6001600160a01b0316145b90508061131457604051632ce44b5f60e11b815260040160405180910390fd5b505b600084815260066020908152604080832080546001600160a01b03191690556001600160a01b03841683526005825280832080546fffffffffffffffffffffffffffffffff01905586835260049091528120600360e01b4260a01b8417179055600160e11b831690036113b9576001840160008181526004602052604081205490036113b75760005481146113b75760008181526004602052604090208390555b505b60405184906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4505060018054810190555050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611486903390899088908890600401611b5c565b6020604051808303816000875af19250505080156114c1575060408051601f3d908101601f191682019092526114be91810190611b99565b60015b61151f573d8080156114ef576040519150601f19603f3d011682016040523d82523d6000602084013e6114f4565b606091505b508051600003611517576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600c805461071990611a54565b604080516080810191829052607f0190826030600a8206018353600a90045b801561158857600183039250600a81066030018353600a900461156a565b50819003601f19909101908152919050565b8280546115a690611a54565b90600052602060002090601f0160209004810192826115c8576000855561160e565b82601f106115e15782800160ff1982351617855561160e565b8280016001018555821561160e579182015b8281111561160e5782358255916020019190600101906115f3565b5061161a92915061161e565b5090565b5b8082111561161a576000815560010161161f565b6001600160e01b0319811681146109b057600080fd5b60006020828403121561165b57600080fd5b8135610e0e81611633565b60005b83811015611681578181015183820152602001611669565b83811115610ac75750506000910152565b600081518084526116aa816020860160208601611666565b601f01601f19169290920160200192915050565b602081526000610e0e6020830184611692565b6000602082840312156116e357600080fd5b5035919050565b80356001600160a01b038116811461170157600080fd5b919050565b6000806040838503121561171957600080fd5b611722836116ea565b946020939093013593505050565b60008060006060848603121561174557600080fd5b61174e846116ea565b925061175c602085016116ea565b9150604084013590509250925092565b60008083601f84011261177e57600080fd5b50813567ffffffffffffffff81111561179657600080fd5b6020830191508360208260051b85010111156117b157600080fd5b9250929050565b600080602083850312156117cb57600080fd5b823567ffffffffffffffff8111156117e257600080fd5b6117ee8582860161176c565b90969095509350505050565b6000806020838503121561180d57600080fd5b823567ffffffffffffffff8082111561182557600080fd5b818501915085601f83011261183957600080fd5b81358181111561184857600080fd5b86602082850101111561185a57600080fd5b60209290920196919550909350505050565b60006020828403121561187e57600080fd5b610e0e826116ea565b6000806040838503121561189a57600080fd5b6118a3836116ea565b9150602083013580151581146118b857600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156118ef57600080fd5b6118f8856116ea565b9350611906602086016116ea565b925060408501359150606085013567ffffffffffffffff8082111561192a57600080fd5b818701915087601f83011261193e57600080fd5b813581811115611950576119506118c3565b604051601f8201601f19908116603f01168101908382118183101715611978576119786118c3565b816040528281528a602084870101111561199157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156119c857600080fd5b6119d1836116ea565b91506119df602084016116ea565b90509250929050565b600080600080604085870312156119fe57600080fd5b843567ffffffffffffffff80821115611a1657600080fd5b611a228883890161176c565b90965094506020870135915080821115611a3b57600080fd5b50611a488782880161176c565b95989497509550505050565b600181811c90821680611a6857607f821691505b602082108103611a8857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600063ffffffff808316818103611b0057634e487b7160e01b600052601160045260246000fd5b6001019392505050565b60008351611b1c818460208801611666565b835190830190611b30818360208801611666565b01949350505050565b600060208284031215611b4b57600080fd5b813560ff81168114610e0e57600080fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b8f90830184611692565b9695505050505050565b600060208284031215611bab57600080fd5b8151610e0e8161163356fea2646970667358221220bafca75b9d370e72e1e75373e43b8645bc077d6209d19eb4d0eacefee2f8686f64736f6c634300080e003368747470733a2f2f6170692e64746f6f6c732e6f72672f7072656d69756d706173732f
Deployed Bytecode
0x6080604052600436106101f95760003560e01c8063615e1be61161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461056b578063e985e9c514610581578063f2fde38b146105ca578063f4a0a528146105ea578063f55f15d91461060a57600080fd5b8063a22cb465146104eb578063b65d8d101461050b578063b88d4fde1461052b578063c87b56dd1461054b57600080fd5b806370a08231116100dc57806370a0823114610483578063715018a6146104a35780638da5cb5b146104b857806395d89b41146104d657600080fd5b8063615e1be61461040d5780636352211e1461042d5780636817c76c1461044d5780636f8b44b01461046357600080fd5b806323b872dd1161019057806342842e0e1161015f57806342842e0e1461038457806342966c68146103a45780635592d61b146103c457806355f804b3146103da5780635baa7509146103fa57600080fd5b806323b872dd146103045780632a944b191461032457806332fbbea31461034457806337e06c531461036457600080fd5b8063095ea7b3116101cc578063095ea7b3146102a25780631249c58b146102c457806318160ddd146102cc5780631e83cdab146102ef57600080fd5b806301ffc9a7146101fe57806303ee438c1461023357806306fdde0314610255578063081812fc1461026a575b600080fd5b34801561020a57600080fd5b5061021e610219366004611649565b61062a565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061024861067c565b60405161022a91906116be565b34801561026157600080fd5b5061024861070a565b34801561027657600080fd5b5061028a6102853660046116d1565b61079c565b6040516001600160a01b03909116815260200161022a565b3480156102ae57600080fd5b506102c26102bd366004611706565b6107e0565b005b6102c26108b2565b3480156102d857600080fd5b50600154600054035b60405190815260200161022a565b3480156102fb57600080fd5b506102c261094d565b34801561031057600080fd5b506102c261031f366004611730565b6109b3565b34801561033057600080fd5b506102c261033f3660046116d1565b6109c3565b34801561035057600080fd5b506102c261035f3660046116d1565b6109f7565b34801561037057600080fd5b506102c261037f3660046117b8565b610a26565b34801561039057600080fd5b506102c261039f366004611730565b610acd565b3480156103b057600080fd5b506102c26103bf3660046116d1565b610ae8565b3480156103d057600080fd5b506102e1600a5481565b3480156103e657600080fd5b506102c26103f53660046117fa565b610af3565b6102c26104083660046116d1565b610b29565b34801561041957600080fd5b506102c261042836600461186c565b610ba0565b34801561043957600080fd5b5061028a6104483660046116d1565b610bec565b34801561045957600080fd5b506102e160095481565b34801561046f57600080fd5b506102c261047e3660046116d1565b610bf7565b34801561048f57600080fd5b506102e161049e36600461186c565b610c26565b3480156104af57600080fd5b506102c2610c75565b3480156104c457600080fd5b506008546001600160a01b031661028a565b3480156104e257600080fd5b50610248610ca9565b3480156104f757600080fd5b506102c2610506366004611887565b610cb8565b34801561051757600080fd5b50600d5461028a906001600160a01b031681565b34801561053757600080fd5b506102c26105463660046118d9565b610d4d565b34801561055757600080fd5b506102486105663660046116d1565b610d91565b34801561057757600080fd5b506102e1600b5481565b34801561058d57600080fd5b5061021e61059c3660046119b5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105d657600080fd5b506102c26105e536600461186c565b610e15565b3480156105f657600080fd5b506102c26106053660046116d1565b610ead565b34801561061657600080fd5b506102c26106253660046119e8565b610edc565b60006301ffc9a760e01b6001600160e01b03198316148061065b57506380ac58cd60e01b6001600160e01b03198316145b806106765750635b5e139f60e01b6001600160e01b03198316145b92915050565b600c805461068990611a54565b80601f01602080910402602001604051908101604052809291908181526020018280546106b590611a54565b80156107025780601f106106d757610100808354040283529160200191610702565b820191906000526020600020905b8154815290600101906020018083116106e557829003601f168201915b505050505081565b60606002805461071990611a54565b80601f016020809104026020016040519081016040528092919081815260200182805461074590611a54565b80156107925780601f1061076757610100808354040283529160200191610792565b820191906000526020600020905b81548152906001019060200180831161077557829003601f168201915b5050505050905090565b60006107a782610f93565b6107c4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107eb82610fba565b9050806001600160a01b0316836001600160a01b03160361081f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461085657610839813361059c565b610856576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600b5460015460005403106108f95760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b60448201526064015b60405180910390fd5b6009543410156109405760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742076616c756560701b60448201526064016108f0565b61094b336001611021565b565b6008546001600160a01b031633146109775760405162461bcd60e51b81526004016108f090611a8e565b600d546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156109b0573d6000803e3d6000fd5b50565b6109be838383611102565b505050565b6008546001600160a01b031633146109ed5760405162461bcd60e51b81526004016108f090611a8e565b6109b03382611021565b6008546001600160a01b03163314610a215760405162461bcd60e51b81526004016108f090611a8e565b600a55565b6008546001600160a01b03163314610a505760405162461bcd60e51b81526004016108f090611a8e565b8060005b818163ffffffff161015610ac75783838263ffffffff16818110610a7a57610a7a611ac3565b90506020020135336001600160a01b03167fd88ef856207baf12067e0f634b97db2e39a7b597736ccfbe78a7b390f3f15bfb60405160405180910390a3610ac081611ad9565b9050610a54565b50505050565b6109be83838360405180602001604052806000815250610d4d565b6109b08160016112a7565b6008546001600160a01b03163314610b1d5760405162461bcd60e51b81526004016108f090611a8e565b6109be600c838361159a565b600a54341015610b705760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742076616c756560701b60448201526064016108f0565b604051819033907fd88ef856207baf12067e0f634b97db2e39a7b597736ccfbe78a7b390f3f15bfb90600090a350565b6008546001600160a01b03163314610bca5760405162461bcd60e51b81526004016108f090611a8e565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600061067682610fba565b6008546001600160a01b03163314610c215760405162461bcd60e51b81526004016108f090611a8e565b600b55565b60006001600160a01b038216610c4f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c9f5760405162461bcd60e51b81526004016108f090611a8e565b61094b60006113ff565b60606003805461071990611a54565b336001600160a01b03831603610ce15760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d58848484611102565b6001600160a01b0383163b15610ac757610d7484848484611451565b610ac7576040516368d2bf6b60e11b815260040160405180910390fd5b6060610d9c82610f93565b610db957604051630a14c4b560e41b815260040160405180910390fd5b6000610dc361153c565b90508051600003610de35760405180602001604052806000815250610e0e565b80610ded8461154b565b604051602001610dfe929190611b0a565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610e3f5760405162461bcd60e51b81526004016108f090611a8e565b6001600160a01b038116610ea45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f0565b6109b0816113ff565b6008546001600160a01b03163314610ed75760405162461bcd60e51b81526004016108f090611a8e565b600955565b6008546001600160a01b03163314610f065760405162461bcd60e51b81526004016108f090611a8e565b60005b63ffffffff8116841115610f8c57610f7c85858363ffffffff16818110610f3257610f32611ac3565b9050602002016020810190610f47919061186c565b84848463ffffffff16818110610f5f57610f5f611ac3565b9050602002016020810190610f749190611b39565b60ff16611021565b610f8581611ad9565b9050610f09565b5050505050565b6000805482108015610676575050600090815260046020526040902054600160e01b161590565b6000816000548110156110085760008181526004602052604081205490600160e01b82169003611006575b80600003610e0e575060001901600081815260046020526040902054610fe5565b505b604051636f96cda160e11b815260040160405180910390fd5b6000546001600160a01b03831661104a57604051622e076360e81b815260040160405180910390fd5b8160000361106b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106110b65750600055505050565b600061110d82610fba565b9050836001600160a01b0316816001600160a01b0316146111405760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061115e575061115e853361059c565b8061117957503361116e8461079c565b6001600160a01b0316145b90508061119957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111c057604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b87178117909155831690036112615760018301600081815260046020526040812054900361125f57600054811461125f5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f8c565b60006112b283610fba565b9050808215611316576000336001600160a01b03831614806112d957506112d9823361059c565b806112f45750336112e98661079c565b6001600160a01b0316145b90508061131457604051632ce44b5f60e11b815260040160405180910390fd5b505b600084815260066020908152604080832080546001600160a01b03191690556001600160a01b03841683526005825280832080546fffffffffffffffffffffffffffffffff01905586835260049091528120600360e01b4260a01b8417179055600160e11b831690036113b9576001840160008181526004602052604081205490036113b75760005481146113b75760008181526004602052604090208390555b505b60405184906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4505060018054810190555050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611486903390899088908890600401611b5c565b6020604051808303816000875af19250505080156114c1575060408051601f3d908101601f191682019092526114be91810190611b99565b60015b61151f573d8080156114ef576040519150601f19603f3d011682016040523d82523d6000602084013e6114f4565b606091505b508051600003611517576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600c805461071990611a54565b604080516080810191829052607f0190826030600a8206018353600a90045b801561158857600183039250600a81066030018353600a900461156a565b50819003601f19909101908152919050565b8280546115a690611a54565b90600052602060002090601f0160209004810192826115c8576000855561160e565b82601f106115e15782800160ff1982351617855561160e565b8280016001018555821561160e579182015b8281111561160e5782358255916020019190600101906115f3565b5061161a92915061161e565b5090565b5b8082111561161a576000815560010161161f565b6001600160e01b0319811681146109b057600080fd5b60006020828403121561165b57600080fd5b8135610e0e81611633565b60005b83811015611681578181015183820152602001611669565b83811115610ac75750506000910152565b600081518084526116aa816020860160208601611666565b601f01601f19169290920160200192915050565b602081526000610e0e6020830184611692565b6000602082840312156116e357600080fd5b5035919050565b80356001600160a01b038116811461170157600080fd5b919050565b6000806040838503121561171957600080fd5b611722836116ea565b946020939093013593505050565b60008060006060848603121561174557600080fd5b61174e846116ea565b925061175c602085016116ea565b9150604084013590509250925092565b60008083601f84011261177e57600080fd5b50813567ffffffffffffffff81111561179657600080fd5b6020830191508360208260051b85010111156117b157600080fd5b9250929050565b600080602083850312156117cb57600080fd5b823567ffffffffffffffff8111156117e257600080fd5b6117ee8582860161176c565b90969095509350505050565b6000806020838503121561180d57600080fd5b823567ffffffffffffffff8082111561182557600080fd5b818501915085601f83011261183957600080fd5b81358181111561184857600080fd5b86602082850101111561185a57600080fd5b60209290920196919550909350505050565b60006020828403121561187e57600080fd5b610e0e826116ea565b6000806040838503121561189a57600080fd5b6118a3836116ea565b9150602083013580151581146118b857600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156118ef57600080fd5b6118f8856116ea565b9350611906602086016116ea565b925060408501359150606085013567ffffffffffffffff8082111561192a57600080fd5b818701915087601f83011261193e57600080fd5b813581811115611950576119506118c3565b604051601f8201601f19908116603f01168101908382118183101715611978576119786118c3565b816040528281528a602084870101111561199157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156119c857600080fd5b6119d1836116ea565b91506119df602084016116ea565b90509250929050565b600080600080604085870312156119fe57600080fd5b843567ffffffffffffffff80821115611a1657600080fd5b611a228883890161176c565b90965094506020870135915080821115611a3b57600080fd5b50611a488782880161176c565b95989497509550505050565b600181811c90821680611a6857607f821691505b602082108103611a8857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600063ffffffff808316818103611b0057634e487b7160e01b600052601160045260246000fd5b6001019392505050565b60008351611b1c818460208801611666565b835190830190611b30818360208801611666565b01949350505050565b600060208284031215611b4b57600080fd5b813560ff81168114610e0e57600080fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b8f90830184611692565b9695505050505050565b600060208284031215611bab57600080fd5b8151610e0e8161163356fea2646970667358221220bafca75b9d370e72e1e75373e43b8645bc077d6209d19eb4d0eacefee2f8686f64736f6c634300080e0033
Deployed Bytecode Sourcemap
138:2293:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4874:651:2;;;;;;;;;;-1:-1:-1;4874:651:2;;;;;:::i;:::-;;:::i;:::-;;;565:14:7;;558:22;540:41;;528:2;513:18;4874:651:2;;;;;;;;348:65:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;9978:98:2:-;;;;;;;;;;;;;:::i;12095:236::-;;;;;;;;;;-1:-1:-1;12095:236:2;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:7;;;1674:51;;1662:2;1647:18;12095:236:2;1528:203:7;11571:463:2;;;;;;;;;;-1:-1:-1;11571:463:2;;;;;:::i;:::-;;:::i;:::-;;1364:190:1;;;:::i;3957:309:2:-;;;;;;;;;;-1:-1:-1;4219:12:2;;4010:7;4203:13;:28;3957:309;;;2319:25:7;;;2307:2;2292:18;3957:309:2;2173:177:7;2317:112:1;;;;;;;;;;;;;:::i;13063:164:2:-;;;;;;;;;;-1:-1:-1;13063:164:2;;;;;:::i;:::-;;:::i;1961:102:1:-;;;;;;;;;;-1:-1:-1;1961:102:1;;;;;:::i;:::-;;:::i;986:94::-;;;;;;;;;;-1:-1:-1;986:94:1;;;;;:::i;:::-;;:::i;1732:223::-;;;;;;;;;;-1:-1:-1;1732:223:1;;;;;:::i;:::-;;:::i;13293:179:2:-;;;;;;;;;;-1:-1:-1;13293:179:2;;;;;:::i;:::-;;:::i;512:92:3:-;;;;;;;;;;-1:-1:-1;512:92:3;;;;;:::i;:::-;;:::i;259:45:1:-;;;;;;;;;;;;;;;;761:96;;;;;;;;;;-1:-1:-1;761:96:1;;;;;:::i;:::-;;:::i;1560:166::-;;;;;;:::i;:::-;;:::i;1103:112::-;;;;;;;;;;-1:-1:-1;1103:112:1;;;;;:::i;:::-;;:::i;9774:142:2:-;;;;;;;;;;-1:-1:-1;9774:142:2;;;;;:::i;:::-;;:::i;208:44:1:-;;;;;;;;;;;;;;;;1240:94;;;;;;;;;;-1:-1:-1;1240:94:1;;;;;:::i;:::-;;:::i;5584:221:2:-;;;;;;;;;;-1:-1:-1;5584:221:2;;;;;:::i;:::-;;:::i;1683:101:6:-;;;;;;;;;;;;;:::i;1051:85::-;;;;;;;;;;-1:-1:-1;1123:6:6;;-1:-1:-1;;;;;1123:6:6;1051:85;;10140:102:2;;;;;;;;;;;;;:::i;12398:331::-;;;;;;;;;;-1:-1:-1;12398:331:2;;;;;:::i;:::-;;:::i;420:31:1:-;;;;;;;;;;-1:-1:-1;420:31:1;;;;-1:-1:-1;;;;;420:31:1;;;13538:385:2;;;;;;;;;;-1:-1:-1;13538:385:2;;;;;:::i;:::-;;:::i;10308:401::-;;;;;;;;;;-1:-1:-1;10308:401:2;;;;;:::i;:::-;;:::i;311:30:1:-;;;;;;;;;;;;;;;;12795:206:2;;;;;;;;;;-1:-1:-1;12795:206:2;;;;;:::i;:::-;-1:-1:-1;;;;;12959:25:2;;;12932:4;12959:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;12795:206;1933:232:6;;;;;;;;;;-1:-1:-1;1933:232:6;;;;;:::i;:::-;;:::i;888:92:1:-;;;;;;;;;;-1:-1:-1;888:92:1;;;;;:::i;:::-;;:::i;2069:242::-;;;;;;;;;;-1:-1:-1;2069:242:1;;;;;:::i;:::-;;:::i;4874:651:2:-;4999:4;-1:-1:-1;;;;;;;;;5298:25:2;;;;:101;;-1:-1:-1;;;;;;;;;;5374:25:2;;;5298:101;:177;;;-1:-1:-1;;;;;;;;;;5450:25:2;;;5298:177;5279:196;4874:651;-1:-1:-1;;4874:651:2:o;348:65:1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9978:98:2:-;10032:13;10064:5;10057:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9978:98;:::o;12095:236::-;12195:7;12223:16;12231:7;12223;:16::i;:::-;12218:64;;12248:34;;-1:-1:-1;;;12248:34:2;;;;;;;;;;;12218:64;-1:-1:-1;12300:24:2;;;;:15;:24;;;;;;-1:-1:-1;;;;;12300:24:2;;12095:236::o;11571:463::-;11643:13;11675:27;11694:7;11675:18;:27::i;:::-;11643:61;;11724:5;-1:-1:-1;;;;;11718:11:2;:2;-1:-1:-1;;;;;11718:11:2;;11714:48;;11738:24;;-1:-1:-1;;;11738:24:2;;;;;;;;;;;11714:48;28247:10;-1:-1:-1;;;;;11777:28:2;;;11773:172;;11824:44;11841:5;28247:10;12795:206;:::i;11824:44::-;11819:126;;11895:35;;-1:-1:-1;;;11895:35:2;;;;;;;;;;;11819:126;11955:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;11955:29:2;-1:-1:-1;;;;;11955:29:2;;;;;;;;;11999:28;;11955:24;;11999:28;;;;;;;11633:401;11571:463;;:::o;1364:190:1:-;1431:9;;4219:12:2;;4010:7;4203:13;:28;1415:25:1;1407:46;;;;-1:-1:-1;;;1407:46:1;;7545:2:7;1407:46:1;;;7527:21:7;7584:1;7564:18;;;7557:29;-1:-1:-1;;;7602:18:7;;;7595:38;7650:18;;1407:46:1;;;;;;;;;1484:9;;1471;:22;;1463:53;;;;-1:-1:-1;;;1463:53:1;;7881:2:7;1463:53:1;;;7863:21:7;7920:2;7900:18;;;7893:30;-1:-1:-1;;;7939:18:7;;;7932:48;7997:18;;1463:53:1;7679:342:7;1463:53:1;1527:20;1533:10;1545:1;1527:5;:20::i;:::-;1364:190::o;2317:112::-;1123:6:6;;-1:-1:-1;;;;;1123:6:6;28247:10:2;1263:23:6;1255:68;;;;-1:-1:-1;;;1255:68:6;;;;;;;:::i;:::-;2373:16:1::1;::::0;2365:57:::1;::::0;-1:-1:-1;;;;;2373:16:1;;::::1;::::0;2400:21:::1;2365:57:::0;::::1;;;::::0;2373:16:::1;2365:57:::0;2373:16;2365:57;2400:21;2373:16;2365:57;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;2317:112::o:0;13063:164:2:-;13192:28;13202:4;13208:2;13212:7;13192:9;:28::i;:::-;13063:164;;;:::o;1961:102:1:-;1123:6:6;;-1:-1:-1;;;;;1123:6:6;28247:10:2;1263:23:6;1255:68;;;;-1:-1:-1;;;1255:68:6;;;;;;;:::i;:::-;2029:27:1::1;2035:10;2047:8;2029:5;:27::i;986:94::-:0;1123:6:6;;-1:-1:-1;;;;;1123:6:6;28247:10:2;1263:23:6;1255:68;;;;-1:-1:-1;;;1255:68:6;;;;;;;:::i;:::-;1054:10:1::1;:19:::0;986:94::o;1732:223::-;1123:6:6;;-1:-1:-1;;;;;1123:6:6;28247:10:2;1263:23:6;1255:68;;;;-1:-1:-1;;;1255:68:6;;;;;;;:::i;:::-;1826:8:1;1812:11:::1;1851:98;1874:3;1870:1;:7;;;1851:98;;;1926:8;;1935:1;1926:11;;;;;;;;;:::i;:::-;;;;;;;1914:10;-1:-1:-1::0;;;;;1903:35:1::1;;;;;;;;;;;1879:3;::::0;::::1;:::i;:::-;;;1851:98;;;;1802:153;1732:223:::0;;:::o;13293:179:2:-;13426:39;13443:4;13449:2;13453:7;13426:39;;;;;;;;;;;;:16;:39::i;512:92:3:-;577:20;583:7;592:4;577:5;:20::i;761:96:1:-;1123:6:6;;-1:-1:-1;;;;;1123:6:6;28247:10:2;1263:23:6;1255:68;;;;-1:-1:-1;;;1255:68:6;;;;;;;:::i;:::-;832:18:1::1;:11;846:4:::0;;832:18:::1;:::i;1560:166::-:0;1640:10;;1627:9;:23;;1619:54;;;;-1:-1:-1;;;1619:54:1;;7881:2:7;1619:54:1;;;7863:21:7;7920:2;7900:18;;;7893:30;-1:-1:-1;;;7939:18:7;;;7932:48;7997:18;;1619:54:1;7679:342:7;1619:54:1;1688:31;;1711:7;;1699:10;;1688:31;;;;;1560:166;:::o;1103:112::-;1123:6:6;;-1:-1:-1;;;;;1123:6:6;28247:10:2;1263:23:6;1255:68;;;;-1:-1:-1;;;1255:68:6;;;;;;;:::i;:::-;1180:16:1::1;:28:::0;;-1:-1:-1;;;;;;1180:28:1::1;-1:-1:-1::0;;;;;1180:28:1;;;::::1;::::0;;;::::1;::::0;;1103:112::o;9774:142:2:-;9838:7;9880:27;9899:7;9880:18;:27::i;1240:94:1:-;1123:6:6;;-1:-1:-1;;;;;1123:6:6;28247:10:2;1263:23:6;1255:68;;;;-1:-1:-1;;;1255:68:6;;;;;;;:::i;:::-;1308:9:1::1;:19:::0;1240:94::o;5584:221:2:-;5648:7;-1:-1:-1;;;;;5671:19:2;;5667:60;;5699:28;;-1:-1:-1;;;5699:28:2;;;;;;;;;;;5667:60;-1:-1:-1;;;;;;5744:25:2;;;;;:18;:25;;;;;;1017:13;5744:54;;5584:221::o;1683:101:6:-;1123:6;;-1:-1:-1;;;;;1123:6:6;28247:10:2;1263:23:6;1255:68;;;;-1:-1:-1;;;1255:68:6;;;;;;;:::i;:::-;1747:30:::1;1774:1;1747:18;:30::i;10140:102:2:-:0;10196:13;10228:7;10221:14;;;;;:::i;12398:331::-;28247:10;-1:-1:-1;;;;;12524:31:2;;;12520:61;;12564:17;;-1:-1:-1;;;12564:17:2;;;;;;;;;;;12520:61;28247:10;12592:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;12592:49:2;;;;;;;;;;;;:60;;-1:-1:-1;;12592:60:2;;;;;;;;;;12667:55;;540:41:7;;;12592:49:2;;28247:10;12667:55;;513:18:7;12667:55:2;;;;;;;12398:331;;:::o;13538:385::-;13699:28;13709:4;13715:2;13719:7;13699:9;:28::i;:::-;-1:-1:-1;;;;;13741:14:2;;;:19;13737:180;;13779:56;13810:4;13816:2;13820:7;13829:5;13779:30;:56::i;:::-;13774:143;;13862:40;;-1:-1:-1;;;13862:40:2;;;;;;;;;;;10308:401;10421:13;10455:16;10463:7;10455;:16::i;:::-;10450:59;;10480:29;;-1:-1:-1;;;10480:29:2;;;;;;;;;;;10450:59;10520:21;10544:10;:8;:10::i;:::-;10520:34;;10589:7;10583:21;10608:1;10583:26;:119;;;;;;;;;;;;;;;;;10652:7;10661:18;10671:7;10661:9;:18::i;:::-;10635:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10583:119;10564:138;10308:401;-1:-1:-1;;;10308:401:2:o;1933:232:6:-;1123:6;;-1:-1:-1;;;;;1123:6:6;28247:10:2;1263:23:6;1255:68;;;;-1:-1:-1;;;1255:68:6;;;;;;;:::i;:::-;-1:-1:-1;;;;;2034:22:6;::::1;2013:107;;;::::0;-1:-1:-1;;;2013:107:6;;9499:2:7;2013:107:6::1;::::0;::::1;9481:21:7::0;9538:2;9518:18;;;9511:30;9577:34;9557:18;;;9550:62;-1:-1:-1;;;9628:18:7;;;9621:36;9674:19;;2013:107:6::1;9297:402:7::0;2013:107:6::1;2130:28;2149:8;2130:18;:28::i;888:92:1:-:0;1123:6:6;;-1:-1:-1;;;;;1123:6:6;28247:10:2;1263:23:6;1255:68;;;;-1:-1:-1;;;1255:68:6;;;;;;;:::i;:::-;955:9:1::1;:18:::0;888:92::o;2069:242::-;1123:6:6;;-1:-1:-1;;;;;1123:6:6;28247:10:2;1263:23:6;1255:68;;;;-1:-1:-1;;;1255:68:6;;;;;;;:::i;:::-;2206:8:1::1;2201:104;2220:21;::::0;::::1;::::0;-1:-1:-1;2201:104:1::1;;;2262:32;2268:10;;2279:1;2268:13;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;2283:7;;2291:1;2283:10;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;2262:32;;:5;:32::i;:::-;2243:3;::::0;::::1;:::i;:::-;;;2201:104;;;;2069:242:::0;;;;:::o;14169:268:2:-;14226:4;14313:13;;14303:7;:23;14261:150;;;;-1:-1:-1;;14363:26:2;;;;:17;:26;;;;;;-1:-1:-1;;;14363:43:2;:48;;14169:268::o;7239:1133::-;7330:7;7368;7466:13;;7459:4;:20;7455:853;;;7503:14;7520:23;;;:17;:23;;;;;;;-1:-1:-1;;;7607:23:2;;:28;;7603:687;;8118:111;8125:6;8135:1;8125:11;8118:111;;-1:-1:-1;;;8195:6:2;8177:25;;;;:17;:25;;;;;;8118:111;;7603:687;7481:827;7455:853;8334:31;;-1:-1:-1;;;8334:31:2;;;;;;;;;;;17625:1650;17689:20;17712:13;-1:-1:-1;;;;;17739:16:2;;17735:48;;17764:19;;-1:-1:-1;;;17764:19:2;;;;;;;;;;;17735:48;17797:8;17809:1;17797:13;17793:44;;17819:18;;-1:-1:-1;;;17819:18:2;;;;;;;;;;;17793:44;-1:-1:-1;;;;;18373:22:2;;;;;;:18;:22;;;;1151:2;18373:22;;;:102;;18443:31;18415:60;;18373:102;;;18711:31;;;:17;:31;;;;;18802:15;1656:3;18802:41;18761:83;;-1:-1:-1;18879:13:2;;1909:3;18864:56;18761:160;18711:210;;:31;18999:23;;;19037:109;19063:40;;19088:14;;;;;-1:-1:-1;;;;;19063:40:2;;;19080:1;;19063:40;;19080:1;;19063:40;19141:3;19126:12;:18;19037:109;;-1:-1:-1;19160:13:2;:28;13063:164;;;:::o;19517:2472::-;19627:27;19657;19676:7;19657:18;:27::i;:::-;19627:57;;19740:4;-1:-1:-1;;;;;19699:45:2;19715:19;-1:-1:-1;;;;;19699:45:2;;19695:98;;19765:28;;-1:-1:-1;;;19765:28:2;;;;;;;;;;;19695:98;19804:22;28247:10;-1:-1:-1;;;;;19830:27:2;;;;:86;;-1:-1:-1;19873:43:2;19890:4;28247:10;12795:206;:::i;19873:43::-;19830:145;;;-1:-1:-1;28247:10:2;19932:20;19944:7;19932:11;:20::i;:::-;-1:-1:-1;;;;;19932:43:2;;19830:145;19804:172;;19992:17;19987:66;;20018:35;;-1:-1:-1;;;20018:35:2;;;;;;;;;;;19987:66;-1:-1:-1;;;;;20067:16:2;;20063:52;;20092:23;;-1:-1:-1;;;20092:23:2;;;;;;;;;;;20063:52;20239:24;;;;:15;:24;;;;;;;;20232:31;;-1:-1:-1;;;;;;20232:31:2;;;-1:-1:-1;;;;;20624:24:2;;;;;:18;:24;;;;;20622:26;;-1:-1:-1;;20622:26:2;;;20692:22;;;;;;;20690:24;;-1:-1:-1;20690:24:2;;;20978:26;;;:17;:26;;;;;-1:-1:-1;;;21064:15:2;1656:3;21064:41;21023:83;;:126;;20978:171;;;21266:46;;:51;;21262:616;;21369:1;21359:11;;21337:19;21490:30;;;:17;:30;;;;;;:35;;21486:378;;21626:13;;21611:11;:28;21607:239;;21771:30;;;;:17;:30;;;;;:52;;;21607:239;21319:559;21262:616;21922:7;21918:2;-1:-1:-1;;;;;21903:27:2;21912:4;-1:-1:-1;;;;;21903:27:2;;;;;;;;;;;21940:42;1732:223:1;22366:2746:2;22445:27;22475;22494:7;22475:18;:27::i;:::-;22445:57;-1:-1:-1;22445:57:2;22576:305;;;;22609:22;28247:10;-1:-1:-1;;;;;22635:27:2;;;;:90;;-1:-1:-1;22682:43:2;22699:4;28247:10;12795:206;:::i;22682:43::-;22635:153;;;-1:-1:-1;28247:10:2;22745:20;22757:7;22745:11;:20::i;:::-;-1:-1:-1;;;;;22745:43:2;;22635:153;22609:180;;22809:17;22804:66;;22835:35;;-1:-1:-1;;;22835:35:2;;;;;;;;;;;22804:66;22595:286;22576:305;23012:24;;;;:15;:24;;;;;;;;23005:31;;-1:-1:-1;;;;;;23005:31:2;;;-1:-1:-1;;;;;23613:24:2;;;;:18;:24;;;;;:59;;23641:31;23613:59;;;23903:26;;;:17;:26;;;;;-1:-1:-1;;;23991:15:2;1656:3;23991:41;23948:85;;:161;23903:206;;-1:-1:-1;;;24226:46:2;;:51;;24222:616;;24329:1;24319:11;;24297:19;24450:30;;;:17;:30;;;;;;:35;;24446:378;;24586:13;;24571:11;:28;24567:239;;24731:30;;;;:17;:30;;;;;:52;;;24567:239;24279:559;24222:616;24863:35;;24890:7;;24886:1;;-1:-1:-1;;;;;24863:35:2;;;;;24886:1;;24863:35;-1:-1:-1;;25081:12:2;:14;;;;;;-1:-1:-1;;22366:2746:2:o;2319:187:6:-;2411:6;;;-1:-1:-1;;;;;2427:17:6;;;-1:-1:-1;;;;;;2427:17:6;;;;;;;2459:40;;2411:6;;;2427:17;2411:6;;2459:40;;2392:16;;2459:40;2382:124;2319:187;:::o;25593:805:2:-;25783:166;;-1:-1:-1;;;25783:166:2;;25751:4;;-1:-1:-1;;;;;25783:45:2;;;;;:166;;28247:10;;25883:4;;25905:7;;25930:5;;25783:166;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25783:166:2;;;;;;;;-1:-1:-1;;25783:166:2;;;;;;;;;;;;:::i;:::-;;;25767:625;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26157:6;:13;26174:1;26157:18;26153:229;;26202:40;;-1:-1:-1;;;26202:40:2;;;;;;;;;;;26153:229;26342:6;26336:13;26327:6;26323:2;26319:15;26312:38;25767:625;-1:-1:-1;;;;;;26019:80:2;-1:-1:-1;;;26019:80:2;;-1:-1:-1;25593:805:2;;;;;;:::o;653:102:1:-;705:13;737:11;730:18;;;;;:::i;28365:1948:2:-;28856:4;28850:11;;28863:3;28846:21;;28939:17;;;;29622:11;;;29503:5;29752:2;29766;29756:13;;29748:22;29622:11;29735:36;29806:2;29796:13;;29397:682;29824:4;29397:682;;;30010:1;30005:3;30001:11;29994:18;;30060:2;30054:4;30050:13;30046:2;30042:22;30037:3;30029:36;29917:2;29907:13;;29397:682;;;-1:-1:-1;30107:13:2;;;-1:-1:-1;;30220:12:2;;;30278:19;;;30220:12;28365:1948;-1:-1:-1;28365:1948:2:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:7;-1:-1:-1;;;;;;88:32:7;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:7;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:7;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:7:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:7;;1343:180;-1:-1:-1;1343:180:7:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:7;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:7:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:367::-;2751:8;2761:6;2815:3;2808:4;2800:6;2796:17;2792:27;2782:55;;2833:1;2830;2823:12;2782:55;-1:-1:-1;2856:20:7;;2899:18;2888:30;;2885:50;;;2931:1;2928;2921:12;2885:50;2968:4;2960:6;2956:17;2944:29;;3028:3;3021:4;3011:6;3008:1;3004:14;2996:6;2992:27;2988:38;2985:47;2982:67;;;3045:1;3042;3035:12;2982:67;2688:367;;;;;:::o;3060:437::-;3146:6;3154;3207:2;3195:9;3186:7;3182:23;3178:32;3175:52;;;3223:1;3220;3213:12;3175:52;3263:9;3250:23;3296:18;3288:6;3285:30;3282:50;;;3328:1;3325;3318:12;3282:50;3367:70;3429:7;3420:6;3409:9;3405:22;3367:70;:::i;:::-;3456:8;;3341:96;;-1:-1:-1;3060:437:7;-1:-1:-1;;;;3060:437:7:o;3502:592::-;3573:6;3581;3634:2;3622:9;3613:7;3609:23;3605:32;3602:52;;;3650:1;3647;3640:12;3602:52;3690:9;3677:23;3719:18;3760:2;3752:6;3749:14;3746:34;;;3776:1;3773;3766:12;3746:34;3814:6;3803:9;3799:22;3789:32;;3859:7;3852:4;3848:2;3844:13;3840:27;3830:55;;3881:1;3878;3871:12;3830:55;3921:2;3908:16;3947:2;3939:6;3936:14;3933:34;;;3963:1;3960;3953:12;3933:34;4008:7;4003:2;3994:6;3990:2;3986:15;3982:24;3979:37;3976:57;;;4029:1;4026;4019:12;3976:57;4060:2;4052:11;;;;;4082:6;;-1:-1:-1;3502:592:7;;-1:-1:-1;;;;3502:592:7:o;4099:186::-;4158:6;4211:2;4199:9;4190:7;4186:23;4182:32;4179:52;;;4227:1;4224;4217:12;4179:52;4250:29;4269:9;4250:29;:::i;4290:347::-;4355:6;4363;4416:2;4404:9;4395:7;4391:23;4387:32;4384:52;;;4432:1;4429;4422:12;4384:52;4455:29;4474:9;4455:29;:::i;:::-;4445:39;;4534:2;4523:9;4519:18;4506:32;4581:5;4574:13;4567:21;4560:5;4557:32;4547:60;;4603:1;4600;4593:12;4547:60;4626:5;4616:15;;;4290:347;;;;;:::o;4642:127::-;4703:10;4698:3;4694:20;4691:1;4684:31;4734:4;4731:1;4724:15;4758:4;4755:1;4748:15;4774:1138;4869:6;4877;4885;4893;4946:3;4934:9;4925:7;4921:23;4917:33;4914:53;;;4963:1;4960;4953:12;4914:53;4986:29;5005:9;4986:29;:::i;:::-;4976:39;;5034:38;5068:2;5057:9;5053:18;5034:38;:::i;:::-;5024:48;;5119:2;5108:9;5104:18;5091:32;5081:42;;5174:2;5163:9;5159:18;5146:32;5197:18;5238:2;5230:6;5227:14;5224:34;;;5254:1;5251;5244:12;5224:34;5292:6;5281:9;5277:22;5267:32;;5337:7;5330:4;5326:2;5322:13;5318:27;5308:55;;5359:1;5356;5349:12;5308:55;5395:2;5382:16;5417:2;5413;5410:10;5407:36;;;5423:18;;:::i;:::-;5498:2;5492:9;5466:2;5552:13;;-1:-1:-1;;5548:22:7;;;5572:2;5544:31;5540:40;5528:53;;;5596:18;;;5616:22;;;5593:46;5590:72;;;5642:18;;:::i;:::-;5682:10;5678:2;5671:22;5717:2;5709:6;5702:18;5757:7;5752:2;5747;5743;5739:11;5735:20;5732:33;5729:53;;;5778:1;5775;5768:12;5729:53;5834:2;5829;5825;5821:11;5816:2;5808:6;5804:15;5791:46;5879:1;5874:2;5869;5861:6;5857:15;5853:24;5846:35;5900:6;5890:16;;;;;;;4774:1138;;;;;;;:::o;5917:260::-;5985:6;5993;6046:2;6034:9;6025:7;6021:23;6017:32;6014:52;;;6062:1;6059;6052:12;6014:52;6085:29;6104:9;6085:29;:::i;:::-;6075:39;;6133:38;6167:2;6156:9;6152:18;6133:38;:::i;:::-;6123:48;;5917:260;;;;;:::o;6182:771::-;6302:6;6310;6318;6326;6379:2;6367:9;6358:7;6354:23;6350:32;6347:52;;;6395:1;6392;6385:12;6347:52;6435:9;6422:23;6464:18;6505:2;6497:6;6494:14;6491:34;;;6521:1;6518;6511:12;6491:34;6560:70;6622:7;6613:6;6602:9;6598:22;6560:70;:::i;:::-;6649:8;;-1:-1:-1;6534:96:7;-1:-1:-1;6737:2:7;6722:18;;6709:32;;-1:-1:-1;6753:16:7;;;6750:36;;;6782:1;6779;6772:12;6750:36;;6821:72;6885:7;6874:8;6863:9;6859:24;6821:72;:::i;:::-;6182:771;;;;-1:-1:-1;6912:8:7;-1:-1:-1;;;;6182:771:7:o;6958:380::-;7037:1;7033:12;;;;7080;;;7101:61;;7155:4;7147:6;7143:17;7133:27;;7101:61;7208:2;7200:6;7197:14;7177:18;7174:38;7171:161;;7254:10;7249:3;7245:20;7242:1;7235:31;7289:4;7286:1;7279:15;7317:4;7314:1;7307:15;7171:161;;6958:380;;;:::o;8026:356::-;8228:2;8210:21;;;8247:18;;;8240:30;8306:34;8301:2;8286:18;;8279:62;8373:2;8358:18;;8026:356::o;8387:127::-;8448:10;8443:3;8439:20;8436:1;8429:31;8479:4;8476:1;8469:15;8503:4;8500:1;8493:15;8519:298;8557:3;8585:10;8630:2;8623:5;8619:14;8657:2;8648:7;8645:15;8642:138;;8702:10;8697:3;8693:20;8690:1;8683:31;8737:4;8734:1;8727:15;8765:4;8762:1;8755:15;8642:138;8809:1;8796:15;;8519:298;-1:-1:-1;;;8519:298:7:o;8822:470::-;9001:3;9039:6;9033:13;9055:53;9101:6;9096:3;9089:4;9081:6;9077:17;9055:53;:::i;:::-;9171:13;;9130:16;;;;9193:57;9171:13;9130:16;9227:4;9215:17;;9193:57;:::i;:::-;9266:20;;8822:470;-1:-1:-1;;;;8822:470:7:o;9704:269::-;9761:6;9814:2;9802:9;9793:7;9789:23;9785:32;9782:52;;;9830:1;9827;9820:12;9782:52;9869:9;9856:23;9919:4;9912:5;9908:16;9901:5;9898:27;9888:55;;9939:1;9936;9929:12;9978:489;-1:-1:-1;;;;;10247:15:7;;;10229:34;;10299:15;;10294:2;10279:18;;10272:43;10346:2;10331:18;;10324:34;;;10394:3;10389:2;10374:18;;10367:31;;;10172:4;;10415:46;;10441:19;;10433:6;10415:46;:::i;:::-;10407:54;9978:489;-1:-1:-1;;;;;;9978:489:7:o;10472:249::-;10541:6;10594:2;10582:9;10573:7;10569:23;10565:32;10562:52;;;10610:1;10607;10600:12;10562:52;10642:9;10636:16;10661:30;10685:5;10661:30;:::i
Swarm Source
ipfs://bafca75b9d370e72e1e75373e43b8645bc077d6209d19eb4d0eacefee2f8686f
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.