Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 39 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 19790184 | 239 days ago | IN | 0 ETH | 0.00025195 | ||||
Transfer Ownersh... | 17934856 | 499 days ago | IN | 0 ETH | 0.00068487 | ||||
Safe Transfer Fr... | 17074551 | 620 days ago | IN | 0 ETH | 0.00357706 | ||||
Set Approval For... | 16944150 | 638 days ago | IN | 0 ETH | 0.00106924 | ||||
Safe Transfer Fr... | 16761150 | 664 days ago | IN | 0 ETH | 0.00122169 | ||||
Safe Transfer Fr... | 16761148 | 664 days ago | IN | 0 ETH | 0.00123868 | ||||
Safe Transfer Fr... | 16761125 | 664 days ago | IN | 0 ETH | 0.00130452 | ||||
Safe Transfer Fr... | 16721152 | 670 days ago | IN | 0 ETH | 0.00141135 | ||||
Set Approval For... | 16707734 | 671 days ago | IN | 0 ETH | 0.0009843 | ||||
Set Approval For... | 16634735 | 682 days ago | IN | 0 ETH | 0.00209224 | ||||
Set Approval For... | 16531355 | 696 days ago | IN | 0 ETH | 0.00039958 | ||||
Batch Airdrop | 16461135 | 706 days ago | IN | 0 ETH | 0.00420919 | ||||
Set Approval For... | 16126348 | 753 days ago | IN | 0 ETH | 0.00085075 | ||||
Set Approval For... | 16125994 | 753 days ago | IN | 0 ETH | 0.00060633 | ||||
Transfer From | 16119535 | 754 days ago | IN | 0 ETH | 0.00144476 | ||||
Safe Transfer Fr... | 16118891 | 754 days ago | IN | 0 ETH | 0.00081934 | ||||
Set Approval For... | 16079921 | 759 days ago | IN | 0 ETH | 0.00056789 | ||||
Set Approval For... | 16067561 | 761 days ago | IN | 0 ETH | 0.00050925 | ||||
Set Approval For... | 16065384 | 761 days ago | IN | 0 ETH | 0.00048434 | ||||
Set Approval For... | 16055426 | 763 days ago | IN | 0 ETH | 0.00050435 | ||||
Safe Transfer Fr... | 16052986 | 763 days ago | IN | 0 ETH | 0.00069579 | ||||
Safe Transfer Fr... | 16050571 | 763 days ago | IN | 0 ETH | 0.00068431 | ||||
Set Approval For... | 16047696 | 764 days ago | IN | 0 ETH | 0.00054197 | ||||
Safe Transfer Fr... | 16046836 | 764 days ago | IN | 0 ETH | 0.00071911 | ||||
Set Approval For... | 16046455 | 764 days ago | IN | 0 ETH | 0.00050715 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
HallofGrace
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-24 */ // 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: erc721a/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(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // 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: erc721a/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 { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _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]`. 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. 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 aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 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) } } } // File: erc721a/contracts/extensions/IERC721AQueryable.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721AQueryable. */ interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); } // File: erc721a/contracts/extensions/ERC721AQueryable.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721AQueryable. * * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) { return ownership; } ownership = _ownershipAt(tokenId); if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] calldata tokenIds) external view virtual override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view virtual override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _nextTokenId(); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, stopLimit)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/HallofGrace.sol pragma solidity ^0.8.4; contract HallofGrace is ERC721AQueryable, Ownable { using Strings for uint256; string uriPrefix = "https://bafybeib4esyrlhn5gwebsaaodrybo5xnql7dgugqepzubbyftln4o5bjym.ipfs.nftstorage.link/"; constructor() ERC721A("Hall of Grace by Tarcosa", "HALL") {} function devMint(uint256 _mintAmount, address _receiver) public onlyOwner { _safeMint(_receiver, _mintAmount); } function _startTokenId() internal pure override returns (uint256) { return 1; } function batchAirdrop(address[] memory recipients) public onlyOwner { for(uint i = 0; i< recipients.length; i++){ _safeMint(recipients[i], 1); } } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token'); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json")) : ''; } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function withdraw() public onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(''); require(os); } }
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":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"batchAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052604051806080016040528060598152602001620035f1605991396009908051906020019062000035929190620001f7565b503480156200004357600080fd5b506040518060400160405280601881526020017f48616c6c206f6620477261636520627920546172636f736100000000000000008152506040518060400160405280600481526020017f48414c4c000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000c8929190620001f7565b508060039080519060200190620000e1929190620001f7565b50620000f26200012060201b60201c565b60008190555050506200011a6200010e6200012960201b60201c565b6200013160201b60201c565b6200030c565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020590620002a7565b90600052602060002090601f01602090048101928262000229576000855562000275565b82601f106200024457805160ff191683800117855562000275565b8280016001018555821562000275579182015b828111156200027457825182559160200191906001019062000257565b5b50905062000284919062000288565b5090565b5b80821115620002a357600081600090555060010162000289565b5090565b60006002820490506001821680620002c057607f821691505b60208210811415620002d757620002d6620002dd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6132d5806200031c6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c8063715018a6116100de5780639edfbec911610097578063c23dc68f11610071578063c23dc68f14610434578063c87b56dd14610464578063e985e9c514610494578063f2fde38b146104c457610173565b80639edfbec9146103e0578063a22cb465146103fc578063b88d4fde1461041857610173565b8063715018a61461031e5780637ec4a659146103285780638462151c146103445780638da5cb5b1461037457806395d89b411461039257806399a2557a146103b057610173565b80632d1a12f6116101305780632d1a12f61461024c5780633ccfd60b1461026857806342842e0e146102725780635bbb21771461028e5780636352211e146102be57806370a08231146102ee57610173565b806301ffc9a71461017857806306fdde03146101a8578063081812fc146101c6578063095ea7b3146101f657806318160ddd1461021257806323b872dd14610230575b600080fd5b610192600480360381019061018d9190612620565b6104e0565b60405161019f9190612b7f565b60405180910390f35b6101b0610572565b6040516101bd9190612b9a565b60405180910390f35b6101e060048036038101906101db91906126c3565b610604565b6040516101ed9190612ad4565b60405180910390f35b610210600480360381019061020b91906124f7565b610683565b005b61021a6107c7565b6040516102279190612c37565b60405180910390f35b61024a600480360381019061024591906123e1565b6107de565b005b610266600480360381019061026191906126f0565b610b03565b005b610270610b19565b005b61028c600480360381019061028791906123e1565b610ba1565b005b6102a860048036038101906102a391906125d3565b610bc1565b6040516102b59190612b3b565b60405180910390f35b6102d860048036038101906102d391906126c3565b610c84565b6040516102e59190612ad4565b60405180910390f35b61030860048036038101906103039190612374565b610c96565b6040516103159190612c37565b60405180910390f35b610326610d4f565b005b610342600480360381019061033d919061267a565b610d63565b005b61035e60048036038101906103599190612374565b610d85565b60405161036b9190612b5d565b60405180910390f35b61037c610ecf565b6040516103899190612ad4565b60405180910390f35b61039a610ef9565b6040516103a79190612b9a565b60405180910390f35b6103ca60048036038101906103c59190612537565b610f8b565b6040516103d79190612b5d565b60405180910390f35b6103fa60048036038101906103f5919061258a565b61119f565b005b610416600480360381019061041191906124b7565b6111ef565b005b610432600480360381019061042d9190612434565b611367565b005b61044e600480360381019061044991906126c3565b6113da565b60405161045b9190612c1c565b60405180910390f35b61047e600480360381019061047991906126c3565b611444565b60405161048b9190612b9a565b60405180910390f35b6104ae60048036038101906104a991906123a1565b6114eb565b6040516104bb9190612b7f565b60405180910390f35b6104de60048036038101906104d99190612374565b61157f565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061053b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061056b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461058190612f59565b80601f01602080910402602001604051908101604052809291908181526020018280546105ad90612f59565b80156105fa5780601f106105cf576101008083540402835291602001916105fa565b820191906000526020600020905b8154815290600101906020018083116105dd57829003601f168201915b5050505050905090565b600061060f82611603565b610645576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061068e82610c84565b90508073ffffffffffffffffffffffffffffffffffffffff166106af611662565b73ffffffffffffffffffffffffffffffffffffffff1614610712576106db816106d6611662565b6114eb565b610711576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006107d161166a565b6001546000540303905090565b60006107e982611673565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610850576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061085c84611741565b91509150610872818761086d611662565b611768565b6108be5761088786610882611662565b6114eb565b6108bd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610925576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61093286868660016117ac565b801561093d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610a0b856109e78888876117b2565b7c0200000000000000000000000000000000000000000000000000000000176117da565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610a93576000600185019050600060046000838152602001908152602001600020541415610a91576000548114610a90578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610afb8686866001611805565b505050505050565b610b0b61180b565b610b158183611889565b5050565b610b2161180b565b6000610b2b610ecf565b73ffffffffffffffffffffffffffffffffffffffff1647604051610b4e90612abf565b60006040518083038185875af1925050503d8060008114610b8b576040519150601f19603f3d011682016040523d82523d6000602084013e610b90565b606091505b5050905080610b9e57600080fd5b50565b610bbc83838360405180602001604052806000815250611367565b505050565b6060600083839050905060008167ffffffffffffffff811115610be757610be66130f2565b5b604051908082528060200260200182016040528015610c2057816020015b610c0d612045565b815260200190600190039081610c055790505b50905060005b828114610c7857610c4f868683818110610c4357610c426130c3565b5b905060200201356113da565b828281518110610c6257610c616130c3565b5b6020026020010181905250806001019050610c26565b50809250505092915050565b6000610c8f82611673565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cfe576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d5761180b565b610d6160006118a7565b565b610d6b61180b565b8060099080519060200190610d81929190612094565b5050565b60606000806000610d9585610c96565b905060008167ffffffffffffffff811115610db357610db26130f2565b5b604051908082528060200260200182016040528015610de15781602001602082028036833780820191505090505b509050610dec612045565b6000610df661166a565b90505b838614610ec157610e098161196d565b9150816040015115610e1a57610eb6565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614610e5a57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610eb55780838780600101985081518110610ea857610ea76130c3565b5b6020026020010181815250505b5b806001019050610df9565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f0890612f59565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3490612f59565b8015610f815780601f10610f5657610100808354040283529160200191610f81565b820191906000526020600020905b815481529060010190602001808311610f6457829003601f168201915b5050505050905090565b6060818310610fc6576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610fd1611998565b9050610fdb61166a565b851015610fed57610fea61166a565b94505b80841115610ff9578093505b600061100487610c96565b905084861015611027576000868603905081811015611021578091505b5061102c565b600090505b60008167ffffffffffffffff811115611048576110476130f2565b5b6040519080825280602002602001820160405280156110765781602001602082028036833780820191505090505b509050600082141561108e5780945050505050611198565b6000611099886113da565b9050600081604001516110ae57816000015190505b60008990505b8881141580156110c45750848714155b1561118a576110d28161196d565b92508260400151156110e35761117f565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461112357826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561117e5780848880600101995081518110611171576111706130c3565b5b6020026020010181815250505b5b8060010190506110b4565b508583528296505050505050505b9392505050565b6111a761180b565b60005b81518110156111eb576111d88282815181106111c9576111c86130c3565b5b60200260200101516001611889565b80806111e390612fbc565b9150506111aa565b5050565b6111f7611662565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561125c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611269611662565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611316611662565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161135b9190612b7f565b60405180910390a35050565b6113728484846107de565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113d45761139d848484846119a1565b6113d3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6113e2612045565b6113ea612045565b6113f261166a565b8310806114065750611402611998565b8310155b15611414578091505061143f565b61141d8361196d565b9050806040015115611432578091505061143f565b61143b83611b01565b9150505b919050565b606061144f82611603565b61148e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148590612bfc565b60405180910390fd5b6000611498611b21565b905060008151116114b857604051806020016040528060008152506114e3565b806114c284611bb3565b6040516020016114d3929190612a90565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61158761180b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee90612bbc565b60405180910390fd5b611600816118a7565b50565b60008161160e61166a565b1115801561161d575060005482105b801561165b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061168261166a565b1161170a576000548110156117095760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611707575b60008114156116fd5760046000836001900393508381526020019081526020016000205490506116d2565b809250505061173c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86117c9868684611d14565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611813611d1d565b73ffffffffffffffffffffffffffffffffffffffff16611831610ecf565b73ffffffffffffffffffffffffffffffffffffffff1614611887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187e90612bdc565b60405180910390fd5b565b6118a3828260405180602001604052806000815250611d25565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611975612045565b6119916004600084815260200190815260200160002054611dc2565b9050919050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119c7611662565b8786866040518563ffffffff1660e01b81526004016119e99493929190612aef565b602060405180830381600087803b158015611a0357600080fd5b505af1925050508015611a3457506040513d601f19601f82011682018060405250810190611a31919061264d565b60015b611aae573d8060008114611a64576040519150601f19603f3d011682016040523d82523d6000602084013e611a69565b606091505b50600081511415611aa6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b611b09612045565b611b1a611b1583611673565b611dc2565b9050919050565b606060098054611b3090612f59565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5c90612f59565b8015611ba95780601f10611b7e57610100808354040283529160200191611ba9565b820191906000526020600020905b815481529060010190602001808311611b8c57829003601f168201915b5050505050905090565b60606000821415611bfb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d0f565b600082905060005b60008214611c2d578080611c1690612fbc565b915050600a82611c269190612e1b565b9150611c03565b60008167ffffffffffffffff811115611c4957611c486130f2565b5b6040519080825280601f01601f191660200182016040528015611c7b5781602001600182028036833780820191505090505b5090505b60008514611d0857600182611c949190612e4c565b9150600a85611ca39190613005565b6030611caf9190612dc5565b60f81b818381518110611cc557611cc46130c3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d019190612e1b565b9450611c7f565b8093505050505b919050565b60009392505050565b600033905090565b611d2f8383611e78565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611dbd57600080549050600083820390505b611d6f60008683806001019450866119a1565b611da5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d5c578160005414611dba57600080fd5b50505b505050565b611dca612045565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b6000805490506000821415611eb9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ec660008483856117ac565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f3d83611f2e60008660006117b2565b611f3785612035565b176117da565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611fde57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611fa3565b50600082141561201a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120306000848385611805565b505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b8280546120a090612f59565b90600052602060002090601f0160209004810192826120c25760008555612109565b82601f106120db57805160ff1916838001178555612109565b82800160010185558215612109579182015b828111156121085782518255916020019190600101906120ed565b5b509050612116919061211a565b5090565b5b8082111561213357600081600090555060010161211b565b5090565b600061214a61214584612c77565b612c52565b9050808382526020820190508285602086028201111561216d5761216c61312b565b5b60005b8581101561219d5781612183888261222b565b845260208401935060208301925050600181019050612170565b5050509392505050565b60006121ba6121b584612ca3565b612c52565b9050828152602081018484840111156121d6576121d5613130565b5b6121e1848285612f17565b509392505050565b60006121fc6121f784612cd4565b612c52565b90508281526020810184848401111561221857612217613130565b5b612223848285612f17565b509392505050565b60008135905061223a81613243565b92915050565b600082601f83011261225557612254613126565b5b8135612265848260208601612137565b91505092915050565b60008083601f84011261228457612283613126565b5b8235905067ffffffffffffffff8111156122a1576122a0613121565b5b6020830191508360208202830111156122bd576122bc61312b565b5b9250929050565b6000813590506122d38161325a565b92915050565b6000813590506122e881613271565b92915050565b6000815190506122fd81613271565b92915050565b600082601f83011261231857612317613126565b5b81356123288482602086016121a7565b91505092915050565b600082601f83011261234657612345613126565b5b81356123568482602086016121e9565b91505092915050565b60008135905061236e81613288565b92915050565b60006020828403121561238a5761238961313a565b5b60006123988482850161222b565b91505092915050565b600080604083850312156123b8576123b761313a565b5b60006123c68582860161222b565b92505060206123d78582860161222b565b9150509250929050565b6000806000606084860312156123fa576123f961313a565b5b60006124088682870161222b565b93505060206124198682870161222b565b925050604061242a8682870161235f565b9150509250925092565b6000806000806080858703121561244e5761244d61313a565b5b600061245c8782880161222b565b945050602061246d8782880161222b565b935050604061247e8782880161235f565b925050606085013567ffffffffffffffff81111561249f5761249e613135565b5b6124ab87828801612303565b91505092959194509250565b600080604083850312156124ce576124cd61313a565b5b60006124dc8582860161222b565b92505060206124ed858286016122c4565b9150509250929050565b6000806040838503121561250e5761250d61313a565b5b600061251c8582860161222b565b925050602061252d8582860161235f565b9150509250929050565b6000806000606084860312156125505761254f61313a565b5b600061255e8682870161222b565b935050602061256f8682870161235f565b92505060406125808682870161235f565b9150509250925092565b6000602082840312156125a05761259f61313a565b5b600082013567ffffffffffffffff8111156125be576125bd613135565b5b6125ca84828501612240565b91505092915050565b600080602083850312156125ea576125e961313a565b5b600083013567ffffffffffffffff81111561260857612607613135565b5b6126148582860161226e565b92509250509250929050565b6000602082840312156126365761263561313a565b5b6000612644848285016122d9565b91505092915050565b6000602082840312156126635761266261313a565b5b6000612671848285016122ee565b91505092915050565b6000602082840312156126905761268f61313a565b5b600082013567ffffffffffffffff8111156126ae576126ad613135565b5b6126ba84828501612331565b91505092915050565b6000602082840312156126d9576126d861313a565b5b60006126e78482850161235f565b91505092915050565b600080604083850312156127075761270661313a565b5b60006127158582860161235f565b92505060206127268582860161222b565b9150509250929050565b600061273c83836129aa565b60808301905092915050565b60006127548383612a63565b60208301905092915050565b61276981612e80565b82525050565b61277881612e80565b82525050565b600061278982612d25565b6127938185612d6b565b935061279e83612d05565b8060005b838110156127cf5781516127b68882612730565b97506127c183612d51565b9250506001810190506127a2565b5085935050505092915050565b60006127e782612d30565b6127f18185612d7c565b93506127fc83612d15565b8060005b8381101561282d5781516128148882612748565b975061281f83612d5e565b925050600181019050612800565b5085935050505092915050565b61284381612e92565b82525050565b61285281612e92565b82525050565b600061286382612d3b565b61286d8185612d8d565b935061287d818560208601612f26565b6128868161313f565b840191505092915050565b600061289c82612d46565b6128a68185612da9565b93506128b6818560208601612f26565b6128bf8161313f565b840191505092915050565b60006128d582612d46565b6128df8185612dba565b93506128ef818560208601612f26565b80840191505092915050565b6000612908602683612da9565b915061291382613150565b604082019050919050565b600061292b600583612dba565b91506129368261319f565b600582019050919050565b600061294e602083612da9565b9150612959826131c8565b602082019050919050565b6000612971602f83612da9565b915061297c826131f1565b604082019050919050565b6000612994600083612d9e565b915061299f82613240565b600082019050919050565b6080820160008201516129c06000850182612760565b5060208201516129d36020850182612a81565b5060408201516129e6604085018261283a565b5060608201516129f96060850182612a54565b50505050565b608082016000820151612a156000850182612760565b506020820151612a286020850182612a81565b506040820151612a3b604085018261283a565b506060820151612a4e6060850182612a54565b50505050565b612a5d81612eea565b82525050565b612a6c81612ef9565b82525050565b612a7b81612ef9565b82525050565b612a8a81612f03565b82525050565b6000612a9c82856128ca565b9150612aa882846128ca565b9150612ab38261291e565b91508190509392505050565b6000612aca82612987565b9150819050919050565b6000602082019050612ae9600083018461276f565b92915050565b6000608082019050612b04600083018761276f565b612b11602083018661276f565b612b1e6040830185612a72565b8181036060830152612b308184612858565b905095945050505050565b60006020820190508181036000830152612b55818461277e565b905092915050565b60006020820190508181036000830152612b7781846127dc565b905092915050565b6000602082019050612b946000830184612849565b92915050565b60006020820190508181036000830152612bb48184612891565b905092915050565b60006020820190508181036000830152612bd5816128fb565b9050919050565b60006020820190508181036000830152612bf581612941565b9050919050565b60006020820190508181036000830152612c1581612964565b9050919050565b6000608082019050612c3160008301846129ff565b92915050565b6000602082019050612c4c6000830184612a72565b92915050565b6000612c5c612c6d565b9050612c688282612f8b565b919050565b6000604051905090565b600067ffffffffffffffff821115612c9257612c916130f2565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612cbe57612cbd6130f2565b5b612cc78261313f565b9050602081019050919050565b600067ffffffffffffffff821115612cef57612cee6130f2565b5b612cf88261313f565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612dd082612ef9565b9150612ddb83612ef9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e1057612e0f613036565b5b828201905092915050565b6000612e2682612ef9565b9150612e3183612ef9565b925082612e4157612e40613065565b5b828204905092915050565b6000612e5782612ef9565b9150612e6283612ef9565b925082821015612e7557612e74613036565b5b828203905092915050565b6000612e8b82612eca565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015612f44578082015181840152602081019050612f29565b83811115612f53576000848401525b50505050565b60006002820490506001821680612f7157607f821691505b60208210811415612f8557612f84613094565b5b50919050565b612f948261313f565b810181811067ffffffffffffffff82111715612fb357612fb26130f2565b5b80604052505050565b6000612fc782612ef9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ffa57612ff9613036565b5b600182019050919050565b600061301082612ef9565b915061301b83612ef9565b92508261302b5761302a613065565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b61324c81612e80565b811461325757600080fd5b50565b61326381612e92565b811461326e57600080fd5b50565b61327a81612e9e565b811461328557600080fd5b50565b61329181612ef9565b811461329c57600080fd5b5056fea264697066735822122092ced56709f253a53525c430af8289e22c5517bdd26bc2ec79b8d9db2c3b00a964736f6c6343000807003368747470733a2f2f626166796265696234657379726c686e35677765627361616f647279626f35786e716c37646775677165707a7562627966746c6e346f35626a796d2e697066732e6e667473746f726167652e6c696e6b2f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101735760003560e01c8063715018a6116100de5780639edfbec911610097578063c23dc68f11610071578063c23dc68f14610434578063c87b56dd14610464578063e985e9c514610494578063f2fde38b146104c457610173565b80639edfbec9146103e0578063a22cb465146103fc578063b88d4fde1461041857610173565b8063715018a61461031e5780637ec4a659146103285780638462151c146103445780638da5cb5b1461037457806395d89b411461039257806399a2557a146103b057610173565b80632d1a12f6116101305780632d1a12f61461024c5780633ccfd60b1461026857806342842e0e146102725780635bbb21771461028e5780636352211e146102be57806370a08231146102ee57610173565b806301ffc9a71461017857806306fdde03146101a8578063081812fc146101c6578063095ea7b3146101f657806318160ddd1461021257806323b872dd14610230575b600080fd5b610192600480360381019061018d9190612620565b6104e0565b60405161019f9190612b7f565b60405180910390f35b6101b0610572565b6040516101bd9190612b9a565b60405180910390f35b6101e060048036038101906101db91906126c3565b610604565b6040516101ed9190612ad4565b60405180910390f35b610210600480360381019061020b91906124f7565b610683565b005b61021a6107c7565b6040516102279190612c37565b60405180910390f35b61024a600480360381019061024591906123e1565b6107de565b005b610266600480360381019061026191906126f0565b610b03565b005b610270610b19565b005b61028c600480360381019061028791906123e1565b610ba1565b005b6102a860048036038101906102a391906125d3565b610bc1565b6040516102b59190612b3b565b60405180910390f35b6102d860048036038101906102d391906126c3565b610c84565b6040516102e59190612ad4565b60405180910390f35b61030860048036038101906103039190612374565b610c96565b6040516103159190612c37565b60405180910390f35b610326610d4f565b005b610342600480360381019061033d919061267a565b610d63565b005b61035e60048036038101906103599190612374565b610d85565b60405161036b9190612b5d565b60405180910390f35b61037c610ecf565b6040516103899190612ad4565b60405180910390f35b61039a610ef9565b6040516103a79190612b9a565b60405180910390f35b6103ca60048036038101906103c59190612537565b610f8b565b6040516103d79190612b5d565b60405180910390f35b6103fa60048036038101906103f5919061258a565b61119f565b005b610416600480360381019061041191906124b7565b6111ef565b005b610432600480360381019061042d9190612434565b611367565b005b61044e600480360381019061044991906126c3565b6113da565b60405161045b9190612c1c565b60405180910390f35b61047e600480360381019061047991906126c3565b611444565b60405161048b9190612b9a565b60405180910390f35b6104ae60048036038101906104a991906123a1565b6114eb565b6040516104bb9190612b7f565b60405180910390f35b6104de60048036038101906104d99190612374565b61157f565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061053b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061056b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461058190612f59565b80601f01602080910402602001604051908101604052809291908181526020018280546105ad90612f59565b80156105fa5780601f106105cf576101008083540402835291602001916105fa565b820191906000526020600020905b8154815290600101906020018083116105dd57829003601f168201915b5050505050905090565b600061060f82611603565b610645576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061068e82610c84565b90508073ffffffffffffffffffffffffffffffffffffffff166106af611662565b73ffffffffffffffffffffffffffffffffffffffff1614610712576106db816106d6611662565b6114eb565b610711576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006107d161166a565b6001546000540303905090565b60006107e982611673565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610850576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061085c84611741565b91509150610872818761086d611662565b611768565b6108be5761088786610882611662565b6114eb565b6108bd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610925576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61093286868660016117ac565b801561093d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610a0b856109e78888876117b2565b7c0200000000000000000000000000000000000000000000000000000000176117da565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610a93576000600185019050600060046000838152602001908152602001600020541415610a91576000548114610a90578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610afb8686866001611805565b505050505050565b610b0b61180b565b610b158183611889565b5050565b610b2161180b565b6000610b2b610ecf565b73ffffffffffffffffffffffffffffffffffffffff1647604051610b4e90612abf565b60006040518083038185875af1925050503d8060008114610b8b576040519150601f19603f3d011682016040523d82523d6000602084013e610b90565b606091505b5050905080610b9e57600080fd5b50565b610bbc83838360405180602001604052806000815250611367565b505050565b6060600083839050905060008167ffffffffffffffff811115610be757610be66130f2565b5b604051908082528060200260200182016040528015610c2057816020015b610c0d612045565b815260200190600190039081610c055790505b50905060005b828114610c7857610c4f868683818110610c4357610c426130c3565b5b905060200201356113da565b828281518110610c6257610c616130c3565b5b6020026020010181905250806001019050610c26565b50809250505092915050565b6000610c8f82611673565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cfe576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d5761180b565b610d6160006118a7565b565b610d6b61180b565b8060099080519060200190610d81929190612094565b5050565b60606000806000610d9585610c96565b905060008167ffffffffffffffff811115610db357610db26130f2565b5b604051908082528060200260200182016040528015610de15781602001602082028036833780820191505090505b509050610dec612045565b6000610df661166a565b90505b838614610ec157610e098161196d565b9150816040015115610e1a57610eb6565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614610e5a57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610eb55780838780600101985081518110610ea857610ea76130c3565b5b6020026020010181815250505b5b806001019050610df9565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f0890612f59565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3490612f59565b8015610f815780601f10610f5657610100808354040283529160200191610f81565b820191906000526020600020905b815481529060010190602001808311610f6457829003601f168201915b5050505050905090565b6060818310610fc6576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610fd1611998565b9050610fdb61166a565b851015610fed57610fea61166a565b94505b80841115610ff9578093505b600061100487610c96565b905084861015611027576000868603905081811015611021578091505b5061102c565b600090505b60008167ffffffffffffffff811115611048576110476130f2565b5b6040519080825280602002602001820160405280156110765781602001602082028036833780820191505090505b509050600082141561108e5780945050505050611198565b6000611099886113da565b9050600081604001516110ae57816000015190505b60008990505b8881141580156110c45750848714155b1561118a576110d28161196d565b92508260400151156110e35761117f565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461112357826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561117e5780848880600101995081518110611171576111706130c3565b5b6020026020010181815250505b5b8060010190506110b4565b508583528296505050505050505b9392505050565b6111a761180b565b60005b81518110156111eb576111d88282815181106111c9576111c86130c3565b5b60200260200101516001611889565b80806111e390612fbc565b9150506111aa565b5050565b6111f7611662565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561125c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611269611662565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611316611662565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161135b9190612b7f565b60405180910390a35050565b6113728484846107de565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113d45761139d848484846119a1565b6113d3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6113e2612045565b6113ea612045565b6113f261166a565b8310806114065750611402611998565b8310155b15611414578091505061143f565b61141d8361196d565b9050806040015115611432578091505061143f565b61143b83611b01565b9150505b919050565b606061144f82611603565b61148e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148590612bfc565b60405180910390fd5b6000611498611b21565b905060008151116114b857604051806020016040528060008152506114e3565b806114c284611bb3565b6040516020016114d3929190612a90565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61158761180b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee90612bbc565b60405180910390fd5b611600816118a7565b50565b60008161160e61166a565b1115801561161d575060005482105b801561165b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061168261166a565b1161170a576000548110156117095760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611707575b60008114156116fd5760046000836001900393508381526020019081526020016000205490506116d2565b809250505061173c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86117c9868684611d14565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611813611d1d565b73ffffffffffffffffffffffffffffffffffffffff16611831610ecf565b73ffffffffffffffffffffffffffffffffffffffff1614611887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187e90612bdc565b60405180910390fd5b565b6118a3828260405180602001604052806000815250611d25565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611975612045565b6119916004600084815260200190815260200160002054611dc2565b9050919050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119c7611662565b8786866040518563ffffffff1660e01b81526004016119e99493929190612aef565b602060405180830381600087803b158015611a0357600080fd5b505af1925050508015611a3457506040513d601f19601f82011682018060405250810190611a31919061264d565b60015b611aae573d8060008114611a64576040519150601f19603f3d011682016040523d82523d6000602084013e611a69565b606091505b50600081511415611aa6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b611b09612045565b611b1a611b1583611673565b611dc2565b9050919050565b606060098054611b3090612f59565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5c90612f59565b8015611ba95780601f10611b7e57610100808354040283529160200191611ba9565b820191906000526020600020905b815481529060010190602001808311611b8c57829003601f168201915b5050505050905090565b60606000821415611bfb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d0f565b600082905060005b60008214611c2d578080611c1690612fbc565b915050600a82611c269190612e1b565b9150611c03565b60008167ffffffffffffffff811115611c4957611c486130f2565b5b6040519080825280601f01601f191660200182016040528015611c7b5781602001600182028036833780820191505090505b5090505b60008514611d0857600182611c949190612e4c565b9150600a85611ca39190613005565b6030611caf9190612dc5565b60f81b818381518110611cc557611cc46130c3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d019190612e1b565b9450611c7f565b8093505050505b919050565b60009392505050565b600033905090565b611d2f8383611e78565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611dbd57600080549050600083820390505b611d6f60008683806001019450866119a1565b611da5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d5c578160005414611dba57600080fd5b50505b505050565b611dca612045565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b6000805490506000821415611eb9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ec660008483856117ac565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f3d83611f2e60008660006117b2565b611f3785612035565b176117da565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611fde57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611fa3565b50600082141561201a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120306000848385611805565b505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b8280546120a090612f59565b90600052602060002090601f0160209004810192826120c25760008555612109565b82601f106120db57805160ff1916838001178555612109565b82800160010185558215612109579182015b828111156121085782518255916020019190600101906120ed565b5b509050612116919061211a565b5090565b5b8082111561213357600081600090555060010161211b565b5090565b600061214a61214584612c77565b612c52565b9050808382526020820190508285602086028201111561216d5761216c61312b565b5b60005b8581101561219d5781612183888261222b565b845260208401935060208301925050600181019050612170565b5050509392505050565b60006121ba6121b584612ca3565b612c52565b9050828152602081018484840111156121d6576121d5613130565b5b6121e1848285612f17565b509392505050565b60006121fc6121f784612cd4565b612c52565b90508281526020810184848401111561221857612217613130565b5b612223848285612f17565b509392505050565b60008135905061223a81613243565b92915050565b600082601f83011261225557612254613126565b5b8135612265848260208601612137565b91505092915050565b60008083601f84011261228457612283613126565b5b8235905067ffffffffffffffff8111156122a1576122a0613121565b5b6020830191508360208202830111156122bd576122bc61312b565b5b9250929050565b6000813590506122d38161325a565b92915050565b6000813590506122e881613271565b92915050565b6000815190506122fd81613271565b92915050565b600082601f83011261231857612317613126565b5b81356123288482602086016121a7565b91505092915050565b600082601f83011261234657612345613126565b5b81356123568482602086016121e9565b91505092915050565b60008135905061236e81613288565b92915050565b60006020828403121561238a5761238961313a565b5b60006123988482850161222b565b91505092915050565b600080604083850312156123b8576123b761313a565b5b60006123c68582860161222b565b92505060206123d78582860161222b565b9150509250929050565b6000806000606084860312156123fa576123f961313a565b5b60006124088682870161222b565b93505060206124198682870161222b565b925050604061242a8682870161235f565b9150509250925092565b6000806000806080858703121561244e5761244d61313a565b5b600061245c8782880161222b565b945050602061246d8782880161222b565b935050604061247e8782880161235f565b925050606085013567ffffffffffffffff81111561249f5761249e613135565b5b6124ab87828801612303565b91505092959194509250565b600080604083850312156124ce576124cd61313a565b5b60006124dc8582860161222b565b92505060206124ed858286016122c4565b9150509250929050565b6000806040838503121561250e5761250d61313a565b5b600061251c8582860161222b565b925050602061252d8582860161235f565b9150509250929050565b6000806000606084860312156125505761254f61313a565b5b600061255e8682870161222b565b935050602061256f8682870161235f565b92505060406125808682870161235f565b9150509250925092565b6000602082840312156125a05761259f61313a565b5b600082013567ffffffffffffffff8111156125be576125bd613135565b5b6125ca84828501612240565b91505092915050565b600080602083850312156125ea576125e961313a565b5b600083013567ffffffffffffffff81111561260857612607613135565b5b6126148582860161226e565b92509250509250929050565b6000602082840312156126365761263561313a565b5b6000612644848285016122d9565b91505092915050565b6000602082840312156126635761266261313a565b5b6000612671848285016122ee565b91505092915050565b6000602082840312156126905761268f61313a565b5b600082013567ffffffffffffffff8111156126ae576126ad613135565b5b6126ba84828501612331565b91505092915050565b6000602082840312156126d9576126d861313a565b5b60006126e78482850161235f565b91505092915050565b600080604083850312156127075761270661313a565b5b60006127158582860161235f565b92505060206127268582860161222b565b9150509250929050565b600061273c83836129aa565b60808301905092915050565b60006127548383612a63565b60208301905092915050565b61276981612e80565b82525050565b61277881612e80565b82525050565b600061278982612d25565b6127938185612d6b565b935061279e83612d05565b8060005b838110156127cf5781516127b68882612730565b97506127c183612d51565b9250506001810190506127a2565b5085935050505092915050565b60006127e782612d30565b6127f18185612d7c565b93506127fc83612d15565b8060005b8381101561282d5781516128148882612748565b975061281f83612d5e565b925050600181019050612800565b5085935050505092915050565b61284381612e92565b82525050565b61285281612e92565b82525050565b600061286382612d3b565b61286d8185612d8d565b935061287d818560208601612f26565b6128868161313f565b840191505092915050565b600061289c82612d46565b6128a68185612da9565b93506128b6818560208601612f26565b6128bf8161313f565b840191505092915050565b60006128d582612d46565b6128df8185612dba565b93506128ef818560208601612f26565b80840191505092915050565b6000612908602683612da9565b915061291382613150565b604082019050919050565b600061292b600583612dba565b91506129368261319f565b600582019050919050565b600061294e602083612da9565b9150612959826131c8565b602082019050919050565b6000612971602f83612da9565b915061297c826131f1565b604082019050919050565b6000612994600083612d9e565b915061299f82613240565b600082019050919050565b6080820160008201516129c06000850182612760565b5060208201516129d36020850182612a81565b5060408201516129e6604085018261283a565b5060608201516129f96060850182612a54565b50505050565b608082016000820151612a156000850182612760565b506020820151612a286020850182612a81565b506040820151612a3b604085018261283a565b506060820151612a4e6060850182612a54565b50505050565b612a5d81612eea565b82525050565b612a6c81612ef9565b82525050565b612a7b81612ef9565b82525050565b612a8a81612f03565b82525050565b6000612a9c82856128ca565b9150612aa882846128ca565b9150612ab38261291e565b91508190509392505050565b6000612aca82612987565b9150819050919050565b6000602082019050612ae9600083018461276f565b92915050565b6000608082019050612b04600083018761276f565b612b11602083018661276f565b612b1e6040830185612a72565b8181036060830152612b308184612858565b905095945050505050565b60006020820190508181036000830152612b55818461277e565b905092915050565b60006020820190508181036000830152612b7781846127dc565b905092915050565b6000602082019050612b946000830184612849565b92915050565b60006020820190508181036000830152612bb48184612891565b905092915050565b60006020820190508181036000830152612bd5816128fb565b9050919050565b60006020820190508181036000830152612bf581612941565b9050919050565b60006020820190508181036000830152612c1581612964565b9050919050565b6000608082019050612c3160008301846129ff565b92915050565b6000602082019050612c4c6000830184612a72565b92915050565b6000612c5c612c6d565b9050612c688282612f8b565b919050565b6000604051905090565b600067ffffffffffffffff821115612c9257612c916130f2565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612cbe57612cbd6130f2565b5b612cc78261313f565b9050602081019050919050565b600067ffffffffffffffff821115612cef57612cee6130f2565b5b612cf88261313f565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612dd082612ef9565b9150612ddb83612ef9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e1057612e0f613036565b5b828201905092915050565b6000612e2682612ef9565b9150612e3183612ef9565b925082612e4157612e40613065565b5b828204905092915050565b6000612e5782612ef9565b9150612e6283612ef9565b925082821015612e7557612e74613036565b5b828203905092915050565b6000612e8b82612eca565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015612f44578082015181840152602081019050612f29565b83811115612f53576000848401525b50505050565b60006002820490506001821680612f7157607f821691505b60208210811415612f8557612f84613094565b5b50919050565b612f948261313f565b810181811067ffffffffffffffff82111715612fb357612fb26130f2565b5b80604052505050565b6000612fc782612ef9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ffa57612ff9613036565b5b600182019050919050565b600061301082612ef9565b915061301b83612ef9565b92508261302b5761302a613065565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b61324c81612e80565b811461325757600080fd5b50565b61326381612e92565b811461326e57600080fd5b50565b61327a81612e9e565b811461328557600080fd5b50565b61329181612ef9565b811461329c57600080fd5b5056fea264697066735822122092ced56709f253a53525c430af8289e22c5517bdd26bc2ec79b8d9db2c3b00a964736f6c63430008070033
Deployed Bytecode Sourcemap
65966:1401:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20932:639;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21834:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28317:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27758:400;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17585:323;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32024:2817;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66240:120;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67227:137;;;:::i;:::-;;34937:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57515:528;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23227:152;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18769:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65074:103;;;:::i;:::-;;67121:100;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61391:900;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64426:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22010:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58431:2513;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66461:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28875:308;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35720:399;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56928:428;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66632:373;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29340:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65332:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20932:639;21017:4;21356:10;21341:25;;:11;:25;;;;:102;;;;21433:10;21418:25;;:11;:25;;;;21341:102;:179;;;;21510:10;21495:25;;:11;:25;;;;21341:179;21321:199;;20932:639;;;:::o;21834:100::-;21888:13;21921:5;21914:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21834:100;:::o;28317:218::-;28393:7;28418:16;28426:7;28418;:16::i;:::-;28413:64;;28443:34;;;;;;;;;;;;;;28413:64;28497:15;:24;28513:7;28497:24;;;;;;;;;;;:30;;;;;;;;;;;;28490:37;;28317:218;;;:::o;27758:400::-;27839:13;27855:16;27863:7;27855;:16::i;:::-;27839:32;;27911:5;27888:28;;:19;:17;:19::i;:::-;:28;;;27884:175;;27936:44;27953:5;27960:19;:17;:19::i;:::-;27936:16;:44::i;:::-;27931:128;;28008:35;;;;;;;;;;;;;;27931:128;27884:175;28104:2;28071:15;:24;28087:7;28071:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;28142:7;28138:2;28122:28;;28131:5;28122:28;;;;;;;;;;;;27828:330;27758:400;;:::o;17585:323::-;17646:7;17874:15;:13;:15::i;:::-;17859:12;;17843:13;;:28;:46;17836:53;;17585:323;:::o;32024:2817::-;32158:27;32188;32207:7;32188:18;:27::i;:::-;32158:57;;32273:4;32232:45;;32248:19;32232:45;;;32228:86;;32286:28;;;;;;;;;;;;;;32228:86;32328:27;32357:23;32384:35;32411:7;32384:26;:35::i;:::-;32327:92;;;;32519:68;32544:15;32561:4;32567:19;:17;:19::i;:::-;32519:24;:68::i;:::-;32514:180;;32607:43;32624:4;32630:19;:17;:19::i;:::-;32607:16;:43::i;:::-;32602:92;;32659:35;;;;;;;;;;;;;;32602:92;32514:180;32725:1;32711:16;;:2;:16;;;32707:52;;;32736:23;;;;;;;;;;;;;;32707:52;32772:43;32794:4;32800:2;32804:7;32813:1;32772:21;:43::i;:::-;32908:15;32905:160;;;33048:1;33027:19;33020:30;32905:160;33445:18;:24;33464:4;33445:24;;;;;;;;;;;;;;;;33443:26;;;;;;;;;;;;33514:18;:22;33533:2;33514:22;;;;;;;;;;;;;;;;33512:24;;;;;;;;;;;33836:146;33873:2;33922:45;33937:4;33943:2;33947:19;33922:14;:45::i;:::-;13984:8;33894:73;33836:18;:146::i;:::-;33807:17;:26;33825:7;33807:26;;;;;;;;;;;:175;;;;34153:1;13984:8;34102:19;:47;:52;34098:627;;;34175:19;34207:1;34197:7;:11;34175:33;;34364:1;34330:17;:30;34348:11;34330:30;;;;;;;;;;;;:35;34326:384;;;34468:13;;34453:11;:28;34449:242;;34648:19;34615:17;:30;34633:11;34615:30;;;;;;;;;;;:52;;;;34449:242;34326:384;34156:569;34098:627;34772:7;34768:2;34753:27;;34762:4;34753:27;;;;;;;;;;;;34791:42;34812:4;34818:2;34822:7;34831:1;34791:20;:42::i;:::-;32147:2694;;;32024:2817;;;:::o;66240:120::-;64312:13;:11;:13::i;:::-;66321:33:::1;66331:9;66342:11;66321:9;:33::i;:::-;66240:120:::0;;:::o;67227:137::-;64312:13;:11;:13::i;:::-;67272:7:::1;67293;:5;:7::i;:::-;67285:21;;67314;67285:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67271:69;;;67355:2;67347:11;;;::::0;::::1;;67264:100;67227:137::o:0;34937:185::-;35075:39;35092:4;35098:2;35102:7;35075:39;;;;;;;;;;;;:16;:39::i;:::-;34937:185;;;:::o;57515:528::-;57659:23;57725:22;57750:8;;:15;;57725:40;;57780:34;57838:14;57817:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;57780:73;;57873:9;57868:125;57889:14;57884:1;:19;57868:125;;57945:32;57965:8;;57974:1;57965:11;;;;;;;:::i;:::-;;;;;;;;57945:19;:32::i;:::-;57929:10;57940:1;57929:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;57905:3;;;;;57868:125;;;;58014:10;58007:17;;;;57515:528;;;;:::o;23227:152::-;23299:7;23342:27;23361:7;23342:18;:27::i;:::-;23319:52;;23227:152;;;:::o;18769:233::-;18841:7;18882:1;18865:19;;:5;:19;;;18861:60;;;18893:28;;;;;;;;;;;;;;18861:60;12928:13;18939:18;:25;18958:5;18939:25;;;;;;;;;;;;;;;;:55;18932:62;;18769:233;;;:::o;65074:103::-;64312:13;:11;:13::i;:::-;65139:30:::1;65166:1;65139:18;:30::i;:::-;65074:103::o:0;67121:100::-;64312:13;:11;:13::i;:::-;67205:10:::1;67193:9;:22;;;;;;;;;;;;:::i;:::-;;67121:100:::0;:::o;61391:900::-;61469:16;61523:19;61557:25;61597:22;61622:16;61632:5;61622:9;:16::i;:::-;61597:41;;61653:25;61695:14;61681:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61653:57;;61725:31;;:::i;:::-;61776:9;61788:15;:13;:15::i;:::-;61776:27;;61771:472;61820:14;61805:11;:29;61771:472;;61872:15;61885:1;61872:12;:15::i;:::-;61860:27;;61910:9;:16;;;61906:73;;;61951:8;;61906:73;62027:1;62001:28;;:9;:14;;;:28;;;61997:111;;62074:9;:14;;;62054:34;;61997:111;62151:5;62130:26;;:17;:26;;;62126:102;;;62207:1;62181:8;62190:13;;;;;;62181:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;62126:102;61771:472;61836:3;;;;;61771:472;;;;62264:8;62257:15;;;;;;;61391:900;;;:::o;64426:87::-;64472:7;64499:6;;;;;;;;;;;64492:13;;64426:87;:::o;22010:104::-;22066:13;22099:7;22092:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22010:104;:::o;58431:2513::-;58574:16;58641:4;58632:5;:13;58628:45;;58654:19;;;;;;;;;;;;;;58628:45;58688:19;58722:17;58742:14;:12;:14::i;:::-;58722:34;;58842:15;:13;:15::i;:::-;58834:5;:23;58830:87;;;58886:15;:13;:15::i;:::-;58878:23;;58830:87;58993:9;58986:4;:16;58982:73;;;59030:9;59023:16;;58982:73;59069:25;59097:16;59107:5;59097:9;:16::i;:::-;59069:44;;59291:4;59283:5;:12;59279:278;;;59316:19;59345:5;59338:4;:12;59316:34;;59387:17;59373:11;:31;59369:111;;;59449:11;59429:31;;59369:111;59297:198;59279:278;;;59540:1;59520:21;;59279:278;59571:25;59613:17;59599:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59571:60;;59671:1;59650:17;:22;59646:78;;;59700:8;59693:15;;;;;;;;59646:78;59868:31;59902:26;59922:5;59902:19;:26::i;:::-;59868:60;;59943:25;60188:9;:16;;;60183:92;;60245:9;:14;;;60225:34;;60183:92;60294:9;60306:5;60294:17;;60289:478;60318:4;60313:1;:9;;:45;;;;;60341:17;60326:11;:32;;60313:45;60289:478;;;60396:15;60409:1;60396:12;:15::i;:::-;60384:27;;60434:9;:16;;;60430:73;;;60475:8;;60430:73;60551:1;60525:28;;:9;:14;;;:28;;;60521:111;;60598:9;:14;;;60578:34;;60521:111;60675:5;60654:26;;:17;:26;;;60650:102;;;60731:1;60705:8;60714:13;;;;;;60705:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;60650:102;60289:478;60360:3;;;;;60289:478;;;;60869:11;60859:8;60852:29;60917:8;60910:15;;;;;;;;58431:2513;;;;;;:::o;66461:165::-;64312:13;:11;:13::i;:::-;66540:6:::1;66536:87;66555:10;:17;66552:1;:20;66536:87;;;66587:27;66597:10;66608:1;66597:13;;;;;;;;:::i;:::-;;;;;;;;66612:1;66587:9;:27::i;:::-;66574:3;;;;;:::i;:::-;;;;66536:87;;;;66461:165:::0;:::o;28875:308::-;28986:19;:17;:19::i;:::-;28974:31;;:8;:31;;;28970:61;;;29014:17;;;;;;;;;;;;;;28970:61;29096:8;29044:18;:39;29063:19;:17;:19::i;:::-;29044:39;;;;;;;;;;;;;;;:49;29084:8;29044:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;29156:8;29120:55;;29135:19;:17;:19::i;:::-;29120:55;;;29166:8;29120:55;;;;;;:::i;:::-;;;;;;;;28875:308;;:::o;35720:399::-;35887:31;35900:4;35906:2;35910:7;35887:12;:31::i;:::-;35951:1;35933:2;:14;;;:19;35929:183;;35972:56;36003:4;36009:2;36013:7;36022:5;35972:30;:56::i;:::-;35967:145;;36056:40;;;;;;;;;;;;;;35967:145;35929:183;35720:399;;;;:::o;56928:428::-;57012:21;;:::i;:::-;57046:31;;:::i;:::-;57102:15;:13;:15::i;:::-;57092:7;:25;:54;;;;57132:14;:12;:14::i;:::-;57121:7;:25;;57092:54;57088:103;;;57170:9;57163:16;;;;;57088:103;57213:21;57226:7;57213:12;:21::i;:::-;57201:33;;57249:9;:16;;;57245:65;;;57289:9;57282:16;;;;;57245:65;57327:21;57340:7;57327:12;:21::i;:::-;57320:28;;;56928:428;;;;:::o;66632:373::-;66706:13;66736:17;66744:8;66736:7;:17::i;:::-;66728:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;66816:28;66847:10;:8;:10::i;:::-;66816:41;;66902:1;66877:14;66871:28;:32;:128;;;;;;;;;;;;;;;;;66939:14;66955:19;:8;:17;:19::i;:::-;66922:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66871:128;66864:135;;;66632:373;;;:::o;29340:164::-;29437:4;29461:18;:25;29480:5;29461:25;;;;;;;;;;;;;;;:35;29487:8;29461:35;;;;;;;;;;;;;;;;;;;;;;;;;29454:42;;29340:164;;;;:::o;65332:201::-;64312:13;:11;:13::i;:::-;65441:1:::1;65421:22;;:8;:22;;;;65413:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;65497:28;65516:8;65497:18;:28::i;:::-;65332:201:::0;:::o;29762:282::-;29827:4;29883:7;29864:15;:13;:15::i;:::-;:26;;:66;;;;;29917:13;;29907:7;:23;29864:66;:153;;;;;30016:1;13704:8;29968:17;:26;29986:7;29968:26;;;;;;;;;;;;:44;:49;29864:153;29844:173;;29762:282;;;:::o;51528:105::-;51588:7;51615:10;51608:17;;51528:105;:::o;66368:87::-;66425:7;66448:1;66441:8;;66368:87;:::o;24382:1275::-;24449:7;24469:12;24484:7;24469:22;;24552:4;24533:15;:13;:15::i;:::-;:23;24529:1061;;24586:13;;24579:4;:20;24575:1015;;;24624:14;24641:17;:23;24659:4;24641:23;;;;;;;;;;;;24624:40;;24758:1;13704:8;24730:6;:24;:29;24726:845;;;25395:113;25412:1;25402:6;:11;25395:113;;;25455:17;:25;25473:6;;;;;;;25455:25;;;;;;;;;;;;25446:34;;25395:113;;;25541:6;25534:13;;;;;;24726:845;24601:989;24575:1015;24529:1061;25618:31;;;;;;;;;;;;;;24382:1275;;;;:::o;30925:479::-;31027:27;31056:23;31097:38;31138:15;:24;31154:7;31138:24;;;;;;;;;;;31097:65;;31309:18;31286:41;;31366:19;31360:26;31341:45;;31271:126;30925:479;;;:::o;30153:659::-;30302:11;30467:16;30460:5;30456:28;30447:37;;30627:16;30616:9;30612:32;30599:45;;30777:15;30766:9;30763:30;30755:5;30744:9;30741:20;30738:56;30728:66;;30153:659;;;;;:::o;36781:159::-;;;;;:::o;50837:311::-;50972:7;50992:16;14108:3;51018:19;:41;;50992:68;;14108:3;51086:31;51097:4;51103:2;51107:9;51086:10;:31::i;:::-;51078:40;;:62;;51071:69;;;50837:311;;;;;:::o;26205:450::-;26285:14;26453:16;26446:5;26442:28;26433:37;;26630:5;26616:11;26591:23;26587:41;26584:52;26577:5;26574:63;26564:73;;26205:450;;;;:::o;37605:158::-;;;;;:::o;64591:132::-;64666:12;:10;:12::i;:::-;64655:23;;:7;:5;:7::i;:::-;:23;;;64647:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64591:132::o;45360:112::-;45437:27;45447:2;45451:8;45437:27;;;;;;;;;;;;:9;:27::i;:::-;45360:112;;:::o;65693:191::-;65767:16;65786:6;;;;;;;;;;;65767:25;;65812:8;65803:6;;:17;;;;;;;;;;;;;;;;;;65867:8;65836:40;;65857:8;65836:40;;;;;;;;;;;;65756:128;65693:191;:::o;23830:161::-;23898:21;;:::i;:::-;23939:44;23958:17;:24;23976:5;23958:24;;;;;;;;;;;;23939:18;:44::i;:::-;23932:51;;23830:161;;;:::o;17272:103::-;17327:7;17354:13;;17347:20;;17272:103;:::o;38203:716::-;38366:4;38412:2;38387:45;;;38433:19;:17;:19::i;:::-;38454:4;38460:7;38469:5;38387:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38383:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38687:1;38670:6;:13;:18;38666:235;;;38716:40;;;;;;;;;;;;;;38666:235;38859:6;38853:13;38844:6;38840:2;38836:15;38829:38;38383:529;38556:54;;;38546:64;;;:6;:64;;;;38539:71;;;38203:716;;;;;;:::o;23568:166::-;23638:21;;:::i;:::-;23679:47;23698:27;23717:7;23698:18;:27::i;:::-;23679:18;:47::i;:::-;23672:54;;23568:166;;;:::o;67011:104::-;67071:13;67100:9;67093:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67011:104;:::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;50538:147::-;50675:6;50538:147;;;;;:::o;62977:98::-;63030:7;63057:10;63050:17;;62977:98;:::o;44587:689::-;44718:19;44724:2;44728:8;44718:5;:19::i;:::-;44797:1;44779:2;:14;;;:19;44775:483;;44819:11;44833:13;;44819:27;;44865:13;44887:8;44881:3;:14;44865:30;;44914:233;44945:62;44984:1;44988:2;44992:7;;;;;;45001:5;44945:30;:62::i;:::-;44940:167;;45043:40;;;;;;;;;;;;;;44940:167;45142:3;45134:5;:11;44914:233;;45229:3;45212:13;;:20;45208:34;;45234:8;;;45208:34;44800:458;;44775:483;44587:689;;;:::o;25756:366::-;25822:31;;:::i;:::-;25899:6;25866:9;:14;;:41;;;;;;;;;;;13587:3;25952:6;:33;;25918:9;:24;;:68;;;;;;;;;;;26044:1;13704:8;26016:6;:24;:29;;25997:9;:16;;:48;;;;;;;;;;;14108:3;26085:6;:28;;26056:9;:19;;:58;;;;;;;;;;;25756:366;;;:::o;39381:2454::-;39454:20;39477:13;;39454:36;;39517:1;39505:8;:13;39501:44;;;39527:18;;;;;;;;;;;;;;39501:44;39558:61;39588:1;39592:2;39596:12;39610:8;39558:21;:61::i;:::-;40102:1;13066:2;40072:1;:26;;40071:32;40059:8;:45;40033:18;:22;40052:2;40033:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;40381:139;40418:2;40472:33;40495:1;40499:2;40503:1;40472:14;:33::i;:::-;40439:30;40460:8;40439:20;:30::i;:::-;:66;40381:18;:139::i;:::-;40347:17;:31;40365:12;40347:31;;;;;;;;;;;:173;;;;40537:16;40568:11;40597:8;40582:12;:23;40568:37;;40852:16;40848:2;40844:25;40832:37;;41224:12;41184:8;41143:1;41081:25;41022:1;40961;40934:335;41349:1;41335:12;41331:20;41289:346;41390:3;41381:7;41378:16;41289:346;;41608:7;41598:8;41595:1;41568:25;41565:1;41562;41557:59;41443:1;41434:7;41430:15;41419:26;;41289:346;;;41293:77;41680:1;41668:8;:13;41664:45;;;41690:19;;;;;;;;;;;;;;41664:45;41742:3;41726:13;:19;;;;39807:1950;;41767:60;41796:1;41800:2;41804:12;41818:8;41767:20;:60::i;:::-;39443:2392;39381:2454;;:::o;26757:324::-;26827:14;27060:1;27050:8;27047:15;27021:24;27017:46;27007:56;;26757:324;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2141:568::-;2214:8;2224:6;2274:3;2267:4;2259:6;2255:17;2251:27;2241:122;;2282:79;;:::i;:::-;2241:122;2395:6;2382:20;2372:30;;2425:18;2417:6;2414:30;2411:117;;;2447:79;;:::i;:::-;2411:117;2561:4;2553:6;2549:17;2537:29;;2615:3;2607:4;2599:6;2595:17;2585:8;2581:32;2578:41;2575:128;;;2622:79;;:::i;:::-;2575:128;2141:568;;;;;:::o;2715:133::-;2758:5;2796:6;2783:20;2774:29;;2812:30;2836:5;2812:30;:::i;:::-;2715:133;;;;:::o;2854:137::-;2899:5;2937:6;2924:20;2915:29;;2953:32;2979:5;2953:32;:::i;:::-;2854:137;;;;:::o;2997:141::-;3053:5;3084:6;3078:13;3069:22;;3100:32;3126:5;3100:32;:::i;:::-;2997:141;;;;:::o;3157:338::-;3212:5;3261:3;3254:4;3246:6;3242:17;3238:27;3228:122;;3269:79;;:::i;:::-;3228:122;3386:6;3373:20;3411:78;3485:3;3477:6;3470:4;3462:6;3458:17;3411:78;:::i;:::-;3402:87;;3218:277;3157:338;;;;:::o;3515:340::-;3571:5;3620:3;3613:4;3605:6;3601:17;3597:27;3587:122;;3628:79;;:::i;:::-;3587:122;3745:6;3732:20;3770:79;3845:3;3837:6;3830:4;3822:6;3818:17;3770:79;:::i;:::-;3761:88;;3577:278;3515:340;;;;:::o;3861:139::-;3907:5;3945:6;3932:20;3923:29;;3961:33;3988:5;3961:33;:::i;:::-;3861:139;;;;:::o;4006:329::-;4065:6;4114:2;4102:9;4093:7;4089:23;4085:32;4082:119;;;4120:79;;:::i;:::-;4082:119;4240:1;4265:53;4310:7;4301:6;4290:9;4286:22;4265:53;:::i;:::-;4255:63;;4211:117;4006:329;;;;:::o;4341:474::-;4409:6;4417;4466:2;4454:9;4445:7;4441:23;4437:32;4434:119;;;4472:79;;:::i;:::-;4434:119;4592:1;4617:53;4662:7;4653:6;4642:9;4638:22;4617:53;:::i;:::-;4607:63;;4563:117;4719:2;4745:53;4790:7;4781:6;4770:9;4766:22;4745:53;:::i;:::-;4735:63;;4690:118;4341:474;;;;;:::o;4821:619::-;4898:6;4906;4914;4963:2;4951:9;4942:7;4938:23;4934:32;4931:119;;;4969:79;;:::i;:::-;4931:119;5089:1;5114:53;5159:7;5150:6;5139:9;5135:22;5114:53;:::i;:::-;5104:63;;5060:117;5216:2;5242:53;5287:7;5278:6;5267:9;5263:22;5242:53;:::i;:::-;5232:63;;5187:118;5344:2;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5315:118;4821:619;;;;;:::o;5446:943::-;5541:6;5549;5557;5565;5614:3;5602:9;5593:7;5589:23;5585:33;5582:120;;;5621:79;;:::i;:::-;5582:120;5741:1;5766:53;5811:7;5802:6;5791:9;5787:22;5766:53;:::i;:::-;5756:63;;5712:117;5868:2;5894:53;5939:7;5930:6;5919:9;5915:22;5894:53;:::i;:::-;5884:63;;5839:118;5996:2;6022:53;6067:7;6058:6;6047:9;6043:22;6022:53;:::i;:::-;6012:63;;5967:118;6152:2;6141:9;6137:18;6124:32;6183:18;6175:6;6172:30;6169:117;;;6205:79;;:::i;:::-;6169:117;6310:62;6364:7;6355:6;6344:9;6340:22;6310:62;:::i;:::-;6300:72;;6095:287;5446:943;;;;;;;:::o;6395:468::-;6460:6;6468;6517:2;6505:9;6496:7;6492:23;6488:32;6485:119;;;6523:79;;:::i;:::-;6485:119;6643:1;6668:53;6713:7;6704:6;6693:9;6689:22;6668:53;:::i;:::-;6658:63;;6614:117;6770:2;6796:50;6838:7;6829:6;6818:9;6814:22;6796:50;:::i;:::-;6786:60;;6741:115;6395:468;;;;;:::o;6869:474::-;6937:6;6945;6994:2;6982:9;6973:7;6969:23;6965:32;6962:119;;;7000:79;;:::i;:::-;6962:119;7120:1;7145:53;7190:7;7181:6;7170:9;7166:22;7145:53;:::i;:::-;7135:63;;7091:117;7247:2;7273:53;7318:7;7309:6;7298:9;7294:22;7273:53;:::i;:::-;7263:63;;7218:118;6869:474;;;;;:::o;7349:619::-;7426:6;7434;7442;7491:2;7479:9;7470:7;7466:23;7462:32;7459:119;;;7497:79;;:::i;:::-;7459:119;7617:1;7642:53;7687:7;7678:6;7667:9;7663:22;7642:53;:::i;:::-;7632:63;;7588:117;7744:2;7770:53;7815:7;7806:6;7795:9;7791:22;7770:53;:::i;:::-;7760:63;;7715:118;7872:2;7898:53;7943:7;7934:6;7923:9;7919:22;7898:53;:::i;:::-;7888:63;;7843:118;7349:619;;;;;:::o;7974:539::-;8058:6;8107:2;8095:9;8086:7;8082:23;8078:32;8075:119;;;8113:79;;:::i;:::-;8075:119;8261:1;8250:9;8246:17;8233:31;8291:18;8283:6;8280:30;8277:117;;;8313:79;;:::i;:::-;8277:117;8418:78;8488:7;8479:6;8468:9;8464:22;8418:78;:::i;:::-;8408:88;;8204:302;7974:539;;;;:::o;8519:559::-;8605:6;8613;8662:2;8650:9;8641:7;8637:23;8633:32;8630:119;;;8668:79;;:::i;:::-;8630:119;8816:1;8805:9;8801:17;8788:31;8846:18;8838:6;8835:30;8832:117;;;8868:79;;:::i;:::-;8832:117;8981:80;9053:7;9044:6;9033:9;9029:22;8981:80;:::i;:::-;8963:98;;;;8759:312;8519:559;;;;;:::o;9084:327::-;9142:6;9191:2;9179:9;9170:7;9166:23;9162:32;9159:119;;;9197:79;;:::i;:::-;9159:119;9317:1;9342:52;9386:7;9377:6;9366:9;9362:22;9342:52;:::i;:::-;9332:62;;9288:116;9084:327;;;;:::o;9417:349::-;9486:6;9535:2;9523:9;9514:7;9510:23;9506:32;9503:119;;;9541:79;;:::i;:::-;9503:119;9661:1;9686:63;9741:7;9732:6;9721:9;9717:22;9686:63;:::i;:::-;9676:73;;9632:127;9417:349;;;;:::o;9772:509::-;9841:6;9890:2;9878:9;9869:7;9865:23;9861:32;9858:119;;;9896:79;;:::i;:::-;9858:119;10044:1;10033:9;10029:17;10016:31;10074:18;10066:6;10063:30;10060:117;;;10096:79;;:::i;:::-;10060:117;10201:63;10256:7;10247:6;10236:9;10232:22;10201:63;:::i;:::-;10191:73;;9987:287;9772:509;;;;:::o;10287:329::-;10346:6;10395:2;10383:9;10374:7;10370:23;10366:32;10363:119;;;10401:79;;:::i;:::-;10363:119;10521:1;10546:53;10591:7;10582:6;10571:9;10567:22;10546:53;:::i;:::-;10536:63;;10492:117;10287:329;;;;:::o;10622:474::-;10690:6;10698;10747:2;10735:9;10726:7;10722:23;10718:32;10715:119;;;10753:79;;:::i;:::-;10715:119;10873:1;10898:53;10943:7;10934:6;10923:9;10919:22;10898:53;:::i;:::-;10888:63;;10844:117;11000:2;11026:53;11071:7;11062:6;11051:9;11047:22;11026:53;:::i;:::-;11016:63;;10971:118;10622:474;;;;;:::o;11102:303::-;11233:10;11254:108;11358:3;11350:6;11254:108;:::i;:::-;11394:4;11389:3;11385:14;11371:28;;11102:303;;;;:::o;11411:179::-;11480:10;11501:46;11543:3;11535:6;11501:46;:::i;:::-;11579:4;11574:3;11570:14;11556:28;;11411:179;;;;:::o;11596:108::-;11673:24;11691:5;11673:24;:::i;:::-;11668:3;11661:37;11596:108;;:::o;11710:118::-;11797:24;11815:5;11797:24;:::i;:::-;11792:3;11785:37;11710:118;;:::o;11910:980::-;12091:3;12120:85;12199:5;12120:85;:::i;:::-;12221:117;12331:6;12326:3;12221:117;:::i;:::-;12214:124;;12362:87;12443:5;12362:87;:::i;:::-;12472:7;12503:1;12488:377;12513:6;12510:1;12507:13;12488:377;;;12589:6;12583:13;12616:125;12737:3;12722:13;12616:125;:::i;:::-;12609:132;;12764:91;12848:6;12764:91;:::i;:::-;12754:101;;12548:317;12535:1;12532;12528:9;12523:14;;12488:377;;;12492:14;12881:3;12874:10;;12096:794;;;11910:980;;;;:::o;12926:732::-;13045:3;13074:54;13122:5;13074:54;:::i;:::-;13144:86;13223:6;13218:3;13144:86;:::i;:::-;13137:93;;13254:56;13304:5;13254:56;:::i;:::-;13333:7;13364:1;13349:284;13374:6;13371:1;13368:13;13349:284;;;13450:6;13444:13;13477:63;13536:3;13521:13;13477:63;:::i;:::-;13470:70;;13563:60;13616:6;13563:60;:::i;:::-;13553:70;;13409:224;13396:1;13393;13389:9;13384:14;;13349:284;;;13353:14;13649:3;13642:10;;13050:608;;;12926:732;;;;:::o;13664:99::-;13735:21;13750:5;13735:21;:::i;:::-;13730:3;13723:34;13664:99;;:::o;13769:109::-;13850:21;13865:5;13850:21;:::i;:::-;13845:3;13838:34;13769:109;;:::o;13884:360::-;13970:3;13998:38;14030:5;13998:38;:::i;:::-;14052:70;14115:6;14110:3;14052:70;:::i;:::-;14045:77;;14131:52;14176:6;14171:3;14164:4;14157:5;14153:16;14131:52;:::i;:::-;14208:29;14230:6;14208:29;:::i;:::-;14203:3;14199:39;14192:46;;13974:270;13884:360;;;;:::o;14250:364::-;14338:3;14366:39;14399:5;14366:39;:::i;:::-;14421:71;14485:6;14480:3;14421:71;:::i;:::-;14414:78;;14501:52;14546:6;14541:3;14534:4;14527:5;14523:16;14501:52;:::i;:::-;14578:29;14600:6;14578:29;:::i;:::-;14573:3;14569:39;14562:46;;14342:272;14250:364;;;;:::o;14620:377::-;14726:3;14754:39;14787:5;14754:39;:::i;:::-;14809:89;14891:6;14886:3;14809:89;:::i;:::-;14802:96;;14907:52;14952:6;14947:3;14940:4;14933:5;14929:16;14907:52;:::i;:::-;14984:6;14979:3;14975:16;14968:23;;14730:267;14620:377;;;;:::o;15003:366::-;15145:3;15166:67;15230:2;15225:3;15166:67;:::i;:::-;15159:74;;15242:93;15331:3;15242:93;:::i;:::-;15360:2;15355:3;15351:12;15344:19;;15003:366;;;:::o;15375:400::-;15535:3;15556:84;15638:1;15633:3;15556:84;:::i;:::-;15549:91;;15649:93;15738:3;15649:93;:::i;:::-;15767:1;15762:3;15758:11;15751:18;;15375:400;;;:::o;15781:366::-;15923:3;15944:67;16008:2;16003:3;15944:67;:::i;:::-;15937:74;;16020:93;16109:3;16020:93;:::i;:::-;16138:2;16133:3;16129:12;16122:19;;15781:366;;;:::o;16153:::-;16295:3;16316:67;16380:2;16375:3;16316:67;:::i;:::-;16309:74;;16392:93;16481:3;16392:93;:::i;:::-;16510:2;16505:3;16501:12;16494:19;;16153:366;;;:::o;16525:398::-;16684:3;16705:83;16786:1;16781:3;16705:83;:::i;:::-;16698:90;;16797:93;16886:3;16797:93;:::i;:::-;16915:1;16910:3;16906:11;16899:18;;16525:398;;;:::o;17001:864::-;17150:4;17145:3;17141:14;17237:4;17230:5;17226:16;17220:23;17256:63;17313:4;17308:3;17304:14;17290:12;17256:63;:::i;:::-;17165:164;17421:4;17414:5;17410:16;17404:23;17440:61;17495:4;17490:3;17486:14;17472:12;17440:61;:::i;:::-;17339:172;17595:4;17588:5;17584:16;17578:23;17614:57;17665:4;17660:3;17656:14;17642:12;17614:57;:::i;:::-;17521:160;17768:4;17761:5;17757:16;17751:23;17787:61;17842:4;17837:3;17833:14;17819:12;17787:61;:::i;:::-;17691:167;17119:746;17001:864;;:::o;17943:874::-;18102:4;18097:3;18093:14;18189:4;18182:5;18178:16;18172:23;18208:63;18265:4;18260:3;18256:14;18242:12;18208:63;:::i;:::-;18117:164;18373:4;18366:5;18362:16;18356:23;18392:61;18447:4;18442:3;18438:14;18424:12;18392:61;:::i;:::-;18291:172;18547:4;18540:5;18536:16;18530:23;18566:57;18617:4;18612:3;18608:14;18594:12;18566:57;:::i;:::-;18473:160;18720:4;18713:5;18709:16;18703:23;18739:61;18794:4;18789:3;18785:14;18771:12;18739:61;:::i;:::-;18643:167;18071:746;17943:874;;:::o;18823:105::-;18898:23;18915:5;18898:23;:::i;:::-;18893:3;18886:36;18823:105;;:::o;18934:108::-;19011:24;19029:5;19011:24;:::i;:::-;19006:3;18999:37;18934:108;;:::o;19048:118::-;19135:24;19153:5;19135:24;:::i;:::-;19130:3;19123:37;19048:118;;:::o;19172:105::-;19247:23;19264:5;19247:23;:::i;:::-;19242:3;19235:36;19172:105;;:::o;19283:701::-;19564:3;19586:95;19677:3;19668:6;19586:95;:::i;:::-;19579:102;;19698:95;19789:3;19780:6;19698:95;:::i;:::-;19691:102;;19810:148;19954:3;19810:148;:::i;:::-;19803:155;;19975:3;19968:10;;19283:701;;;;;:::o;19990:379::-;20174:3;20196:147;20339:3;20196:147;:::i;:::-;20189:154;;20360:3;20353:10;;19990:379;;;:::o;20375:222::-;20468:4;20506:2;20495:9;20491:18;20483:26;;20519:71;20587:1;20576:9;20572:17;20563:6;20519:71;:::i;:::-;20375:222;;;;:::o;20603:640::-;20798:4;20836:3;20825:9;20821:19;20813:27;;20850:71;20918:1;20907:9;20903:17;20894:6;20850:71;:::i;:::-;20931:72;20999:2;20988:9;20984:18;20975:6;20931:72;:::i;:::-;21013;21081:2;21070:9;21066:18;21057:6;21013:72;:::i;:::-;21132:9;21126:4;21122:20;21117:2;21106:9;21102:18;21095:48;21160:76;21231:4;21222:6;21160:76;:::i;:::-;21152:84;;20603:640;;;;;;;:::o;21249:497::-;21454:4;21492:2;21481:9;21477:18;21469:26;;21541:9;21535:4;21531:20;21527:1;21516:9;21512:17;21505:47;21569:170;21734:4;21725:6;21569:170;:::i;:::-;21561:178;;21249:497;;;;:::o;21752:373::-;21895:4;21933:2;21922:9;21918:18;21910:26;;21982:9;21976:4;21972:20;21968:1;21957:9;21953:17;21946:47;22010:108;22113:4;22104:6;22010:108;:::i;:::-;22002:116;;21752:373;;;;:::o;22131:210::-;22218:4;22256:2;22245:9;22241:18;22233:26;;22269:65;22331:1;22320:9;22316:17;22307:6;22269:65;:::i;:::-;22131:210;;;;:::o;22347:313::-;22460:4;22498:2;22487:9;22483:18;22475:26;;22547:9;22541:4;22537:20;22533:1;22522:9;22518:17;22511:47;22575:78;22648:4;22639:6;22575:78;:::i;:::-;22567:86;;22347:313;;;;:::o;22666:419::-;22832:4;22870:2;22859:9;22855:18;22847:26;;22919:9;22913:4;22909:20;22905:1;22894:9;22890:17;22883:47;22947:131;23073:4;22947:131;:::i;:::-;22939:139;;22666:419;;;:::o;23091:::-;23257:4;23295:2;23284:9;23280:18;23272:26;;23344:9;23338:4;23334:20;23330:1;23319:9;23315:17;23308:47;23372:131;23498:4;23372:131;:::i;:::-;23364:139;;23091:419;;;:::o;23516:::-;23682:4;23720:2;23709:9;23705:18;23697:26;;23769:9;23763:4;23759:20;23755:1;23744:9;23740:17;23733:47;23797:131;23923:4;23797:131;:::i;:::-;23789:139;;23516:419;;;:::o;23941:347::-;24096:4;24134:3;24123:9;24119:19;24111:27;;24148:133;24278:1;24267:9;24263:17;24254:6;24148:133;:::i;:::-;23941:347;;;;:::o;24294:222::-;24387:4;24425:2;24414:9;24410:18;24402:26;;24438:71;24506:1;24495:9;24491:17;24482:6;24438:71;:::i;:::-;24294:222;;;;:::o;24522:129::-;24556:6;24583:20;;:::i;:::-;24573:30;;24612:33;24640:4;24632:6;24612:33;:::i;:::-;24522:129;;;:::o;24657:75::-;24690:6;24723:2;24717:9;24707:19;;24657:75;:::o;24738:311::-;24815:4;24905:18;24897:6;24894:30;24891:56;;;24927:18;;:::i;:::-;24891:56;24977:4;24969:6;24965:17;24957:25;;25037:4;25031;25027:15;25019:23;;24738:311;;;:::o;25055:307::-;25116:4;25206:18;25198:6;25195:30;25192:56;;;25228:18;;:::i;:::-;25192:56;25266:29;25288:6;25266:29;:::i;:::-;25258:37;;25350:4;25344;25340:15;25332:23;;25055:307;;;:::o;25368:308::-;25430:4;25520:18;25512:6;25509:30;25506:56;;;25542:18;;:::i;:::-;25506:56;25580:29;25602:6;25580:29;:::i;:::-;25572:37;;25664:4;25658;25654:15;25646:23;;25368:308;;;:::o;25682:163::-;25780:4;25803:3;25795:11;;25833:4;25828:3;25824:14;25816:22;;25682:163;;;:::o;25851:132::-;25918:4;25941:3;25933:11;;25971:4;25966:3;25962:14;25954:22;;25851:132;;;:::o;25989:145::-;26087:6;26121:5;26115:12;26105:22;;25989:145;;;:::o;26140:114::-;26207:6;26241:5;26235:12;26225:22;;26140:114;;;:::o;26260:98::-;26311:6;26345:5;26339:12;26329:22;;26260:98;;;:::o;26364:99::-;26416:6;26450:5;26444:12;26434:22;;26364:99;;;:::o;26469:144::-;26570:4;26602;26597:3;26593:14;26585:22;;26469:144;;;:::o;26619:113::-;26689:4;26721;26716:3;26712:14;26704:22;;26619:113;;;:::o;26738:215::-;26868:11;26902:6;26897:3;26890:19;26942:4;26937:3;26933:14;26918:29;;26738:215;;;;:::o;26959:184::-;27058:11;27092:6;27087:3;27080:19;27132:4;27127:3;27123:14;27108:29;;26959:184;;;;:::o;27149:168::-;27232:11;27266:6;27261:3;27254:19;27306:4;27301:3;27297:14;27282:29;;27149:168;;;;:::o;27323:147::-;27424:11;27461:3;27446:18;;27323:147;;;;:::o;27476:169::-;27560:11;27594:6;27589:3;27582:19;27634:4;27629:3;27625:14;27610:29;;27476:169;;;;:::o;27651:148::-;27753:11;27790:3;27775:18;;27651:148;;;;:::o;27805:305::-;27845:3;27864:20;27882:1;27864:20;:::i;:::-;27859:25;;27898:20;27916:1;27898:20;:::i;:::-;27893:25;;28052:1;27984:66;27980:74;27977:1;27974:81;27971:107;;;28058:18;;:::i;:::-;27971:107;28102:1;28099;28095:9;28088:16;;27805:305;;;;:::o;28116:185::-;28156:1;28173:20;28191:1;28173:20;:::i;:::-;28168:25;;28207:20;28225:1;28207:20;:::i;:::-;28202:25;;28246:1;28236:35;;28251:18;;:::i;:::-;28236:35;28293:1;28290;28286:9;28281:14;;28116:185;;;;:::o;28307:191::-;28347:4;28367:20;28385:1;28367:20;:::i;:::-;28362:25;;28401:20;28419:1;28401:20;:::i;:::-;28396:25;;28440:1;28437;28434:8;28431:34;;;28445:18;;:::i;:::-;28431:34;28490:1;28487;28483:9;28475:17;;28307:191;;;;:::o;28504:96::-;28541:7;28570:24;28588:5;28570:24;:::i;:::-;28559:35;;28504:96;;;:::o;28606:90::-;28640:7;28683:5;28676:13;28669:21;28658:32;;28606:90;;;:::o;28702:149::-;28738:7;28778:66;28771:5;28767:78;28756:89;;28702:149;;;:::o;28857:126::-;28894:7;28934:42;28927:5;28923:54;28912:65;;28857:126;;;:::o;28989:91::-;29025:7;29065:8;29058:5;29054:20;29043:31;;28989:91;;;:::o;29086:77::-;29123:7;29152:5;29141:16;;29086:77;;;:::o;29169:101::-;29205:7;29245:18;29238:5;29234:30;29223:41;;29169:101;;;:::o;29276:154::-;29360:6;29355:3;29350;29337:30;29422:1;29413:6;29408:3;29404:16;29397:27;29276:154;;;:::o;29436:307::-;29504:1;29514:113;29528:6;29525:1;29522:13;29514:113;;;29613:1;29608:3;29604:11;29598:18;29594:1;29589:3;29585:11;29578:39;29550:2;29547:1;29543:10;29538:15;;29514:113;;;29645:6;29642:1;29639:13;29636:101;;;29725:1;29716:6;29711:3;29707:16;29700:27;29636:101;29485:258;29436:307;;;:::o;29749:320::-;29793:6;29830:1;29824:4;29820:12;29810:22;;29877:1;29871:4;29867:12;29898:18;29888:81;;29954:4;29946:6;29942:17;29932:27;;29888:81;30016:2;30008:6;30005:14;29985:18;29982:38;29979:84;;;30035:18;;:::i;:::-;29979:84;29800:269;29749:320;;;:::o;30075:281::-;30158:27;30180:4;30158:27;:::i;:::-;30150:6;30146:40;30288:6;30276:10;30273:22;30252:18;30240:10;30237:34;30234:62;30231:88;;;30299:18;;:::i;:::-;30231:88;30339:10;30335:2;30328:22;30118:238;30075:281;;:::o;30362:233::-;30401:3;30424:24;30442:5;30424:24;:::i;:::-;30415:33;;30470:66;30463:5;30460:77;30457:103;;;30540:18;;:::i;:::-;30457:103;30587:1;30580:5;30576:13;30569:20;;30362:233;;;:::o;30601:176::-;30633:1;30650:20;30668:1;30650:20;:::i;:::-;30645:25;;30684:20;30702:1;30684:20;:::i;:::-;30679:25;;30723:1;30713:35;;30728:18;;:::i;:::-;30713:35;30769:1;30766;30762:9;30757:14;;30601:176;;;;:::o;30783:180::-;30831:77;30828:1;30821:88;30928:4;30925:1;30918:15;30952:4;30949:1;30942:15;30969:180;31017:77;31014:1;31007:88;31114:4;31111:1;31104:15;31138:4;31135:1;31128:15;31155:180;31203:77;31200:1;31193:88;31300:4;31297:1;31290:15;31324:4;31321:1;31314:15;31341:180;31389:77;31386:1;31379:88;31486:4;31483:1;31476:15;31510:4;31507:1;31500:15;31527:180;31575:77;31572:1;31565:88;31672:4;31669:1;31662:15;31696:4;31693:1;31686:15;31713:117;31822:1;31819;31812:12;31836:117;31945:1;31942;31935:12;31959:117;32068:1;32065;32058:12;32082:117;32191:1;32188;32181:12;32205:117;32314:1;32311;32304:12;32328:117;32437:1;32434;32427:12;32451:102;32492:6;32543:2;32539:7;32534:2;32527:5;32523:14;32519:28;32509:38;;32451:102;;;:::o;32559:225::-;32699:34;32695:1;32687:6;32683:14;32676:58;32768:8;32763:2;32755:6;32751:15;32744:33;32559:225;:::o;32790:155::-;32930:7;32926:1;32918:6;32914:14;32907:31;32790:155;:::o;32951:182::-;33091:34;33087:1;33079:6;33075:14;33068:58;32951:182;:::o;33139:234::-;33279:34;33275:1;33267:6;33263:14;33256:58;33348:17;33343:2;33335:6;33331:15;33324:42;33139:234;:::o;33379:114::-;;:::o;33499:122::-;33572:24;33590:5;33572:24;:::i;:::-;33565:5;33562:35;33552:63;;33611:1;33608;33601:12;33552:63;33499:122;:::o;33627:116::-;33697:21;33712:5;33697:21;:::i;:::-;33690:5;33687:32;33677:60;;33733:1;33730;33723:12;33677:60;33627:116;:::o;33749:120::-;33821:23;33838:5;33821:23;:::i;:::-;33814:5;33811:34;33801:62;;33859:1;33856;33849:12;33801:62;33749:120;:::o;33875:122::-;33948:24;33966:5;33948:24;:::i;:::-;33941:5;33938:35;33928:63;;33987:1;33984;33977:12;33928:63;33875:122;:::o
Swarm Source
ipfs://92ced56709f253a53525c430af8289e22c5517bdd26bc2ec79b8d9db2c3b00a9
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.