Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
10,000 L00ST
Holders
660
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 L00STLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
l00stchan
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-12 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80. str := add(mload(0x40), 0x80) // Update the free memory pointer to allocate. mstore(0x40, str) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } pragma solidity 0.8.16; contract l00stchan is ERC721A { uint public constant MAX_SUPPLY = 10000; uint public constant BATCH_SIZE = 10; constructor() ERC721A("l00stchan", "L00ST") { _mint(msg.sender, 1); } function _startTokenId() internal pure override(ERC721A) returns (uint256) { return 1; } function mint(uint256 quantity) public { require(quantity > 0, "no zero quantity"); require(quantity <= BATCH_SIZE, "exceed collection size"); require(totalSupply() + quantity <= MAX_SUPPLY, "Can't mint more than in the collection"); _mint(msg.sender, quantity); } function tokenURI(uint tokenId) public pure override(ERC721A) returns (string memory) { return string(abi.encodePacked("https://l00stchan.nftcdn.live/json/",Strings.toString(tokenId))); } }
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":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BATCH_SIZE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"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":"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":"pure","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"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600981526020017f6c303073746368616e00000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4c3030535400000000000000000000000000000000000000000000000000000081525081600290816200008f9190620005bd565b508060039081620000a19190620005bd565b50620000b2620000d360201b60201c565b6000819055505050620000cd336001620000dc60201b60201c565b620006a4565b60006001905090565b600080549050600082036200011d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620001326000848385620002c360201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620001c183620001a36000866000620002c960201b60201c565b620001b485620002f960201b60201c565b176200030960201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200026457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905062000227565b5060008203620002a0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620002be60008483856200033460201b60201c565b505050565b50505050565b60008060e883901c905060e8620002e88686846200033a60201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60009392505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003c557607f821691505b602082108103620003db57620003da6200037d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004457fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000406565b62000451868362000406565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200049e62000498620004928462000469565b62000473565b62000469565b9050919050565b6000819050919050565b620004ba836200047d565b620004d2620004c982620004a5565b84845462000413565b825550505050565b600090565b620004e9620004da565b620004f6818484620004af565b505050565b5b818110156200051e5762000512600082620004df565b600181019050620004fc565b5050565b601f8211156200056d576200053781620003e1565b6200054284620003f6565b8101602085101562000552578190505b6200056a6200056185620003f6565b830182620004fb565b50505b505050565b600082821c905092915050565b6000620005926000198460080262000572565b1980831691505092915050565b6000620005ad83836200057f565b9150826002028217905092915050565b620005c88262000343565b67ffffffffffffffff811115620005e457620005e36200034e565b5b620005f08254620003ac565b620005fd82828562000522565b600060209050601f83116001811462000635576000841562000620578287015190505b6200062c85826200059f565b8655506200069c565b601f1984166200064586620003e1565b60005b828110156200066f5784890151825560018201915060208501945060208101905062000648565b868310156200068f57848901516200068b601f8916826200057f565b8355505b6001600288020188555050505b505050505050565b611fd980620006b46000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806349faa4d4116100a2578063a0712d6811610071578063a0712d68146102ba578063a22cb465146102d6578063b88d4fde146102f2578063c87b56dd1461030e578063e985e9c51461033e5761010b565b806349faa4d41461021e5780636352211e1461023c57806370a082311461026c57806395d89b411461029c5761010b565b806318160ddd116100de57806318160ddd146101aa57806323b872dd146101c857806332cb6b0c146101e457806342842e0e146102025761010b565b806301ffc9a71461011057806306fdde0314610140578063081812fc1461015e578063095ea7b31461018e575b600080fd5b61012a60048036038101906101259190611539565b61036e565b6040516101379190611581565b60405180910390f35b610148610400565b604051610155919061162c565b60405180910390f35b61017860048036038101906101739190611684565b610492565b60405161018591906116f2565b60405180910390f35b6101a860048036038101906101a39190611739565b610511565b005b6101b2610655565b6040516101bf9190611788565b60405180910390f35b6101e260048036038101906101dd91906117a3565b61066c565b005b6101ec61098e565b6040516101f99190611788565b60405180910390f35b61021c600480360381019061021791906117a3565b610994565b005b6102266109b4565b6040516102339190611788565b60405180910390f35b61025660048036038101906102519190611684565b6109b9565b60405161026391906116f2565b60405180910390f35b610286600480360381019061028191906117f6565b6109cb565b6040516102939190611788565b60405180910390f35b6102a4610a83565b6040516102b1919061162c565b60405180910390f35b6102d460048036038101906102cf9190611684565b610b15565b005b6102f060048036038101906102eb919061184f565b610c00565b005b61030c600480360381019061030791906119c4565b610d0b565b005b61032860048036038101906103239190611684565b610d7e565b604051610335919061162c565b60405180910390f35b61035860048036038101906103539190611a47565b610daf565b6040516103659190611581565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806103c957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806103f95750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461040f90611ab6565b80601f016020809104026020016040519081016040528092919081815260200182805461043b90611ab6565b80156104885780601f1061045d57610100808354040283529160200191610488565b820191906000526020600020905b81548152906001019060200180831161046b57829003601f168201915b5050505050905090565b600061049d82610e43565b6104d3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061051c826109b9565b90508073ffffffffffffffffffffffffffffffffffffffff1661053d610ea2565b73ffffffffffffffffffffffffffffffffffffffff16146105a05761056981610564610ea2565b610daf565b61059f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061065f610eaa565b6001546000540303905090565b600061067782610eb3565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146106de576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806106ea84610f7f565b9150915061070081876106fb610ea2565b610fa6565b61074c5761071586610710610ea2565b610daf565b61074b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036107b2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107bf8686866001610fea565b80156107ca57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061089885610874888887610ff0565b7c020000000000000000000000000000000000000000000000000000000017611018565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361091e576000600185019050600060046000838152602001908152602001600020540361091c57600054811461091b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46109868686866001611043565b505050505050565b61271081565b6109af83838360405180602001604052806000815250610d0b565b505050565b600a81565b60006109c482610eb3565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a32576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b606060038054610a9290611ab6565b80601f0160208091040260200160405190810160405280929190818152602001828054610abe90611ab6565b8015610b0b5780601f10610ae057610100808354040283529160200191610b0b565b820191906000526020600020905b815481529060010190602001808311610aee57829003601f168201915b5050505050905090565b60008111610b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4f90611b33565b60405180910390fd5b600a811115610b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9390611b9f565b60405180910390fd5b61271081610ba8610655565b610bb29190611bee565b1115610bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bea90611c94565b60405180910390fd5b610bfd3382611049565b50565b8060076000610c0d610ea2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610cba610ea2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610cff9190611581565b60405180910390a35050565b610d1684848461066c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14610d7857610d4184848484611204565b610d77576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060610d8982611354565b604051602001610d999190611d62565b6040516020818303038152906040529050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600081610e4e610eaa565b11158015610e5d575060005482105b8015610e9b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080610ec2610eaa565b11610f4857600054811015610f475760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603610f45575b60008103610f3b576004600083600190039350838152602001908152602001600020549050610f11565b8092505050610f7a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86110078686846114b4565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008054905060008203611089576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110966000848385610fea565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061110d836110fe6000866000610ff0565b611107856114bd565b17611018565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146111ae57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611173565b50600082036111e9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506111ff6000848385611043565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261122a610ea2565b8786866040518563ffffffff1660e01b815260040161124c9493929190611dd9565b6020604051808303816000875af192505050801561128857506040513d601f19601f820116820180604052508101906112859190611e3a565b60015b611301573d80600081146112b8576040519150601f19603f3d011682016040523d82523d6000602084013e6112bd565b606091505b5060008151036112f9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000820361139b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506114af565b600082905060005b600082146113cd5780806113b690611e67565b915050600a826113c69190611ede565b91506113a3565b60008167ffffffffffffffff8111156113e9576113e8611899565b5b6040519080825280601f01601f19166020018201604052801561141b5781602001600182028036833780820191505090505b5090505b600085146114a8576001826114349190611f0f565b9150600a856114439190611f43565b603061144f9190611bee565b60f81b81838151811061146557611464611f74565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856114a19190611ede565b945061141f565b8093505050505b919050565b60009392505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611516816114e1565b811461152157600080fd5b50565b6000813590506115338161150d565b92915050565b60006020828403121561154f5761154e6114d7565b5b600061155d84828501611524565b91505092915050565b60008115159050919050565b61157b81611566565b82525050565b60006020820190506115966000830184611572565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156115d65780820151818401526020810190506115bb565b60008484015250505050565b6000601f19601f8301169050919050565b60006115fe8261159c565b61160881856115a7565b93506116188185602086016115b8565b611621816115e2565b840191505092915050565b6000602082019050818103600083015261164681846115f3565b905092915050565b6000819050919050565b6116618161164e565b811461166c57600080fd5b50565b60008135905061167e81611658565b92915050565b60006020828403121561169a576116996114d7565b5b60006116a88482850161166f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116dc826116b1565b9050919050565b6116ec816116d1565b82525050565b600060208201905061170760008301846116e3565b92915050565b611716816116d1565b811461172157600080fd5b50565b6000813590506117338161170d565b92915050565b600080604083850312156117505761174f6114d7565b5b600061175e85828601611724565b925050602061176f8582860161166f565b9150509250929050565b6117828161164e565b82525050565b600060208201905061179d6000830184611779565b92915050565b6000806000606084860312156117bc576117bb6114d7565b5b60006117ca86828701611724565b93505060206117db86828701611724565b92505060406117ec8682870161166f565b9150509250925092565b60006020828403121561180c5761180b6114d7565b5b600061181a84828501611724565b91505092915050565b61182c81611566565b811461183757600080fd5b50565b60008135905061184981611823565b92915050565b60008060408385031215611866576118656114d7565b5b600061187485828601611724565b92505060206118858582860161183a565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6118d1826115e2565b810181811067ffffffffffffffff821117156118f0576118ef611899565b5b80604052505050565b60006119036114cd565b905061190f82826118c8565b919050565b600067ffffffffffffffff82111561192f5761192e611899565b5b611938826115e2565b9050602081019050919050565b82818337600083830152505050565b600061196761196284611914565b6118f9565b90508281526020810184848401111561198357611982611894565b5b61198e848285611945565b509392505050565b600082601f8301126119ab576119aa61188f565b5b81356119bb848260208601611954565b91505092915050565b600080600080608085870312156119de576119dd6114d7565b5b60006119ec87828801611724565b94505060206119fd87828801611724565b9350506040611a0e8782880161166f565b925050606085013567ffffffffffffffff811115611a2f57611a2e6114dc565b5b611a3b87828801611996565b91505092959194509250565b60008060408385031215611a5e57611a5d6114d7565b5b6000611a6c85828601611724565b9250506020611a7d85828601611724565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ace57607f821691505b602082108103611ae157611ae0611a87565b5b50919050565b7f6e6f207a65726f207175616e7469747900000000000000000000000000000000600082015250565b6000611b1d6010836115a7565b9150611b2882611ae7565b602082019050919050565b60006020820190508181036000830152611b4c81611b10565b9050919050565b7f65786365656420636f6c6c656374696f6e2073697a6500000000000000000000600082015250565b6000611b896016836115a7565b9150611b9482611b53565b602082019050919050565b60006020820190508181036000830152611bb881611b7c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611bf98261164e565b9150611c048361164e565b9250828201905080821115611c1c57611c1b611bbf565b5b92915050565b7f43616e2774206d696e74206d6f7265207468616e20696e2074686520636f6c6c60008201527f656374696f6e0000000000000000000000000000000000000000000000000000602082015250565b6000611c7e6026836115a7565b9150611c8982611c22565b604082019050919050565b60006020820190508181036000830152611cad81611c71565b9050919050565b600081905092915050565b7f68747470733a2f2f6c303073746368616e2e6e667463646e2e6c6976652f6a7360008201527f6f6e2f0000000000000000000000000000000000000000000000000000000000602082015250565b6000611d1b602383611cb4565b9150611d2682611cbf565b602382019050919050565b6000611d3c8261159c565b611d468185611cb4565b9350611d568185602086016115b8565b80840191505092915050565b6000611d6d82611d0e565b9150611d798284611d31565b915081905092915050565b600081519050919050565b600082825260208201905092915050565b6000611dab82611d84565b611db58185611d8f565b9350611dc58185602086016115b8565b611dce816115e2565b840191505092915050565b6000608082019050611dee60008301876116e3565b611dfb60208301866116e3565b611e086040830185611779565b8181036060830152611e1a8184611da0565b905095945050505050565b600081519050611e348161150d565b92915050565b600060208284031215611e5057611e4f6114d7565b5b6000611e5e84828501611e25565b91505092915050565b6000611e728261164e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611ea457611ea3611bbf565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611ee98261164e565b9150611ef48361164e565b925082611f0457611f03611eaf565b5b828204905092915050565b6000611f1a8261164e565b9150611f258361164e565b9250828203905081811115611f3d57611f3c611bbf565b5b92915050565b6000611f4e8261164e565b9150611f598361164e565b925082611f6957611f68611eaf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220b688afad8947f820114503ffbaf9ff8128883d9ada5fc3446ab6346360594a3f64736f6c63430008100033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806349faa4d4116100a2578063a0712d6811610071578063a0712d68146102ba578063a22cb465146102d6578063b88d4fde146102f2578063c87b56dd1461030e578063e985e9c51461033e5761010b565b806349faa4d41461021e5780636352211e1461023c57806370a082311461026c57806395d89b411461029c5761010b565b806318160ddd116100de57806318160ddd146101aa57806323b872dd146101c857806332cb6b0c146101e457806342842e0e146102025761010b565b806301ffc9a71461011057806306fdde0314610140578063081812fc1461015e578063095ea7b31461018e575b600080fd5b61012a60048036038101906101259190611539565b61036e565b6040516101379190611581565b60405180910390f35b610148610400565b604051610155919061162c565b60405180910390f35b61017860048036038101906101739190611684565b610492565b60405161018591906116f2565b60405180910390f35b6101a860048036038101906101a39190611739565b610511565b005b6101b2610655565b6040516101bf9190611788565b60405180910390f35b6101e260048036038101906101dd91906117a3565b61066c565b005b6101ec61098e565b6040516101f99190611788565b60405180910390f35b61021c600480360381019061021791906117a3565b610994565b005b6102266109b4565b6040516102339190611788565b60405180910390f35b61025660048036038101906102519190611684565b6109b9565b60405161026391906116f2565b60405180910390f35b610286600480360381019061028191906117f6565b6109cb565b6040516102939190611788565b60405180910390f35b6102a4610a83565b6040516102b1919061162c565b60405180910390f35b6102d460048036038101906102cf9190611684565b610b15565b005b6102f060048036038101906102eb919061184f565b610c00565b005b61030c600480360381019061030791906119c4565b610d0b565b005b61032860048036038101906103239190611684565b610d7e565b604051610335919061162c565b60405180910390f35b61035860048036038101906103539190611a47565b610daf565b6040516103659190611581565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806103c957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806103f95750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461040f90611ab6565b80601f016020809104026020016040519081016040528092919081815260200182805461043b90611ab6565b80156104885780601f1061045d57610100808354040283529160200191610488565b820191906000526020600020905b81548152906001019060200180831161046b57829003601f168201915b5050505050905090565b600061049d82610e43565b6104d3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061051c826109b9565b90508073ffffffffffffffffffffffffffffffffffffffff1661053d610ea2565b73ffffffffffffffffffffffffffffffffffffffff16146105a05761056981610564610ea2565b610daf565b61059f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061065f610eaa565b6001546000540303905090565b600061067782610eb3565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146106de576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806106ea84610f7f565b9150915061070081876106fb610ea2565b610fa6565b61074c5761071586610710610ea2565b610daf565b61074b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036107b2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107bf8686866001610fea565b80156107ca57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061089885610874888887610ff0565b7c020000000000000000000000000000000000000000000000000000000017611018565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361091e576000600185019050600060046000838152602001908152602001600020540361091c57600054811461091b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46109868686866001611043565b505050505050565b61271081565b6109af83838360405180602001604052806000815250610d0b565b505050565b600a81565b60006109c482610eb3565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a32576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b606060038054610a9290611ab6565b80601f0160208091040260200160405190810160405280929190818152602001828054610abe90611ab6565b8015610b0b5780601f10610ae057610100808354040283529160200191610b0b565b820191906000526020600020905b815481529060010190602001808311610aee57829003601f168201915b5050505050905090565b60008111610b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4f90611b33565b60405180910390fd5b600a811115610b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9390611b9f565b60405180910390fd5b61271081610ba8610655565b610bb29190611bee565b1115610bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bea90611c94565b60405180910390fd5b610bfd3382611049565b50565b8060076000610c0d610ea2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610cba610ea2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610cff9190611581565b60405180910390a35050565b610d1684848461066c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14610d7857610d4184848484611204565b610d77576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060610d8982611354565b604051602001610d999190611d62565b6040516020818303038152906040529050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600081610e4e610eaa565b11158015610e5d575060005482105b8015610e9b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080610ec2610eaa565b11610f4857600054811015610f475760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603610f45575b60008103610f3b576004600083600190039350838152602001908152602001600020549050610f11565b8092505050610f7a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86110078686846114b4565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008054905060008203611089576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110966000848385610fea565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061110d836110fe6000866000610ff0565b611107856114bd565b17611018565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146111ae57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611173565b50600082036111e9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506111ff6000848385611043565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261122a610ea2565b8786866040518563ffffffff1660e01b815260040161124c9493929190611dd9565b6020604051808303816000875af192505050801561128857506040513d601f19601f820116820180604052508101906112859190611e3a565b60015b611301573d80600081146112b8576040519150601f19603f3d011682016040523d82523d6000602084013e6112bd565b606091505b5060008151036112f9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000820361139b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506114af565b600082905060005b600082146113cd5780806113b690611e67565b915050600a826113c69190611ede565b91506113a3565b60008167ffffffffffffffff8111156113e9576113e8611899565b5b6040519080825280601f01601f19166020018201604052801561141b5781602001600182028036833780820191505090505b5090505b600085146114a8576001826114349190611f0f565b9150600a856114439190611f43565b603061144f9190611bee565b60f81b81838151811061146557611464611f74565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856114a19190611ede565b945061141f565b8093505050505b919050565b60009392505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611516816114e1565b811461152157600080fd5b50565b6000813590506115338161150d565b92915050565b60006020828403121561154f5761154e6114d7565b5b600061155d84828501611524565b91505092915050565b60008115159050919050565b61157b81611566565b82525050565b60006020820190506115966000830184611572565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156115d65780820151818401526020810190506115bb565b60008484015250505050565b6000601f19601f8301169050919050565b60006115fe8261159c565b61160881856115a7565b93506116188185602086016115b8565b611621816115e2565b840191505092915050565b6000602082019050818103600083015261164681846115f3565b905092915050565b6000819050919050565b6116618161164e565b811461166c57600080fd5b50565b60008135905061167e81611658565b92915050565b60006020828403121561169a576116996114d7565b5b60006116a88482850161166f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116dc826116b1565b9050919050565b6116ec816116d1565b82525050565b600060208201905061170760008301846116e3565b92915050565b611716816116d1565b811461172157600080fd5b50565b6000813590506117338161170d565b92915050565b600080604083850312156117505761174f6114d7565b5b600061175e85828601611724565b925050602061176f8582860161166f565b9150509250929050565b6117828161164e565b82525050565b600060208201905061179d6000830184611779565b92915050565b6000806000606084860312156117bc576117bb6114d7565b5b60006117ca86828701611724565b93505060206117db86828701611724565b92505060406117ec8682870161166f565b9150509250925092565b60006020828403121561180c5761180b6114d7565b5b600061181a84828501611724565b91505092915050565b61182c81611566565b811461183757600080fd5b50565b60008135905061184981611823565b92915050565b60008060408385031215611866576118656114d7565b5b600061187485828601611724565b92505060206118858582860161183a565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6118d1826115e2565b810181811067ffffffffffffffff821117156118f0576118ef611899565b5b80604052505050565b60006119036114cd565b905061190f82826118c8565b919050565b600067ffffffffffffffff82111561192f5761192e611899565b5b611938826115e2565b9050602081019050919050565b82818337600083830152505050565b600061196761196284611914565b6118f9565b90508281526020810184848401111561198357611982611894565b5b61198e848285611945565b509392505050565b600082601f8301126119ab576119aa61188f565b5b81356119bb848260208601611954565b91505092915050565b600080600080608085870312156119de576119dd6114d7565b5b60006119ec87828801611724565b94505060206119fd87828801611724565b9350506040611a0e8782880161166f565b925050606085013567ffffffffffffffff811115611a2f57611a2e6114dc565b5b611a3b87828801611996565b91505092959194509250565b60008060408385031215611a5e57611a5d6114d7565b5b6000611a6c85828601611724565b9250506020611a7d85828601611724565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ace57607f821691505b602082108103611ae157611ae0611a87565b5b50919050565b7f6e6f207a65726f207175616e7469747900000000000000000000000000000000600082015250565b6000611b1d6010836115a7565b9150611b2882611ae7565b602082019050919050565b60006020820190508181036000830152611b4c81611b10565b9050919050565b7f65786365656420636f6c6c656374696f6e2073697a6500000000000000000000600082015250565b6000611b896016836115a7565b9150611b9482611b53565b602082019050919050565b60006020820190508181036000830152611bb881611b7c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611bf98261164e565b9150611c048361164e565b9250828201905080821115611c1c57611c1b611bbf565b5b92915050565b7f43616e2774206d696e74206d6f7265207468616e20696e2074686520636f6c6c60008201527f656374696f6e0000000000000000000000000000000000000000000000000000602082015250565b6000611c7e6026836115a7565b9150611c8982611c22565b604082019050919050565b60006020820190508181036000830152611cad81611c71565b9050919050565b600081905092915050565b7f68747470733a2f2f6c303073746368616e2e6e667463646e2e6c6976652f6a7360008201527f6f6e2f0000000000000000000000000000000000000000000000000000000000602082015250565b6000611d1b602383611cb4565b9150611d2682611cbf565b602382019050919050565b6000611d3c8261159c565b611d468185611cb4565b9350611d568185602086016115b8565b80840191505092915050565b6000611d6d82611d0e565b9150611d798284611d31565b915081905092915050565b600081519050919050565b600082825260208201905092915050565b6000611dab82611d84565b611db58185611d8f565b9350611dc58185602086016115b8565b611dce816115e2565b840191505092915050565b6000608082019050611dee60008301876116e3565b611dfb60208301866116e3565b611e086040830185611779565b8181036060830152611e1a8184611da0565b905095945050505050565b600081519050611e348161150d565b92915050565b600060208284031215611e5057611e4f6114d7565b5b6000611e5e84828501611e25565b91505092915050565b6000611e728261164e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611ea457611ea3611bbf565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611ee98261164e565b9150611ef48361164e565b925082611f0457611f03611eaf565b5b828204905092915050565b6000611f1a8261164e565b9150611f258361164e565b9250828203905081811115611f3d57611f3c611bbf565b5b92915050565b6000611f4e8261164e565b9150611f598361164e565b925082611f6957611f68611eaf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220b688afad8947f820114503ffbaf9ff8128883d9ada5fc3446ab6346360594a3f64736f6c63430008100033
Deployed Bytecode Sourcemap
53531:874:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20906:639;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21808:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28291:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27732:400;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17559:323;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31930:2817;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53569:39;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34843:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53615:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23201:152;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18743:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21984:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53867:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28849:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35626:399;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54196:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29240:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20906:639;20991:4;21330:10;21315:25;;:11;:25;;;;:102;;;;21407:10;21392:25;;:11;:25;;;;21315:102;:179;;;;21484:10;21469:25;;:11;:25;;;;21315:179;21295:199;;20906:639;;;:::o;21808:100::-;21862:13;21895:5;21888:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21808:100;:::o;28291:218::-;28367:7;28392:16;28400:7;28392;:16::i;:::-;28387:64;;28417:34;;;;;;;;;;;;;;28387:64;28471:15;:24;28487:7;28471:24;;;;;;;;;;;:30;;;;;;;;;;;;28464:37;;28291:218;;;:::o;27732:400::-;27813:13;27829:16;27837:7;27829;:16::i;:::-;27813:32;;27885:5;27862:28;;:19;:17;:19::i;:::-;:28;;;27858:175;;27910:44;27927:5;27934:19;:17;:19::i;:::-;27910:16;:44::i;:::-;27905:128;;27982:35;;;;;;;;;;;;;;27905:128;27858:175;28078:2;28045:15;:24;28061:7;28045:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;28116:7;28112:2;28096:28;;28105:5;28096:28;;;;;;;;;;;;27802:330;27732:400;;:::o;17559:323::-;17620:7;17848:15;:13;:15::i;:::-;17833:12;;17817:13;;:28;:46;17810:53;;17559:323;:::o;31930:2817::-;32064:27;32094;32113:7;32094:18;:27::i;:::-;32064:57;;32179:4;32138:45;;32154:19;32138:45;;;32134:86;;32192:28;;;;;;;;;;;;;;32134:86;32234:27;32263:23;32290:35;32317:7;32290:26;:35::i;:::-;32233:92;;;;32425:68;32450:15;32467:4;32473:19;:17;:19::i;:::-;32425:24;:68::i;:::-;32420:180;;32513:43;32530:4;32536:19;:17;:19::i;:::-;32513:16;:43::i;:::-;32508:92;;32565:35;;;;;;;;;;;;;;32508:92;32420:180;32631:1;32617:16;;:2;:16;;;32613:52;;32642:23;;;;;;;;;;;;;;32613:52;32678:43;32700:4;32706:2;32710:7;32719:1;32678:21;:43::i;:::-;32814:15;32811:160;;;32954:1;32933:19;32926:30;32811:160;33351:18;:24;33370:4;33351:24;;;;;;;;;;;;;;;;33349:26;;;;;;;;;;;;33420:18;:22;33439:2;33420:22;;;;;;;;;;;;;;;;33418:24;;;;;;;;;;;33742:146;33779:2;33828:45;33843:4;33849:2;33853:19;33828:14;:45::i;:::-;13958:8;33800:73;33742:18;:146::i;:::-;33713:17;:26;33731:7;33713:26;;;;;;;;;;;:175;;;;34059:1;13958:8;34008:19;:47;:52;34004:627;;34081:19;34113:1;34103:7;:11;34081:33;;34270:1;34236:17;:30;34254:11;34236:30;;;;;;;;;;;;:35;34232:384;;34374:13;;34359:11;:28;34355:242;;34554:19;34521:17;:30;34539:11;34521:30;;;;;;;;;;;:52;;;;34355:242;34232:384;34062:569;34004:627;34678:7;34674:2;34659:27;;34668:4;34659:27;;;;;;;;;;;;34697:42;34718:4;34724:2;34728:7;34737:1;34697:20;:42::i;:::-;32053:2694;;;31930:2817;;;:::o;53569:39::-;53603:5;53569:39;:::o;34843:185::-;34981:39;34998:4;35004:2;35008:7;34981:39;;;;;;;;;;;;:16;:39::i;:::-;34843:185;;;:::o;53615:36::-;53649:2;53615:36;:::o;23201:152::-;23273:7;23316:27;23335:7;23316:18;:27::i;:::-;23293:52;;23201:152;;;:::o;18743:233::-;18815:7;18856:1;18839:19;;:5;:19;;;18835:60;;18867:28;;;;;;;;;;;;;;18835:60;12902:13;18913:18;:25;18932:5;18913:25;;;;;;;;;;;;;;;;:55;18906:62;;18743:233;;;:::o;21984:104::-;22040:13;22073:7;22066:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21984:104;:::o;53867:321::-;53950:1;53939:8;:12;53931:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;53649:2;53991:8;:22;;53983:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;53603:5;54075:8;54059:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;54051:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;54153:27;54159:10;54171:8;54153:5;:27::i;:::-;53867:321;:::o;28849:234::-;28996:8;28944:18;:39;28963:19;:17;:19::i;:::-;28944:39;;;;;;;;;;;;;;;:49;28984:8;28944:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;29056:8;29020:55;;29035:19;:17;:19::i;:::-;29020:55;;;29066:8;29020:55;;;;;;:::i;:::-;;;;;;;;28849:234;;:::o;35626:399::-;35793:31;35806:4;35812:2;35816:7;35793:12;:31::i;:::-;35857:1;35839:2;:14;;;:19;35835:183;;35878:56;35909:4;35915:2;35919:7;35928:5;35878:30;:56::i;:::-;35873:145;;35962:40;;;;;;;;;;;;;;35873:145;35835:183;35626:399;;;;:::o;54196:206::-;54267:13;54367:25;54384:7;54367:16;:25::i;:::-;54312:81;;;;;;;;:::i;:::-;;;;;;;;;;;;;54298:96;;54196:206;;;:::o;29240:164::-;29337:4;29361:18;:25;29380:5;29361:25;;;;;;;;;;;;;;;:35;29387:8;29361:35;;;;;;;;;;;;;;;;;;;;;;;;;29354:42;;29240:164;;;;:::o;29662:282::-;29727:4;29783:7;29764:15;:13;:15::i;:::-;:26;;:66;;;;;29817:13;;29807:7;:23;29764:66;:153;;;;;29916:1;13678:8;29868:17;:26;29886:7;29868:26;;;;;;;;;;;;:44;:49;29764:153;29744:173;;29662:282;;;:::o;51700:105::-;51760:7;51787:10;51780:17;;51700:105;:::o;53757:102::-;53823:7;53850:1;53843:8;;53757:102;:::o;24356:1275::-;24423:7;24443:12;24458:7;24443:22;;24526:4;24507:15;:13;:15::i;:::-;:23;24503:1061;;24560:13;;24553:4;:20;24549:1015;;;24598:14;24615:17;:23;24633:4;24615:23;;;;;;;;;;;;24598:40;;24732:1;13678:8;24704:6;:24;:29;24700:845;;25369:113;25386:1;25376:6;:11;25369:113;;25429:17;:25;25447:6;;;;;;;25429:25;;;;;;;;;;;;25420:34;;25369:113;;;25515:6;25508:13;;;;;;24700:845;24575:989;24549:1015;24503:1061;25592:31;;;;;;;;;;;;;;24356:1275;;;;:::o;30825:485::-;30927:27;30956:23;30997:38;31038:15;:24;31054:7;31038:24;;;;;;;;;;;30997:65;;31215:18;31192:41;;31272:19;31266:26;31247:45;;31177:126;30825:485;;;:::o;30053:659::-;30202:11;30367:16;30360:5;30356:28;30347:37;;30527:16;30516:9;30512:32;30499:45;;30677:15;30666:9;30663:30;30655:5;30644:9;30641:20;30638:56;30628:66;;30053:659;;;;;:::o;36687:159::-;;;;;:::o;51009:311::-;51144:7;51164:16;14082:3;51190:19;:41;;51164:68;;14082:3;51258:31;51269:4;51275:2;51279:9;51258:10;:31::i;:::-;51250:40;;:62;;51243:69;;;51009:311;;;;;:::o;26179:450::-;26259:14;26427:16;26420:5;26416:28;26407:37;;26604:5;26590:11;26565:23;26561:41;26558:52;26551:5;26548:63;26538:73;;26179:450;;;;:::o;37511:158::-;;;;;:::o;39287:2720::-;39360:20;39383:13;;39360:36;;39423:1;39411:8;:13;39407:44;;39433:18;;;;;;;;;;;;;;39407:44;39464:61;39494:1;39498:2;39502:12;39516:8;39464:21;:61::i;:::-;40008:1;13040:2;39978:1;:26;;39977:32;39965:8;:45;39939:18;:22;39958:2;39939:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;40287:139;40324:2;40378:33;40401:1;40405:2;40409:1;40378:14;:33::i;:::-;40345:30;40366:8;40345:20;:30::i;:::-;:66;40287:18;:139::i;:::-;40253:17;:31;40271:12;40253:31;;;;;;;;;;;:173;;;;40443:16;40474:11;40503:8;40488:12;:23;40474:37;;41024:16;41020:2;41016:25;41004:37;;41396:12;41356:8;41315:1;41253:25;41194:1;41133;41106:335;41521:1;41507:12;41503:20;41461:346;41562:3;41553:7;41550:16;41461:346;;41780:7;41770:8;41767:1;41740:25;41737:1;41734;41729:59;41615:1;41606:7;41602:15;41591:26;;41461:346;;;41465:77;41852:1;41840:8;:13;41836:45;;41862:19;;;;;;;;;;;;;;41836:45;41914:3;41898:13;:19;;;;39713:2216;;41939:60;41968:1;41972:2;41976:12;41990:8;41939:20;:60::i;:::-;39349:2658;39287:2720;;:::o;38109:716::-;38272:4;38318:2;38293:45;;;38339:19;:17;:19::i;:::-;38360:4;38366:7;38375:5;38293:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38289:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38593:1;38576:6;:13;:18;38572:235;;38622:40;;;;;;;;;;;;;;38572:235;38765:6;38759:13;38750:6;38746:2;38742:15;38735:38;38289:529;38462:54;;;38452:64;;;:6;:64;;;;38445:71;;;38109:716;;;;;;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;50710:147::-;50847:6;50710:147;;;;;:::o;26731:324::-;26801:14;27034:1;27024:8;27021:15;26995:24;26991:46;26981:56;;26731:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:116::-;6272:21;6287:5;6272:21;:::i;:::-;6265:5;6262:32;6252:60;;6308:1;6305;6298:12;6252:60;6202:116;:::o;6324:133::-;6367:5;6405:6;6392:20;6383:29;;6421:30;6445:5;6421:30;:::i;:::-;6324:133;;;;:::o;6463:468::-;6528:6;6536;6585:2;6573:9;6564:7;6560:23;6556:32;6553:119;;;6591:79;;:::i;:::-;6553:119;6711:1;6736:53;6781:7;6772:6;6761:9;6757:22;6736:53;:::i;:::-;6726:63;;6682:117;6838:2;6864:50;6906:7;6897:6;6886:9;6882:22;6864:50;:::i;:::-;6854:60;;6809:115;6463:468;;;;;:::o;6937:117::-;7046:1;7043;7036:12;7060:117;7169:1;7166;7159:12;7183:180;7231:77;7228:1;7221:88;7328:4;7325:1;7318:15;7352:4;7349:1;7342:15;7369:281;7452:27;7474:4;7452:27;:::i;:::-;7444:6;7440:40;7582:6;7570:10;7567:22;7546:18;7534:10;7531:34;7528:62;7525:88;;;7593:18;;:::i;:::-;7525:88;7633:10;7629:2;7622:22;7412:238;7369:281;;:::o;7656:129::-;7690:6;7717:20;;:::i;:::-;7707:30;;7746:33;7774:4;7766:6;7746:33;:::i;:::-;7656:129;;;:::o;7791:307::-;7852:4;7942:18;7934:6;7931:30;7928:56;;;7964:18;;:::i;:::-;7928:56;8002:29;8024:6;8002:29;:::i;:::-;7994:37;;8086:4;8080;8076:15;8068:23;;7791:307;;;:::o;8104:146::-;8201:6;8196:3;8191;8178:30;8242:1;8233:6;8228:3;8224:16;8217:27;8104:146;;;:::o;8256:423::-;8333:5;8358:65;8374:48;8415:6;8374:48;:::i;:::-;8358:65;:::i;:::-;8349:74;;8446:6;8439:5;8432:21;8484:4;8477:5;8473:16;8522:3;8513:6;8508:3;8504:16;8501:25;8498:112;;;8529:79;;:::i;:::-;8498:112;8619:54;8666:6;8661:3;8656;8619:54;:::i;:::-;8339:340;8256:423;;;;;:::o;8698:338::-;8753:5;8802:3;8795:4;8787:6;8783:17;8779:27;8769:122;;8810:79;;:::i;:::-;8769:122;8927:6;8914:20;8952:78;9026:3;9018:6;9011:4;9003:6;8999:17;8952:78;:::i;:::-;8943:87;;8759:277;8698:338;;;;:::o;9042:943::-;9137:6;9145;9153;9161;9210:3;9198:9;9189:7;9185:23;9181:33;9178:120;;;9217:79;;:::i;:::-;9178:120;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:53;9535:7;9526:6;9515:9;9511:22;9490:53;:::i;:::-;9480:63;;9435:118;9592:2;9618:53;9663:7;9654:6;9643:9;9639:22;9618:53;:::i;:::-;9608:63;;9563:118;9748:2;9737:9;9733:18;9720:32;9779:18;9771:6;9768:30;9765:117;;;9801:79;;:::i;:::-;9765:117;9906:62;9960:7;9951:6;9940:9;9936:22;9906:62;:::i;:::-;9896:72;;9691:287;9042:943;;;;;;;:::o;9991:474::-;10059:6;10067;10116:2;10104:9;10095:7;10091:23;10087:32;10084:119;;;10122:79;;:::i;:::-;10084:119;10242:1;10267:53;10312:7;10303:6;10292:9;10288:22;10267:53;:::i;:::-;10257:63;;10213:117;10369:2;10395:53;10440:7;10431:6;10420:9;10416:22;10395:53;:::i;:::-;10385:63;;10340:118;9991:474;;;;;:::o;10471:180::-;10519:77;10516:1;10509:88;10616:4;10613:1;10606:15;10640:4;10637:1;10630:15;10657:320;10701:6;10738:1;10732:4;10728:12;10718:22;;10785:1;10779:4;10775:12;10806:18;10796:81;;10862:4;10854:6;10850:17;10840:27;;10796:81;10924:2;10916:6;10913:14;10893:18;10890:38;10887:84;;10943:18;;:::i;:::-;10887:84;10708:269;10657:320;;;:::o;10983:166::-;11123:18;11119:1;11111:6;11107:14;11100:42;10983:166;:::o;11155:366::-;11297:3;11318:67;11382:2;11377:3;11318:67;:::i;:::-;11311:74;;11394:93;11483:3;11394:93;:::i;:::-;11512:2;11507:3;11503:12;11496:19;;11155:366;;;:::o;11527:419::-;11693:4;11731:2;11720:9;11716:18;11708:26;;11780:9;11774:4;11770:20;11766:1;11755:9;11751:17;11744:47;11808:131;11934:4;11808:131;:::i;:::-;11800:139;;11527:419;;;:::o;11952:172::-;12092:24;12088:1;12080:6;12076:14;12069:48;11952:172;:::o;12130:366::-;12272:3;12293:67;12357:2;12352:3;12293:67;:::i;:::-;12286:74;;12369:93;12458:3;12369:93;:::i;:::-;12487:2;12482:3;12478:12;12471:19;;12130:366;;;:::o;12502:419::-;12668:4;12706:2;12695:9;12691:18;12683:26;;12755:9;12749:4;12745:20;12741:1;12730:9;12726:17;12719:47;12783:131;12909:4;12783:131;:::i;:::-;12775:139;;12502:419;;;:::o;12927:180::-;12975:77;12972:1;12965:88;13072:4;13069:1;13062:15;13096:4;13093:1;13086:15;13113:191;13153:3;13172:20;13190:1;13172:20;:::i;:::-;13167:25;;13206:20;13224:1;13206:20;:::i;:::-;13201:25;;13249:1;13246;13242:9;13235:16;;13270:3;13267:1;13264:10;13261:36;;;13277:18;;:::i;:::-;13261:36;13113:191;;;;:::o;13310:225::-;13450:34;13446:1;13438:6;13434:14;13427:58;13519:8;13514:2;13506:6;13502:15;13495:33;13310:225;:::o;13541:366::-;13683:3;13704:67;13768:2;13763:3;13704:67;:::i;:::-;13697:74;;13780:93;13869:3;13780:93;:::i;:::-;13898:2;13893:3;13889:12;13882:19;;13541:366;;;:::o;13913:419::-;14079:4;14117:2;14106:9;14102:18;14094:26;;14166:9;14160:4;14156:20;14152:1;14141:9;14137:17;14130:47;14194:131;14320:4;14194:131;:::i;:::-;14186:139;;13913:419;;;:::o;14338:148::-;14440:11;14477:3;14462:18;;14338:148;;;;:::o;14492:230::-;14632:34;14628:1;14620:6;14616:14;14609:58;14705:5;14700:2;14692:6;14688:15;14681:30;14492:230;:::o;14732:418::-;14892:3;14917:85;14999:2;14994:3;14917:85;:::i;:::-;14910:92;;15015:93;15104:3;15015:93;:::i;:::-;15137:2;15132:3;15128:12;15121:19;;14732:418;;;:::o;15160:410::-;15266:3;15298:39;15331:5;15298:39;:::i;:::-;15357:89;15439:6;15434:3;15357:89;:::i;:::-;15350:96;;15459:65;15517:6;15512:3;15505:4;15498:5;15494:16;15459:65;:::i;:::-;15553:6;15548:3;15544:16;15537:23;;15270:300;15160:410;;;;:::o;15580:557::-;15813:3;15839:148;15983:3;15839:148;:::i;:::-;15832:155;;16008:95;16099:3;16090:6;16008:95;:::i;:::-;16001:102;;16124:3;16117:10;;15580:557;;;;:::o;16147:106::-;16198:6;16236:5;16230:12;16220:22;;16147:106;;;:::o;16263:180::-;16346:11;16384:6;16379:3;16372:19;16428:4;16423:3;16419:14;16404:29;;16263:180;;;;:::o;16453:393::-;16539:3;16571:38;16603:5;16571:38;:::i;:::-;16629:70;16692:6;16687:3;16629:70;:::i;:::-;16622:77;;16712:65;16770:6;16765:3;16758:4;16751:5;16747:16;16712:65;:::i;:::-;16806:29;16828:6;16806:29;:::i;:::-;16801:3;16797:39;16790:46;;16543:303;16453:393;;;;:::o;16856:668::-;17051:4;17093:3;17082:9;17078:19;17070:27;;17111:71;17179:1;17168:9;17164:17;17155:6;17111:71;:::i;:::-;17196:72;17264:2;17253:9;17249:18;17240:6;17196:72;:::i;:::-;17282;17350:2;17339:9;17335:18;17326:6;17282:72;:::i;:::-;17405:9;17399:4;17395:20;17390:2;17379:9;17375:18;17368:48;17437:76;17508:4;17499:6;17437:76;:::i;:::-;17429:84;;16856:668;;;;;;;:::o;17534:153::-;17590:5;17625:6;17619:13;17610:22;;17645:32;17671:5;17645:32;:::i;:::-;17534:153;;;;:::o;17697:373::-;17766:6;17819:2;17807:9;17798:7;17794:23;17790:32;17787:119;;;17825:79;;:::i;:::-;17787:119;17953:1;17982:63;18037:7;18028:6;18017:9;18013:22;17982:63;:::i;:::-;17972:73;;17920:139;17697:373;;;;:::o;18080:249::-;18119:3;18146:24;18164:5;18146:24;:::i;:::-;18137:33;;18196:66;18189:5;18186:77;18183:103;;18266:18;;:::i;:::-;18183:103;18317:1;18310:5;18306:13;18299:20;;18080:249;;;:::o;18339:196::-;18391:77;18388:1;18381:88;18492:4;18489:1;18482:15;18520:4;18517:1;18510:15;18545:205;18585:1;18606:20;18624:1;18606:20;:::i;:::-;18601:25;;18644:20;18662:1;18644:20;:::i;:::-;18639:25;;18687:1;18677:35;;18692:18;;:::i;:::-;18677:35;18738:1;18735;18731:9;18726:14;;18545:205;;;;:::o;18760:214::-;18800:4;18824:20;18842:1;18824:20;:::i;:::-;18819:25;;18862:20;18880:1;18862:20;:::i;:::-;18857:25;;18910:1;18907;18903:9;18895:17;;18938:1;18932:4;18929:11;18926:37;;;18943:18;;:::i;:::-;18926:37;18760:214;;;;:::o;18984:196::-;19016:1;19037:20;19055:1;19037:20;:::i;:::-;19032:25;;19075:20;19093:1;19075:20;:::i;:::-;19070:25;;19118:1;19108:35;;19123:18;;:::i;:::-;19108:35;19168:1;19165;19161:9;19156:14;;18984:196;;;;:::o;19190:::-;19242:77;19239:1;19232:88;19343:4;19340:1;19333:15;19371:4;19368:1;19361:15
Swarm Source
ipfs://b688afad8947f820114503ffbaf9ff8128883d9ada5fc3446ab6346360594a3f
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.