Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
999 TR
Holders
948
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 TRLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TemperRhythm
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-02 */ /* ████████╗███████╗███╗░░░███╗██████╗░███████╗██████╗░ ██████╗░██╗░░██╗██╗░░░██╗████████╗██╗░░██╗███╗░░░███╗ ╚══██╔══╝██╔════╝████╗░████║██╔══██╗██╔════╝██╔══██╗ ██╔══██╗██║░░██║╚██╗░██╔╝╚══██╔══╝██║░░██║████╗░████║ ░░░██║░░░█████╗░░██╔████╔██║██████╔╝█████╗░░██████╔╝ ██████╔╝███████║░╚████╔╝░░░░██║░░░███████║██╔████╔██║ ░░░██║░░░██╔══╝░░██║╚██╔╝██║██╔═══╝░██╔══╝░░██╔══██╗ ██╔══██╗██╔══██║░░╚██╔╝░░░░░██║░░░██╔══██║██║╚██╔╝██║ ░░░██║░░░███████╗██║░╚═╝░██║██║░░░░░███████╗██║░░██║ ██║░░██║██║░░██║░░░██║░░░░░░██║░░░██║░░██║██║░╚═╝░██║ ░░░╚═╝░░░╚══════╝╚═╝░░░░░╚═╝╚═╝░░░░░╚══════╝╚═╝░░╚═╝ ╚═╝░░╚═╝╚═╝░░╚═╝░░░╚═╝░░░░░░╚═╝░░░╚═╝░░╚═╝╚═╝░░░░░╚═╝ ██████╗░██╗░░░██╗ ████████╗░█████╗░██████╗░░█████╗░░█████╗░░██████╗░█████╗░ ██╔══██╗╚██╗░██╔╝ ╚══██╔══╝██╔══██╗██╔══██╗██╔══██╗██╔══██╗██╔════╝██╔══██╗ ██████╦╝░╚████╔╝░ ░░░██║░░░███████║██████╔╝██║░░╚═╝██║░░██║╚█████╗░███████║ ██╔══██╗░░╚██╔╝░░ ░░░██║░░░██╔══██║██╔══██╗██║░░██╗██║░░██║░╚═══██╗██╔══██║ ██████╦╝░░░██║░░░ ░░░██║░░░██║░░██║██║░░██║╚█████╔╝╚█████╔╝██████╔╝██║░░██║ ╚═════╝░░░░╚═╝░░░ ░░░╚═╝░░░╚═╝░░╚═╝╚═╝░░╚═╝░╚════╝░░╚════╝░╚═════╝░╚═╝░░╚═╝ */ // SPDX-License-Identifier: MIT // Temper Rhythm by Tarcosa // 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/TemperRhythm.sol pragma solidity ^0.8.4; contract TemperRhythm is ERC721AQueryable, Ownable { using Strings for uint256; uint256 public EXTRA_MINT_PRICE = 0.003 ether; uint256 public MAX_SUPPLY = 999; uint256 public MAX_PER = 10; string uriPrefix = ""; bool public paused = true; mapping(address => uint256) private _freeMintedCount; constructor() ERC721A("Temper Rhythm by Tarcosa", "TR") {} function mint(uint256 _mintAmount) external payable { require(!paused, "Minting Paused"); uint256 _totalSupply = totalSupply(); require(_totalSupply + _mintAmount < MAX_SUPPLY + 1, "SOLD OUT"); require(_mintAmount < MAX_PER + 1, "Max Per Transaction Is 10"); uint256 payForCount = _mintAmount; uint256 freeMintCount = _freeMintedCount[msg.sender]; if (freeMintCount < 1) { if (_mintAmount > 1) { payForCount = _mintAmount - 1; } else { payForCount = 0; } _freeMintedCount[msg.sender] = 1; } require( msg.value >= payForCount * EXTRA_MINT_PRICE, "INCORRECT ETH AMOUNT" ); _mint(msg.sender, _mintAmount); } function devMint(uint256 _mintAmount, address _receiver) public onlyOwner { _safeMint(_receiver, _mintAmount); } function freeMintedCount(address owner) external view returns (uint256) { return _freeMintedCount[owner]; } function _startTokenId() internal pure override returns (uint256) { return 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 setPaused(bool _state) public onlyOwner { paused = _state; } 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":[],"name":"EXTRA_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_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":"address","name":"owner","type":"address"}],"name":"freeMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"bool","name":"_state","type":"bool"}],"name":"setPaused","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
6080604052660aa87bee5380006009556103e7600a55600a600b5560405180602001604052806000815250600c9080519060200190620000419291906200021e565b506001600d60006101000a81548160ff0219169083151502179055503480156200006a57600080fd5b506040518060400160405280601881526020017f54656d7065722052687974686d20627920546172636f736100000000000000008152506040518060400160405280600281526020017f54520000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000ef9291906200021e565b508060039080519060200190620001089291906200021e565b50620001196200014760201b60201c565b600081905550505062000141620001356200015060201b60201c565b6200015860201b60201c565b62000333565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022c90620002ce565b90600052602060002090601f0160209004810192826200025057600085556200029c565b82601f106200026b57805160ff19168380011785556200029c565b828001600101855582156200029c579182015b828111156200029b5782518255916020019190600101906200027e565b5b509050620002ab9190620002af565b5090565b5b80821115620002ca576000816000905550600101620002b0565b5090565b60006002820490506001821680620002e757607f821691505b60208210811415620002fe57620002fd62000304565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61390c80620003436000396000f3fe6080604052600436106101d85760003560e01c8063715018a611610102578063a0712d6811610095578063c87b56dd11610064578063c87b56dd146106c1578063de0a6156146106fe578063e985e9c514610729578063f2fde38b14610766576101d8565b8063a0712d6814610616578063a22cb46514610632578063b88d4fde1461065b578063c23dc68f14610684576101d8565b806395d89b41116100d157806395d89b411461054657806396b04c7514610571578063981332351461059c57806399a2557a146105d9576101d8565b8063715018a61461049e5780637ec4a659146104b55780638462151c146104de5780638da5cb5b1461051b576101d8565b80632d1a12f61161017a5780635bbb2177116101495780635bbb2177146103bc5780635c975abb146103f95780636352211e1461042457806370a0823114610461576101d8565b80632d1a12f61461032857806332cb6b0c146103515780633ccfd60b1461037c57806342842e0e14610393576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806316c38b3c146102ab57806318160ddd146102d457806323b872dd146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612a79565b61078f565b6040516102119190613064565b60405180910390f35b34801561022657600080fd5b5061022f610821565b60405161023c919061307f565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612b1c565b6108b3565b6040516102799190612fb9565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a4919061296c565b610932565b005b3480156102b757600080fd5b506102d260048036038101906102cd9190612a4c565b610a76565b005b3480156102e057600080fd5b506102e9610a9b565b6040516102f6919061319c565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190612856565b610ab2565b005b34801561033457600080fd5b5061034f600480360381019061034a9190612b49565b610dd7565b005b34801561035d57600080fd5b50610366610ded565b604051610373919061319c565b60405180910390f35b34801561038857600080fd5b50610391610df3565b005b34801561039f57600080fd5b506103ba60048036038101906103b59190612856565b610e7b565b005b3480156103c857600080fd5b506103e360048036038101906103de91906129ff565b610e9b565b6040516103f09190613020565b60405180910390f35b34801561040557600080fd5b5061040e610f5e565b60405161041b9190613064565b60405180910390f35b34801561043057600080fd5b5061044b60048036038101906104469190612b1c565b610f71565b6040516104589190612fb9565b60405180910390f35b34801561046d57600080fd5b50610488600480360381019061048391906127e9565b610f83565b604051610495919061319c565b60405180910390f35b3480156104aa57600080fd5b506104b361103c565b005b3480156104c157600080fd5b506104dc60048036038101906104d79190612ad3565b611050565b005b3480156104ea57600080fd5b50610505600480360381019061050091906127e9565b611072565b6040516105129190613042565b60405180910390f35b34801561052757600080fd5b506105306111bc565b60405161053d9190612fb9565b60405180910390f35b34801561055257600080fd5b5061055b6111e6565b604051610568919061307f565b60405180910390f35b34801561057d57600080fd5b50610586611278565b604051610593919061319c565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be91906127e9565b61127e565b6040516105d0919061319c565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb91906129ac565b6112c7565b60405161060d9190613042565b60405180910390f35b610630600480360381019061062b9190612b1c565b6114db565b005b34801561063e57600080fd5b506106596004803603810190610654919061292c565b6116fc565b005b34801561066757600080fd5b50610682600480360381019061067d91906128a9565b611874565b005b34801561069057600080fd5b506106ab60048036038101906106a69190612b1c565b6118e7565b6040516106b89190613181565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e39190612b1c565b611951565b6040516106f5919061307f565b60405180910390f35b34801561070a57600080fd5b506107136119f8565b604051610720919061319c565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612816565b6119fe565b60405161075d9190613064565b60405180910390f35b34801561077257600080fd5b5061078d600480360381019061078891906127e9565b611a92565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ea57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061081a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610830906134ec565b80601f016020809104026020016040519081016040528092919081815260200182805461085c906134ec565b80156108a95780601f1061087e576101008083540402835291602001916108a9565b820191906000526020600020905b81548152906001019060200180831161088c57829003601f168201915b5050505050905090565b60006108be82611b16565b6108f4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061093d82610f71565b90508073ffffffffffffffffffffffffffffffffffffffff1661095e611b75565b73ffffffffffffffffffffffffffffffffffffffff16146109c15761098a81610985611b75565b6119fe565b6109c0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610a7e611b7d565b80600d60006101000a81548160ff02191690831515021790555050565b6000610aa5611bfb565b6001546000540303905090565b6000610abd82611c04565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b24576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b3084611cd2565b91509150610b468187610b41611b75565b611cf9565b610b9257610b5b86610b56611b75565b6119fe565b610b91576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610bf9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c068686866001611d3d565b8015610c1157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cdf85610cbb888887611d43565b7c020000000000000000000000000000000000000000000000000000000017611d6b565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d67576000600185019050600060046000838152602001908152602001600020541415610d65576000548114610d64578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610dcf8686866001611d96565b505050505050565b610ddf611b7d565b610de98183611d9c565b5050565b600a5481565b610dfb611b7d565b6000610e056111bc565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e2890612fa4565b60006040518083038185875af1925050503d8060008114610e65576040519150601f19603f3d011682016040523d82523d6000602084013e610e6a565b606091505b5050905080610e7857600080fd5b50565b610e9683838360405180602001604052806000815250611874565b505050565b6060600083839050905060008167ffffffffffffffff811115610ec157610ec0613685565b5b604051908082528060200260200182016040528015610efa57816020015b610ee7612558565b815260200190600190039081610edf5790505b50905060005b828114610f5257610f29868683818110610f1d57610f1c613656565b5b905060200201356118e7565b828281518110610f3c57610f3b613656565b5b6020026020010181905250806001019050610f00565b50809250505092915050565b600d60009054906101000a900460ff1681565b6000610f7c82611c04565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610feb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611044611b7d565b61104e6000611dba565b565b611058611b7d565b80600c908051906020019061106e9291906125a7565b5050565b6060600080600061108285610f83565b905060008167ffffffffffffffff8111156110a05761109f613685565b5b6040519080825280602002602001820160405280156110ce5781602001602082028036833780820191505090505b5090506110d9612558565b60006110e3611bfb565b90505b8386146111ae576110f681611e80565b9150816040015115611107576111a3565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461114757816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156111a2578083878060010198508151811061119557611194613656565b5b6020026020010181815250505b5b8060010190506110e6565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546111f5906134ec565b80601f0160208091040260200160405190810160405280929190818152602001828054611221906134ec565b801561126e5780601f106112435761010080835404028352916020019161126e565b820191906000526020600020905b81548152906001019060200180831161125157829003601f168201915b5050505050905090565b60095481565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060818310611302576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061130d611eab565b9050611317611bfb565b85101561132957611326611bfb565b94505b80841115611335578093505b600061134087610f83565b90508486101561136357600086860390508181101561135d578091505b50611368565b600090505b60008167ffffffffffffffff81111561138457611383613685565b5b6040519080825280602002602001820160405280156113b25781602001602082028036833780820191505090505b50905060008214156113ca57809450505050506114d4565b60006113d5886118e7565b9050600081604001516113ea57816000015190505b60008990505b8881141580156114005750848714155b156114c65761140e81611e80565b925082604001511561141f576114bb565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461145f57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ba57808488806001019950815181106114ad576114ac613656565b5b6020026020010181815250505b5b8060010190506113f0565b508583528296505050505050505b9392505050565b600d60009054906101000a900460ff161561152b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152290613141565b60405180910390fd5b6000611535610a9b565b90506001600a5461154691906132fe565b828261155291906132fe565b10611592576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611589906130a1565b60405180910390fd5b6001600b546115a191906132fe565b82106115e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d990613121565b60405180910390fd5b60008290506000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600181101561169c5760018411156116515760018461164a91906133df565b9150611656565b600091505b6001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600954826116aa9190613385565b3410156116ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e390613161565b60405180910390fd5b6116f63385611eb4565b50505050565b611704611b75565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611769576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611776611b75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611823611b75565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118689190613064565b60405180910390a35050565b61187f848484610ab2565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118e1576118aa84848484612071565b6118e0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6118ef612558565b6118f7612558565b6118ff611bfb565b831080611913575061190f611eab565b8310155b15611921578091505061194c565b61192a83611e80565b905080604001511561193f578091505061194c565b611948836121d1565b9150505b919050565b606061195c82611b16565b61199b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199290613101565b60405180910390fd5b60006119a56121f1565b905060008151116119c557604051806020016040528060008152506119f0565b806119cf84612283565b6040516020016119e0929190612f75565b6040516020818303038152906040525b915050919050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a9a611b7d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b01906130c1565b60405180910390fd5b611b1381611dba565b50565b600081611b21611bfb565b11158015611b30575060005482105b8015611b6e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611b856123e4565b73ffffffffffffffffffffffffffffffffffffffff16611ba36111bc565b73ffffffffffffffffffffffffffffffffffffffff1614611bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf0906130e1565b60405180910390fd5b565b60006001905090565b60008082905080611c13611bfb565b11611c9b57600054811015611c9a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611c98575b6000811415611c8e576004600083600190039350838152602001908152602001600020549050611c63565b8092505050611ccd565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d5a8686846123ec565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611db68282604051806020016040528060008152506123f5565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e88612558565b611ea46004600084815260200190815260200160002054612492565b9050919050565b60008054905090565b6000805490506000821415611ef5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f026000848385611d3d565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f7983611f6a6000866000611d43565b611f7385612548565b17611d6b565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461201a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611fdf565b506000821415612056576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061206c6000848385611d96565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612097611b75565b8786866040518563ffffffff1660e01b81526004016120b99493929190612fd4565b602060405180830381600087803b1580156120d357600080fd5b505af192505050801561210457506040513d601f19601f820116820180604052508101906121019190612aa6565b60015b61217e573d8060008114612134576040519150601f19603f3d011682016040523d82523d6000602084013e612139565b606091505b50600081511415612176576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6121d9612558565b6121ea6121e583611c04565b612492565b9050919050565b6060600c8054612200906134ec565b80601f016020809104026020016040519081016040528092919081815260200182805461222c906134ec565b80156122795780601f1061224e57610100808354040283529160200191612279565b820191906000526020600020905b81548152906001019060200180831161225c57829003601f168201915b5050505050905090565b606060008214156122cb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123df565b600082905060005b600082146122fd5780806122e69061354f565b915050600a826122f69190613354565b91506122d3565b60008167ffffffffffffffff81111561231957612318613685565b5b6040519080825280601f01601f19166020018201604052801561234b5781602001600182028036833780820191505090505b5090505b600085146123d85760018261236491906133df565b9150600a856123739190613598565b603061237f91906132fe565b60f81b81838151811061239557612394613656565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123d19190613354565b945061234f565b8093505050505b919050565b600033905090565b60009392505050565b6123ff8383611eb4565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461248d57600080549050600083820390505b61243f6000868380600101945086612071565b612475576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061242c57816000541461248a57600080fd5b50505b505050565b61249a612558565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b8280546125b3906134ec565b90600052602060002090601f0160209004810192826125d5576000855561261c565b82601f106125ee57805160ff191683800117855561261c565b8280016001018555821561261c579182015b8281111561261b578251825591602001919060010190612600565b5b509050612629919061262d565b5090565b5b8082111561264657600081600090555060010161262e565b5090565b600061265d612658846131dc565b6131b7565b905082815260208101848484011115612679576126786136c3565b5b6126848482856134aa565b509392505050565b600061269f61269a8461320d565b6131b7565b9050828152602081018484840111156126bb576126ba6136c3565b5b6126c68482856134aa565b509392505050565b6000813590506126dd8161387a565b92915050565b60008083601f8401126126f9576126f86136b9565b5b8235905067ffffffffffffffff811115612716576127156136b4565b5b602083019150836020820283011115612732576127316136be565b5b9250929050565b60008135905061274881613891565b92915050565b60008135905061275d816138a8565b92915050565b600081519050612772816138a8565b92915050565b600082601f83011261278d5761278c6136b9565b5b813561279d84826020860161264a565b91505092915050565b600082601f8301126127bb576127ba6136b9565b5b81356127cb84826020860161268c565b91505092915050565b6000813590506127e3816138bf565b92915050565b6000602082840312156127ff576127fe6136cd565b5b600061280d848285016126ce565b91505092915050565b6000806040838503121561282d5761282c6136cd565b5b600061283b858286016126ce565b925050602061284c858286016126ce565b9150509250929050565b60008060006060848603121561286f5761286e6136cd565b5b600061287d868287016126ce565b935050602061288e868287016126ce565b925050604061289f868287016127d4565b9150509250925092565b600080600080608085870312156128c3576128c26136cd565b5b60006128d1878288016126ce565b94505060206128e2878288016126ce565b93505060406128f3878288016127d4565b925050606085013567ffffffffffffffff811115612914576129136136c8565b5b61292087828801612778565b91505092959194509250565b60008060408385031215612943576129426136cd565b5b6000612951858286016126ce565b925050602061296285828601612739565b9150509250929050565b60008060408385031215612983576129826136cd565b5b6000612991858286016126ce565b92505060206129a2858286016127d4565b9150509250929050565b6000806000606084860312156129c5576129c46136cd565b5b60006129d3868287016126ce565b93505060206129e4868287016127d4565b92505060406129f5868287016127d4565b9150509250925092565b60008060208385031215612a1657612a156136cd565b5b600083013567ffffffffffffffff811115612a3457612a336136c8565b5b612a40858286016126e3565b92509250509250929050565b600060208284031215612a6257612a616136cd565b5b6000612a7084828501612739565b91505092915050565b600060208284031215612a8f57612a8e6136cd565b5b6000612a9d8482850161274e565b91505092915050565b600060208284031215612abc57612abb6136cd565b5b6000612aca84828501612763565b91505092915050565b600060208284031215612ae957612ae86136cd565b5b600082013567ffffffffffffffff811115612b0757612b066136c8565b5b612b13848285016127a6565b91505092915050565b600060208284031215612b3257612b316136cd565b5b6000612b40848285016127d4565b91505092915050565b60008060408385031215612b6057612b5f6136cd565b5b6000612b6e858286016127d4565b9250506020612b7f858286016126ce565b9150509250929050565b6000612b958383612e8f565b60808301905092915050565b6000612bad8383612f48565b60208301905092915050565b612bc281613413565b82525050565b612bd181613413565b82525050565b6000612be28261325e565b612bec81856132a4565b9350612bf78361323e565b8060005b83811015612c28578151612c0f8882612b89565b9750612c1a8361328a565b925050600181019050612bfb565b5085935050505092915050565b6000612c4082613269565b612c4a81856132b5565b9350612c558361324e565b8060005b83811015612c86578151612c6d8882612ba1565b9750612c7883613297565b925050600181019050612c59565b5085935050505092915050565b612c9c81613425565b82525050565b612cab81613425565b82525050565b6000612cbc82613274565b612cc681856132c6565b9350612cd68185602086016134b9565b612cdf816136d2565b840191505092915050565b6000612cf58261327f565b612cff81856132e2565b9350612d0f8185602086016134b9565b612d18816136d2565b840191505092915050565b6000612d2e8261327f565b612d3881856132f3565b9350612d488185602086016134b9565b80840191505092915050565b6000612d616008836132e2565b9150612d6c826136e3565b602082019050919050565b6000612d846026836132e2565b9150612d8f8261370c565b604082019050919050565b6000612da76005836132f3565b9150612db28261375b565b600582019050919050565b6000612dca6020836132e2565b9150612dd582613784565b602082019050919050565b6000612ded602f836132e2565b9150612df8826137ad565b604082019050919050565b6000612e106019836132e2565b9150612e1b826137fc565b602082019050919050565b6000612e33600e836132e2565b9150612e3e82613825565b602082019050919050565b6000612e566000836132d7565b9150612e618261384e565b600082019050919050565b6000612e796014836132e2565b9150612e8482613851565b602082019050919050565b608082016000820151612ea56000850182612bb9565b506020820151612eb86020850182612f66565b506040820151612ecb6040850182612c93565b506060820151612ede6060850182612f39565b50505050565b608082016000820151612efa6000850182612bb9565b506020820151612f0d6020850182612f66565b506040820151612f206040850182612c93565b506060820151612f336060850182612f39565b50505050565b612f428161347d565b82525050565b612f518161348c565b82525050565b612f608161348c565b82525050565b612f6f81613496565b82525050565b6000612f818285612d23565b9150612f8d8284612d23565b9150612f9882612d9a565b91508190509392505050565b6000612faf82612e49565b9150819050919050565b6000602082019050612fce6000830184612bc8565b92915050565b6000608082019050612fe96000830187612bc8565b612ff66020830186612bc8565b6130036040830185612f57565b81810360608301526130158184612cb1565b905095945050505050565b6000602082019050818103600083015261303a8184612bd7565b905092915050565b6000602082019050818103600083015261305c8184612c35565b905092915050565b60006020820190506130796000830184612ca2565b92915050565b600060208201905081810360008301526130998184612cea565b905092915050565b600060208201905081810360008301526130ba81612d54565b9050919050565b600060208201905081810360008301526130da81612d77565b9050919050565b600060208201905081810360008301526130fa81612dbd565b9050919050565b6000602082019050818103600083015261311a81612de0565b9050919050565b6000602082019050818103600083015261313a81612e03565b9050919050565b6000602082019050818103600083015261315a81612e26565b9050919050565b6000602082019050818103600083015261317a81612e6c565b9050919050565b60006080820190506131966000830184612ee4565b92915050565b60006020820190506131b16000830184612f57565b92915050565b60006131c16131d2565b90506131cd828261351e565b919050565b6000604051905090565b600067ffffffffffffffff8211156131f7576131f6613685565b5b613200826136d2565b9050602081019050919050565b600067ffffffffffffffff82111561322857613227613685565b5b613231826136d2565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006133098261348c565b91506133148361348c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613349576133486135c9565b5b828201905092915050565b600061335f8261348c565b915061336a8361348c565b92508261337a576133796135f8565b5b828204905092915050565b60006133908261348c565b915061339b8361348c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133d4576133d36135c9565b5b828202905092915050565b60006133ea8261348c565b91506133f58361348c565b925082821015613408576134076135c9565b5b828203905092915050565b600061341e8261345d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156134d75780820151818401526020810190506134bc565b838111156134e6576000848401525b50505050565b6000600282049050600182168061350457607f821691505b6020821081141561351857613517613627565b5b50919050565b613527826136d2565b810181811067ffffffffffffffff8211171561354657613545613685565b5b80604052505050565b600061355a8261348c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561358d5761358c6135c9565b5b600182019050919050565b60006135a38261348c565b91506135ae8361348c565b9250826135be576135bd6135f8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f534f4c44204f5554000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d617820506572205472616e73616374696f6e20497320313000000000000000600082015250565b7f4d696e74696e6720506175736564000000000000000000000000000000000000600082015250565b50565b7f494e434f52524543542045544820414d4f554e54000000000000000000000000600082015250565b61388381613413565b811461388e57600080fd5b50565b61389a81613425565b81146138a557600080fd5b50565b6138b181613431565b81146138bc57600080fd5b50565b6138c88161348c565b81146138d357600080fd5b5056fea26469706673582212207bf34a999cb036838182b94d60185d689e48826ef7e78fb0f4ffb803ecc37b4164736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101d85760003560e01c8063715018a611610102578063a0712d6811610095578063c87b56dd11610064578063c87b56dd146106c1578063de0a6156146106fe578063e985e9c514610729578063f2fde38b14610766576101d8565b8063a0712d6814610616578063a22cb46514610632578063b88d4fde1461065b578063c23dc68f14610684576101d8565b806395d89b41116100d157806395d89b411461054657806396b04c7514610571578063981332351461059c57806399a2557a146105d9576101d8565b8063715018a61461049e5780637ec4a659146104b55780638462151c146104de5780638da5cb5b1461051b576101d8565b80632d1a12f61161017a5780635bbb2177116101495780635bbb2177146103bc5780635c975abb146103f95780636352211e1461042457806370a0823114610461576101d8565b80632d1a12f61461032857806332cb6b0c146103515780633ccfd60b1461037c57806342842e0e14610393576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806316c38b3c146102ab57806318160ddd146102d457806323b872dd146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612a79565b61078f565b6040516102119190613064565b60405180910390f35b34801561022657600080fd5b5061022f610821565b60405161023c919061307f565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612b1c565b6108b3565b6040516102799190612fb9565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a4919061296c565b610932565b005b3480156102b757600080fd5b506102d260048036038101906102cd9190612a4c565b610a76565b005b3480156102e057600080fd5b506102e9610a9b565b6040516102f6919061319c565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190612856565b610ab2565b005b34801561033457600080fd5b5061034f600480360381019061034a9190612b49565b610dd7565b005b34801561035d57600080fd5b50610366610ded565b604051610373919061319c565b60405180910390f35b34801561038857600080fd5b50610391610df3565b005b34801561039f57600080fd5b506103ba60048036038101906103b59190612856565b610e7b565b005b3480156103c857600080fd5b506103e360048036038101906103de91906129ff565b610e9b565b6040516103f09190613020565b60405180910390f35b34801561040557600080fd5b5061040e610f5e565b60405161041b9190613064565b60405180910390f35b34801561043057600080fd5b5061044b60048036038101906104469190612b1c565b610f71565b6040516104589190612fb9565b60405180910390f35b34801561046d57600080fd5b50610488600480360381019061048391906127e9565b610f83565b604051610495919061319c565b60405180910390f35b3480156104aa57600080fd5b506104b361103c565b005b3480156104c157600080fd5b506104dc60048036038101906104d79190612ad3565b611050565b005b3480156104ea57600080fd5b50610505600480360381019061050091906127e9565b611072565b6040516105129190613042565b60405180910390f35b34801561052757600080fd5b506105306111bc565b60405161053d9190612fb9565b60405180910390f35b34801561055257600080fd5b5061055b6111e6565b604051610568919061307f565b60405180910390f35b34801561057d57600080fd5b50610586611278565b604051610593919061319c565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be91906127e9565b61127e565b6040516105d0919061319c565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb91906129ac565b6112c7565b60405161060d9190613042565b60405180910390f35b610630600480360381019061062b9190612b1c565b6114db565b005b34801561063e57600080fd5b506106596004803603810190610654919061292c565b6116fc565b005b34801561066757600080fd5b50610682600480360381019061067d91906128a9565b611874565b005b34801561069057600080fd5b506106ab60048036038101906106a69190612b1c565b6118e7565b6040516106b89190613181565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e39190612b1c565b611951565b6040516106f5919061307f565b60405180910390f35b34801561070a57600080fd5b506107136119f8565b604051610720919061319c565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612816565b6119fe565b60405161075d9190613064565b60405180910390f35b34801561077257600080fd5b5061078d600480360381019061078891906127e9565b611a92565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ea57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061081a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610830906134ec565b80601f016020809104026020016040519081016040528092919081815260200182805461085c906134ec565b80156108a95780601f1061087e576101008083540402835291602001916108a9565b820191906000526020600020905b81548152906001019060200180831161088c57829003601f168201915b5050505050905090565b60006108be82611b16565b6108f4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061093d82610f71565b90508073ffffffffffffffffffffffffffffffffffffffff1661095e611b75565b73ffffffffffffffffffffffffffffffffffffffff16146109c15761098a81610985611b75565b6119fe565b6109c0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610a7e611b7d565b80600d60006101000a81548160ff02191690831515021790555050565b6000610aa5611bfb565b6001546000540303905090565b6000610abd82611c04565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b24576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b3084611cd2565b91509150610b468187610b41611b75565b611cf9565b610b9257610b5b86610b56611b75565b6119fe565b610b91576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610bf9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c068686866001611d3d565b8015610c1157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cdf85610cbb888887611d43565b7c020000000000000000000000000000000000000000000000000000000017611d6b565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d67576000600185019050600060046000838152602001908152602001600020541415610d65576000548114610d64578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610dcf8686866001611d96565b505050505050565b610ddf611b7d565b610de98183611d9c565b5050565b600a5481565b610dfb611b7d565b6000610e056111bc565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e2890612fa4565b60006040518083038185875af1925050503d8060008114610e65576040519150601f19603f3d011682016040523d82523d6000602084013e610e6a565b606091505b5050905080610e7857600080fd5b50565b610e9683838360405180602001604052806000815250611874565b505050565b6060600083839050905060008167ffffffffffffffff811115610ec157610ec0613685565b5b604051908082528060200260200182016040528015610efa57816020015b610ee7612558565b815260200190600190039081610edf5790505b50905060005b828114610f5257610f29868683818110610f1d57610f1c613656565b5b905060200201356118e7565b828281518110610f3c57610f3b613656565b5b6020026020010181905250806001019050610f00565b50809250505092915050565b600d60009054906101000a900460ff1681565b6000610f7c82611c04565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610feb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611044611b7d565b61104e6000611dba565b565b611058611b7d565b80600c908051906020019061106e9291906125a7565b5050565b6060600080600061108285610f83565b905060008167ffffffffffffffff8111156110a05761109f613685565b5b6040519080825280602002602001820160405280156110ce5781602001602082028036833780820191505090505b5090506110d9612558565b60006110e3611bfb565b90505b8386146111ae576110f681611e80565b9150816040015115611107576111a3565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461114757816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156111a2578083878060010198508151811061119557611194613656565b5b6020026020010181815250505b5b8060010190506110e6565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546111f5906134ec565b80601f0160208091040260200160405190810160405280929190818152602001828054611221906134ec565b801561126e5780601f106112435761010080835404028352916020019161126e565b820191906000526020600020905b81548152906001019060200180831161125157829003601f168201915b5050505050905090565b60095481565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060818310611302576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061130d611eab565b9050611317611bfb565b85101561132957611326611bfb565b94505b80841115611335578093505b600061134087610f83565b90508486101561136357600086860390508181101561135d578091505b50611368565b600090505b60008167ffffffffffffffff81111561138457611383613685565b5b6040519080825280602002602001820160405280156113b25781602001602082028036833780820191505090505b50905060008214156113ca57809450505050506114d4565b60006113d5886118e7565b9050600081604001516113ea57816000015190505b60008990505b8881141580156114005750848714155b156114c65761140e81611e80565b925082604001511561141f576114bb565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461145f57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ba57808488806001019950815181106114ad576114ac613656565b5b6020026020010181815250505b5b8060010190506113f0565b508583528296505050505050505b9392505050565b600d60009054906101000a900460ff161561152b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152290613141565b60405180910390fd5b6000611535610a9b565b90506001600a5461154691906132fe565b828261155291906132fe565b10611592576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611589906130a1565b60405180910390fd5b6001600b546115a191906132fe565b82106115e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d990613121565b60405180910390fd5b60008290506000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600181101561169c5760018411156116515760018461164a91906133df565b9150611656565b600091505b6001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600954826116aa9190613385565b3410156116ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e390613161565b60405180910390fd5b6116f63385611eb4565b50505050565b611704611b75565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611769576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611776611b75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611823611b75565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118689190613064565b60405180910390a35050565b61187f848484610ab2565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118e1576118aa84848484612071565b6118e0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6118ef612558565b6118f7612558565b6118ff611bfb565b831080611913575061190f611eab565b8310155b15611921578091505061194c565b61192a83611e80565b905080604001511561193f578091505061194c565b611948836121d1565b9150505b919050565b606061195c82611b16565b61199b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199290613101565b60405180910390fd5b60006119a56121f1565b905060008151116119c557604051806020016040528060008152506119f0565b806119cf84612283565b6040516020016119e0929190612f75565b6040516020818303038152906040525b915050919050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a9a611b7d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b01906130c1565b60405180910390fd5b611b1381611dba565b50565b600081611b21611bfb565b11158015611b30575060005482105b8015611b6e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611b856123e4565b73ffffffffffffffffffffffffffffffffffffffff16611ba36111bc565b73ffffffffffffffffffffffffffffffffffffffff1614611bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf0906130e1565b60405180910390fd5b565b60006001905090565b60008082905080611c13611bfb565b11611c9b57600054811015611c9a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611c98575b6000811415611c8e576004600083600190039350838152602001908152602001600020549050611c63565b8092505050611ccd565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d5a8686846123ec565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611db68282604051806020016040528060008152506123f5565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e88612558565b611ea46004600084815260200190815260200160002054612492565b9050919050565b60008054905090565b6000805490506000821415611ef5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f026000848385611d3d565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f7983611f6a6000866000611d43565b611f7385612548565b17611d6b565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461201a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611fdf565b506000821415612056576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061206c6000848385611d96565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612097611b75565b8786866040518563ffffffff1660e01b81526004016120b99493929190612fd4565b602060405180830381600087803b1580156120d357600080fd5b505af192505050801561210457506040513d601f19601f820116820180604052508101906121019190612aa6565b60015b61217e573d8060008114612134576040519150601f19603f3d011682016040523d82523d6000602084013e612139565b606091505b50600081511415612176576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6121d9612558565b6121ea6121e583611c04565b612492565b9050919050565b6060600c8054612200906134ec565b80601f016020809104026020016040519081016040528092919081815260200182805461222c906134ec565b80156122795780601f1061224e57610100808354040283529160200191612279565b820191906000526020600020905b81548152906001019060200180831161225c57829003601f168201915b5050505050905090565b606060008214156122cb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123df565b600082905060005b600082146122fd5780806122e69061354f565b915050600a826122f69190613354565b91506122d3565b60008167ffffffffffffffff81111561231957612318613685565b5b6040519080825280601f01601f19166020018201604052801561234b5781602001600182028036833780820191505090505b5090505b600085146123d85760018261236491906133df565b9150600a856123739190613598565b603061237f91906132fe565b60f81b81838151811061239557612394613656565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123d19190613354565b945061234f565b8093505050505b919050565b600033905090565b60009392505050565b6123ff8383611eb4565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461248d57600080549050600083820390505b61243f6000868380600101945086612071565b612475576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061242c57816000541461248a57600080fd5b50505b505050565b61249a612558565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b8280546125b3906134ec565b90600052602060002090601f0160209004810192826125d5576000855561261c565b82601f106125ee57805160ff191683800117855561261c565b8280016001018555821561261c579182015b8281111561261b578251825591602001919060010190612600565b5b509050612629919061262d565b5090565b5b8082111561264657600081600090555060010161262e565b5090565b600061265d612658846131dc565b6131b7565b905082815260208101848484011115612679576126786136c3565b5b6126848482856134aa565b509392505050565b600061269f61269a8461320d565b6131b7565b9050828152602081018484840111156126bb576126ba6136c3565b5b6126c68482856134aa565b509392505050565b6000813590506126dd8161387a565b92915050565b60008083601f8401126126f9576126f86136b9565b5b8235905067ffffffffffffffff811115612716576127156136b4565b5b602083019150836020820283011115612732576127316136be565b5b9250929050565b60008135905061274881613891565b92915050565b60008135905061275d816138a8565b92915050565b600081519050612772816138a8565b92915050565b600082601f83011261278d5761278c6136b9565b5b813561279d84826020860161264a565b91505092915050565b600082601f8301126127bb576127ba6136b9565b5b81356127cb84826020860161268c565b91505092915050565b6000813590506127e3816138bf565b92915050565b6000602082840312156127ff576127fe6136cd565b5b600061280d848285016126ce565b91505092915050565b6000806040838503121561282d5761282c6136cd565b5b600061283b858286016126ce565b925050602061284c858286016126ce565b9150509250929050565b60008060006060848603121561286f5761286e6136cd565b5b600061287d868287016126ce565b935050602061288e868287016126ce565b925050604061289f868287016127d4565b9150509250925092565b600080600080608085870312156128c3576128c26136cd565b5b60006128d1878288016126ce565b94505060206128e2878288016126ce565b93505060406128f3878288016127d4565b925050606085013567ffffffffffffffff811115612914576129136136c8565b5b61292087828801612778565b91505092959194509250565b60008060408385031215612943576129426136cd565b5b6000612951858286016126ce565b925050602061296285828601612739565b9150509250929050565b60008060408385031215612983576129826136cd565b5b6000612991858286016126ce565b92505060206129a2858286016127d4565b9150509250929050565b6000806000606084860312156129c5576129c46136cd565b5b60006129d3868287016126ce565b93505060206129e4868287016127d4565b92505060406129f5868287016127d4565b9150509250925092565b60008060208385031215612a1657612a156136cd565b5b600083013567ffffffffffffffff811115612a3457612a336136c8565b5b612a40858286016126e3565b92509250509250929050565b600060208284031215612a6257612a616136cd565b5b6000612a7084828501612739565b91505092915050565b600060208284031215612a8f57612a8e6136cd565b5b6000612a9d8482850161274e565b91505092915050565b600060208284031215612abc57612abb6136cd565b5b6000612aca84828501612763565b91505092915050565b600060208284031215612ae957612ae86136cd565b5b600082013567ffffffffffffffff811115612b0757612b066136c8565b5b612b13848285016127a6565b91505092915050565b600060208284031215612b3257612b316136cd565b5b6000612b40848285016127d4565b91505092915050565b60008060408385031215612b6057612b5f6136cd565b5b6000612b6e858286016127d4565b9250506020612b7f858286016126ce565b9150509250929050565b6000612b958383612e8f565b60808301905092915050565b6000612bad8383612f48565b60208301905092915050565b612bc281613413565b82525050565b612bd181613413565b82525050565b6000612be28261325e565b612bec81856132a4565b9350612bf78361323e565b8060005b83811015612c28578151612c0f8882612b89565b9750612c1a8361328a565b925050600181019050612bfb565b5085935050505092915050565b6000612c4082613269565b612c4a81856132b5565b9350612c558361324e565b8060005b83811015612c86578151612c6d8882612ba1565b9750612c7883613297565b925050600181019050612c59565b5085935050505092915050565b612c9c81613425565b82525050565b612cab81613425565b82525050565b6000612cbc82613274565b612cc681856132c6565b9350612cd68185602086016134b9565b612cdf816136d2565b840191505092915050565b6000612cf58261327f565b612cff81856132e2565b9350612d0f8185602086016134b9565b612d18816136d2565b840191505092915050565b6000612d2e8261327f565b612d3881856132f3565b9350612d488185602086016134b9565b80840191505092915050565b6000612d616008836132e2565b9150612d6c826136e3565b602082019050919050565b6000612d846026836132e2565b9150612d8f8261370c565b604082019050919050565b6000612da76005836132f3565b9150612db28261375b565b600582019050919050565b6000612dca6020836132e2565b9150612dd582613784565b602082019050919050565b6000612ded602f836132e2565b9150612df8826137ad565b604082019050919050565b6000612e106019836132e2565b9150612e1b826137fc565b602082019050919050565b6000612e33600e836132e2565b9150612e3e82613825565b602082019050919050565b6000612e566000836132d7565b9150612e618261384e565b600082019050919050565b6000612e796014836132e2565b9150612e8482613851565b602082019050919050565b608082016000820151612ea56000850182612bb9565b506020820151612eb86020850182612f66565b506040820151612ecb6040850182612c93565b506060820151612ede6060850182612f39565b50505050565b608082016000820151612efa6000850182612bb9565b506020820151612f0d6020850182612f66565b506040820151612f206040850182612c93565b506060820151612f336060850182612f39565b50505050565b612f428161347d565b82525050565b612f518161348c565b82525050565b612f608161348c565b82525050565b612f6f81613496565b82525050565b6000612f818285612d23565b9150612f8d8284612d23565b9150612f9882612d9a565b91508190509392505050565b6000612faf82612e49565b9150819050919050565b6000602082019050612fce6000830184612bc8565b92915050565b6000608082019050612fe96000830187612bc8565b612ff66020830186612bc8565b6130036040830185612f57565b81810360608301526130158184612cb1565b905095945050505050565b6000602082019050818103600083015261303a8184612bd7565b905092915050565b6000602082019050818103600083015261305c8184612c35565b905092915050565b60006020820190506130796000830184612ca2565b92915050565b600060208201905081810360008301526130998184612cea565b905092915050565b600060208201905081810360008301526130ba81612d54565b9050919050565b600060208201905081810360008301526130da81612d77565b9050919050565b600060208201905081810360008301526130fa81612dbd565b9050919050565b6000602082019050818103600083015261311a81612de0565b9050919050565b6000602082019050818103600083015261313a81612e03565b9050919050565b6000602082019050818103600083015261315a81612e26565b9050919050565b6000602082019050818103600083015261317a81612e6c565b9050919050565b60006080820190506131966000830184612ee4565b92915050565b60006020820190506131b16000830184612f57565b92915050565b60006131c16131d2565b90506131cd828261351e565b919050565b6000604051905090565b600067ffffffffffffffff8211156131f7576131f6613685565b5b613200826136d2565b9050602081019050919050565b600067ffffffffffffffff82111561322857613227613685565b5b613231826136d2565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006133098261348c565b91506133148361348c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613349576133486135c9565b5b828201905092915050565b600061335f8261348c565b915061336a8361348c565b92508261337a576133796135f8565b5b828204905092915050565b60006133908261348c565b915061339b8361348c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133d4576133d36135c9565b5b828202905092915050565b60006133ea8261348c565b91506133f58361348c565b925082821015613408576134076135c9565b5b828203905092915050565b600061341e8261345d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156134d75780820151818401526020810190506134bc565b838111156134e6576000848401525b50505050565b6000600282049050600182168061350457607f821691505b6020821081141561351857613517613627565b5b50919050565b613527826136d2565b810181811067ffffffffffffffff8211171561354657613545613685565b5b80604052505050565b600061355a8261348c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561358d5761358c6135c9565b5b600182019050919050565b60006135a38261348c565b91506135ae8361348c565b9250826135be576135bd6135f8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f534f4c44204f5554000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d617820506572205472616e73616374696f6e20497320313000000000000000600082015250565b7f4d696e74696e6720506175736564000000000000000000000000000000000000600082015250565b50565b7f494e434f52524543542045544820414d4f554e54000000000000000000000000600082015250565b61388381613413565b811461388e57600080fd5b50565b61389a81613425565b81146138a557600080fd5b50565b6138b181613431565b81146138bc57600080fd5b50565b6138c88161348c565b81146138d357600080fd5b5056fea26469706673582212207bf34a999cb036838182b94d60185d689e48826ef7e78fb0f4ffb803ecc37b4164736f6c63430008070033
Deployed Bytecode Sourcemap
69359:2337:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24324:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25226:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31709:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31150:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71473:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20977:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35416:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70536:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69495:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71556:137;;;;;;;;;;;;;:::i;:::-;;38329:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60907:528;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69593:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26619:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22161:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68466:103;;;;;;;;;;;;;:::i;:::-;;71367:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64783:900;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67818:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25402:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69445:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70662:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61823:2513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69748:780;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32267:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39112:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60320:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70878:373;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69531:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32732:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68724:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24324:639;24409:4;24748:10;24733:25;;:11;:25;;;;:102;;;;24825:10;24810:25;;:11;:25;;;;24733:102;:179;;;;24902:10;24887:25;;:11;:25;;;;24733:179;24713:199;;24324:639;;;:::o;25226:100::-;25280:13;25313:5;25306:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25226:100;:::o;31709:218::-;31785:7;31810:16;31818:7;31810;:16::i;:::-;31805:64;;31835:34;;;;;;;;;;;;;;31805:64;31889:15;:24;31905:7;31889:24;;;;;;;;;;;:30;;;;;;;;;;;;31882:37;;31709:218;;;:::o;31150:400::-;31231:13;31247:16;31255:7;31247;:16::i;:::-;31231:32;;31303:5;31280:28;;:19;:17;:19::i;:::-;:28;;;31276:175;;31328:44;31345:5;31352:19;:17;:19::i;:::-;31328:16;:44::i;:::-;31323:128;;31400:35;;;;;;;;;;;;;;31323:128;31276:175;31496:2;31463:15;:24;31479:7;31463:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31534:7;31530:2;31514:28;;31523:5;31514:28;;;;;;;;;;;;31220:330;31150:400;;:::o;71473:77::-;67704:13;:11;:13::i;:::-;71538:6:::1;71529;;:15;;;;;;;;;;;;;;;;;;71473:77:::0;:::o;20977:323::-;21038:7;21266:15;:13;:15::i;:::-;21251:12;;21235:13;;:28;:46;21228:53;;20977:323;:::o;35416:2817::-;35550:27;35580;35599:7;35580:18;:27::i;:::-;35550:57;;35665:4;35624:45;;35640:19;35624:45;;;35620:86;;35678:28;;;;;;;;;;;;;;35620:86;35720:27;35749:23;35776:35;35803:7;35776:26;:35::i;:::-;35719:92;;;;35911:68;35936:15;35953:4;35959:19;:17;:19::i;:::-;35911:24;:68::i;:::-;35906:180;;35999:43;36016:4;36022:19;:17;:19::i;:::-;35999:16;:43::i;:::-;35994:92;;36051:35;;;;;;;;;;;;;;35994:92;35906:180;36117:1;36103:16;;:2;:16;;;36099:52;;;36128:23;;;;;;;;;;;;;;36099:52;36164:43;36186:4;36192:2;36196:7;36205:1;36164:21;:43::i;:::-;36300:15;36297:160;;;36440:1;36419:19;36412:30;36297:160;36837:18;:24;36856:4;36837:24;;;;;;;;;;;;;;;;36835:26;;;;;;;;;;;;36906:18;:22;36925:2;36906:22;;;;;;;;;;;;;;;;36904:24;;;;;;;;;;;37228:146;37265:2;37314:45;37329:4;37335:2;37339:19;37314:14;:45::i;:::-;17376:8;37286:73;37228:18;:146::i;:::-;37199:17;:26;37217:7;37199:26;;;;;;;;;;;:175;;;;37545:1;17376:8;37494:19;:47;:52;37490:627;;;37567:19;37599:1;37589:7;:11;37567:33;;37756:1;37722:17;:30;37740:11;37722:30;;;;;;;;;;;;:35;37718:384;;;37860:13;;37845:11;:28;37841:242;;38040:19;38007:17;:30;38025:11;38007:30;;;;;;;;;;;:52;;;;37841:242;37718:384;37548:569;37490:627;38164:7;38160:2;38145:27;;38154:4;38145:27;;;;;;;;;;;;38183:42;38204:4;38210:2;38214:7;38223:1;38183:20;:42::i;:::-;35539:2694;;;35416:2817;;;:::o;70536:120::-;67704:13;:11;:13::i;:::-;70617:33:::1;70627:9;70638:11;70617:9;:33::i;:::-;70536:120:::0;;:::o;69495:31::-;;;;:::o;71556:137::-;67704:13;:11;:13::i;:::-;71601:7:::1;71622;:5;:7::i;:::-;71614:21;;71643;71614:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71600:69;;;71684:2;71676:11;;;::::0;::::1;;71593:100;71556:137::o:0;38329:185::-;38467:39;38484:4;38490:2;38494:7;38467:39;;;;;;;;;;;;:16;:39::i;:::-;38329:185;;;:::o;60907:528::-;61051:23;61117:22;61142:8;;:15;;61117:40;;61172:34;61230:14;61209:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;61172:73;;61265:9;61260:125;61281:14;61276:1;:19;61260:125;;61337:32;61357:8;;61366:1;61357:11;;;;;;;:::i;:::-;;;;;;;;61337:19;:32::i;:::-;61321:10;61332:1;61321:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;61297:3;;;;;61260:125;;;;61406:10;61399:17;;;;60907:528;;;;:::o;69593:25::-;;;;;;;;;;;;;:::o;26619:152::-;26691:7;26734:27;26753:7;26734:18;:27::i;:::-;26711:52;;26619:152;;;:::o;22161:233::-;22233:7;22274:1;22257:19;;:5;:19;;;22253:60;;;22285:28;;;;;;;;;;;;;;22253:60;16320:13;22331:18;:25;22350:5;22331:25;;;;;;;;;;;;;;;;:55;22324:62;;22161:233;;;:::o;68466:103::-;67704:13;:11;:13::i;:::-;68531:30:::1;68558:1;68531:18;:30::i;:::-;68466:103::o:0;71367:100::-;67704:13;:11;:13::i;:::-;71451:10:::1;71439:9;:22;;;;;;;;;;;;:::i;:::-;;71367:100:::0;:::o;64783:900::-;64861:16;64915:19;64949:25;64989:22;65014:16;65024:5;65014:9;:16::i;:::-;64989:41;;65045:25;65087:14;65073:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65045:57;;65117:31;;:::i;:::-;65168:9;65180:15;:13;:15::i;:::-;65168:27;;65163:472;65212:14;65197:11;:29;65163:472;;65264:15;65277:1;65264:12;:15::i;:::-;65252:27;;65302:9;:16;;;65298:73;;;65343:8;;65298:73;65419:1;65393:28;;:9;:14;;;:28;;;65389:111;;65466:9;:14;;;65446:34;;65389:111;65543:5;65522:26;;:17;:26;;;65518:102;;;65599:1;65573:8;65582:13;;;;;;65573:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;65518:102;65163:472;65228:3;;;;;65163:472;;;;65656:8;65649:15;;;;;;;64783:900;;;:::o;67818:87::-;67864:7;67891:6;;;;;;;;;;;67884:13;;67818:87;:::o;25402:104::-;25458:13;25491:7;25484:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25402:104;:::o;69445:45::-;;;;:::o;70662:115::-;70725:7;70748:16;:23;70765:5;70748:23;;;;;;;;;;;;;;;;70741:30;;70662:115;;;:::o;61823:2513::-;61966:16;62033:4;62024:5;:13;62020:45;;62046:19;;;;;;;;;;;;;;62020:45;62080:19;62114:17;62134:14;:12;:14::i;:::-;62114:34;;62234:15;:13;:15::i;:::-;62226:5;:23;62222:87;;;62278:15;:13;:15::i;:::-;62270:23;;62222:87;62385:9;62378:4;:16;62374:73;;;62422:9;62415:16;;62374:73;62461:25;62489:16;62499:5;62489:9;:16::i;:::-;62461:44;;62683:4;62675:5;:12;62671:278;;;62708:19;62737:5;62730:4;:12;62708:34;;62779:17;62765:11;:31;62761:111;;;62841:11;62821:31;;62761:111;62689:198;62671:278;;;62932:1;62912:21;;62671:278;62963:25;63005:17;62991:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62963:60;;63063:1;63042:17;:22;63038:78;;;63092:8;63085:15;;;;;;;;63038:78;63260:31;63294:26;63314:5;63294:19;:26::i;:::-;63260:60;;63335:25;63580:9;:16;;;63575:92;;63637:9;:14;;;63617:34;;63575:92;63686:9;63698:5;63686:17;;63681:478;63710:4;63705:1;:9;;:45;;;;;63733:17;63718:11;:32;;63705:45;63681:478;;;63788:15;63801:1;63788:12;:15::i;:::-;63776:27;;63826:9;:16;;;63822:73;;;63867:8;;63822:73;63943:1;63917:28;;:9;:14;;;:28;;;63913:111;;63990:9;:14;;;63970:34;;63913:111;64067:5;64046:26;;:17;:26;;;64042:102;;;64123:1;64097:8;64106:13;;;;;;64097:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;64042:102;63681:478;63752:3;;;;;63681:478;;;;64261:11;64251:8;64244:29;64309:8;64302:15;;;;;;;;61823:2513;;;;;;:::o;69748:780::-;69818:6;;;;;;;;;;;69817:7;69809:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;69854:20;69877:13;:11;:13::i;:::-;69854:36;;69951:1;69938:10;;:14;;;;:::i;:::-;69924:11;69909:12;:26;;;;:::i;:::-;:43;69901:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;70006:1;69996:7;;:11;;;;:::i;:::-;69982;:25;69974:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;70048:19;70070:11;70048:33;;70090:21;70114:16;:28;70131:10;70114:28;;;;;;;;;;;;;;;;70090:52;;70173:1;70157:13;:17;70153:209;;;70205:1;70191:11;:15;70187:121;;;70249:1;70235:11;:15;;;;:::i;:::-;70221:29;;70187:121;;;70295:1;70281:15;;70187:121;70351:1;70320:16;:28;70337:10;70320:28;;;;;;;;;;;;;;;:32;;;;70153:209;70417:16;;70403:11;:30;;;;:::i;:::-;70390:9;:43;;70372:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;70486:30;70492:10;70504:11;70486:5;:30::i;:::-;69800:728;;;69748:780;:::o;32267:308::-;32378:19;:17;:19::i;:::-;32366:31;;:8;:31;;;32362:61;;;32406:17;;;;;;;;;;;;;;32362:61;32488:8;32436:18;:39;32455:19;:17;:19::i;:::-;32436:39;;;;;;;;;;;;;;;:49;32476:8;32436:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32548:8;32512:55;;32527:19;:17;:19::i;:::-;32512:55;;;32558:8;32512:55;;;;;;:::i;:::-;;;;;;;;32267:308;;:::o;39112:399::-;39279:31;39292:4;39298:2;39302:7;39279:12;:31::i;:::-;39343:1;39325:2;:14;;;:19;39321:183;;39364:56;39395:4;39401:2;39405:7;39414:5;39364:30;:56::i;:::-;39359:145;;39448:40;;;;;;;;;;;;;;39359:145;39321:183;39112:399;;;;:::o;60320:428::-;60404:21;;:::i;:::-;60438:31;;:::i;:::-;60494:15;:13;:15::i;:::-;60484:7;:25;:54;;;;60524:14;:12;:14::i;:::-;60513:7;:25;;60484:54;60480:103;;;60562:9;60555:16;;;;;60480:103;60605:21;60618:7;60605:12;:21::i;:::-;60593:33;;60641:9;:16;;;60637:65;;;60681:9;60674:16;;;;;60637:65;60719:21;60732:7;60719:12;:21::i;:::-;60712:28;;;60320:428;;;;:::o;70878:373::-;70952:13;70982:17;70990:8;70982:7;:17::i;:::-;70974:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;71062:28;71093:10;:8;:10::i;:::-;71062:41;;71148:1;71123:14;71117:28;:32;:128;;;;;;;;;;;;;;;;;71185:14;71201:19;:8;:17;:19::i;:::-;71168:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71117:128;71110:135;;;70878:373;;;:::o;69531:27::-;;;;:::o;32732:164::-;32829:4;32853:18;:25;32872:5;32853:25;;;;;;;;;;;;;;;:35;32879:8;32853:35;;;;;;;;;;;;;;;;;;;;;;;;;32846:42;;32732:164;;;;:::o;68724:201::-;67704:13;:11;:13::i;:::-;68833:1:::1;68813:22;;:8;:22;;;;68805:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;68889:28;68908:8;68889:18;:28::i;:::-;68724:201:::0;:::o;33154:282::-;33219:4;33275:7;33256:15;:13;:15::i;:::-;:26;;:66;;;;;33309:13;;33299:7;:23;33256:66;:153;;;;;33408:1;17096:8;33360:17;:26;33378:7;33360:26;;;;;;;;;;;;:44;:49;33256:153;33236:173;;33154:282;;;:::o;54920:105::-;54980:7;55007:10;55000:17;;54920:105;:::o;67983:132::-;68058:12;:10;:12::i;:::-;68047:23;;:7;:5;:7::i;:::-;:23;;;68039:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67983:132::o;70783:87::-;70840:7;70863:1;70856:8;;70783:87;:::o;27774:1275::-;27841:7;27861:12;27876:7;27861:22;;27944:4;27925:15;:13;:15::i;:::-;:23;27921:1061;;27978:13;;27971:4;:20;27967:1015;;;28016:14;28033:17;:23;28051:4;28033:23;;;;;;;;;;;;28016:40;;28150:1;17096:8;28122:6;:24;:29;28118:845;;;28787:113;28804:1;28794:6;:11;28787:113;;;28847:17;:25;28865:6;;;;;;;28847:25;;;;;;;;;;;;28838:34;;28787:113;;;28933:6;28926:13;;;;;;28118:845;27993:989;27967:1015;27921:1061;29010:31;;;;;;;;;;;;;;27774:1275;;;;:::o;34317:479::-;34419:27;34448:23;34489:38;34530:15;:24;34546:7;34530:24;;;;;;;;;;;34489:65;;34701:18;34678:41;;34758:19;34752:26;34733:45;;34663:126;34317:479;;;:::o;33545:659::-;33694:11;33859:16;33852:5;33848:28;33839:37;;34019:16;34008:9;34004:32;33991:45;;34169:15;34158:9;34155:30;34147:5;34136:9;34133:20;34130:56;34120:66;;33545:659;;;;;:::o;40173:159::-;;;;;:::o;54229:311::-;54364:7;54384:16;17500:3;54410:19;:41;;54384:68;;17500:3;54478:31;54489:4;54495:2;54499:9;54478:10;:31::i;:::-;54470:40;;:62;;54463:69;;;54229:311;;;;;:::o;29597:450::-;29677:14;29845:16;29838:5;29834:28;29825:37;;30022:5;30008:11;29983:23;29979:41;29976:52;29969:5;29966:63;29956:73;;29597:450;;;;:::o;40997:158::-;;;;;:::o;48752:112::-;48829:27;48839:2;48843:8;48829:27;;;;;;;;;;;;:9;:27::i;:::-;48752:112;;:::o;69085:191::-;69159:16;69178:6;;;;;;;;;;;69159:25;;69204:8;69195:6;;:17;;;;;;;;;;;;;;;;;;69259:8;69228:40;;69249:8;69228:40;;;;;;;;;;;;69148:128;69085:191;:::o;27222:161::-;27290:21;;:::i;:::-;27331:44;27350:17;:24;27368:5;27350:24;;;;;;;;;;;;27331:18;:44::i;:::-;27324:51;;27222:161;;;:::o;20664:103::-;20719:7;20746:13;;20739:20;;20664:103;:::o;42773:2454::-;42846:20;42869:13;;42846:36;;42909:1;42897:8;:13;42893:44;;;42919:18;;;;;;;;;;;;;;42893:44;42950:61;42980:1;42984:2;42988:12;43002:8;42950:21;:61::i;:::-;43494:1;16458:2;43464:1;:26;;43463:32;43451:8;:45;43425:18;:22;43444:2;43425:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43773:139;43810:2;43864:33;43887:1;43891:2;43895:1;43864:14;:33::i;:::-;43831:30;43852:8;43831:20;:30::i;:::-;:66;43773:18;:139::i;:::-;43739:17;:31;43757:12;43739:31;;;;;;;;;;;:173;;;;43929:16;43960:11;43989:8;43974:12;:23;43960:37;;44244:16;44240:2;44236:25;44224:37;;44616:12;44576:8;44535:1;44473:25;44414:1;44353;44326:335;44741:1;44727:12;44723:20;44681:346;44782:3;44773:7;44770:16;44681:346;;45000:7;44990:8;44987:1;44960:25;44957:1;44954;44949:59;44835:1;44826:7;44822:15;44811:26;;44681:346;;;44685:77;45072:1;45060:8;:13;45056:45;;;45082:19;;;;;;;;;;;;;;45056:45;45134:3;45118:13;:19;;;;43199:1950;;45159:60;45188:1;45192:2;45196:12;45210:8;45159:20;:60::i;:::-;42835:2392;42773:2454;;:::o;41595:716::-;41758:4;41804:2;41779:45;;;41825:19;:17;:19::i;:::-;41846:4;41852:7;41861:5;41779:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41775:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42079:1;42062:6;:13;:18;42058:235;;;42108:40;;;;;;;;;;;;;;42058:235;42251:6;42245:13;42236:6;42232:2;42228:15;42221:38;41775:529;41948:54;;;41938:64;;;:6;:64;;;;41931:71;;;41595:716;;;;;;:::o;26960:166::-;27030:21;;:::i;:::-;27071:47;27090:27;27109:7;27090:18;:27::i;:::-;27071:18;:47::i;:::-;27064:54;;26960:166;;;:::o;71257:104::-;71317:13;71346:9;71339:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71257:104;:::o;3822:723::-;3878:13;4108:1;4099:5;:10;4095:53;;;4126:10;;;;;;;;;;;;;;;;;;;;;4095:53;4158:12;4173:5;4158:20;;4189:14;4214:78;4229:1;4221:4;:9;4214:78;;4247:8;;;;;:::i;:::-;;;;4278:2;4270:10;;;;;:::i;:::-;;;4214:78;;;4302:19;4334:6;4324:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4302:39;;4352:154;4368:1;4359:5;:10;4352:154;;4396:1;4386:11;;;;;:::i;:::-;;;4463:2;4455:5;:10;;;;:::i;:::-;4442:2;:24;;;;:::i;:::-;4429:39;;4412:6;4419;4412:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;4492:2;4483:11;;;;;:::i;:::-;;;4352:154;;;4530:6;4516:21;;;;;3822:723;;;;:::o;66369:98::-;66422:7;66449:10;66442:17;;66369:98;:::o;53930:147::-;54067:6;53930:147;;;;;:::o;47979:689::-;48110:19;48116:2;48120:8;48110:5;:19::i;:::-;48189:1;48171:2;:14;;;:19;48167:483;;48211:11;48225:13;;48211:27;;48257:13;48279:8;48273:3;:14;48257:30;;48306:233;48337:62;48376:1;48380:2;48384:7;;;;;;48393:5;48337:30;:62::i;:::-;48332:167;;48435:40;;;;;;;;;;;;;;48332:167;48534:3;48526:5;:11;48306:233;;48621:3;48604:13;;:20;48600:34;;48626:8;;;48600:34;48192:458;;48167:483;47979:689;;;:::o;29148:366::-;29214:31;;:::i;:::-;29291:6;29258:9;:14;;:41;;;;;;;;;;;16979:3;29344:6;:33;;29310:9;:24;;:68;;;;;;;;;;;29436:1;17096:8;29408:6;:24;:29;;29389:9;:16;;:48;;;;;;;;;;;17500:3;29477:6;:28;;29448:9;:19;;:58;;;;;;;;;;;29148:366;;;:::o;30149:324::-;30219:14;30452:1;30442:8;30439:15;30413:24;30409:46;30399:56;;30149:324;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:619::-;6288:6;6296;6304;6353:2;6341:9;6332:7;6328:23;6324:32;6321:119;;;6359:79;;:::i;:::-;6321:119;6479:1;6504:53;6549:7;6540:6;6529:9;6525:22;6504:53;:::i;:::-;6494:63;;6450:117;6606:2;6632:53;6677:7;6668:6;6657:9;6653:22;6632:53;:::i;:::-;6622:63;;6577:118;6734:2;6760:53;6805:7;6796:6;6785:9;6781:22;6760:53;:::i;:::-;6750:63;;6705:118;6211:619;;;;;:::o;6836:559::-;6922:6;6930;6979:2;6967:9;6958:7;6954:23;6950:32;6947:119;;;6985:79;;:::i;:::-;6947:119;7133:1;7122:9;7118:17;7105:31;7163:18;7155:6;7152:30;7149:117;;;7185:79;;:::i;:::-;7149:117;7298:80;7370:7;7361:6;7350:9;7346:22;7298:80;:::i;:::-;7280:98;;;;7076:312;6836:559;;;;;:::o;7401:323::-;7457:6;7506:2;7494:9;7485:7;7481:23;7477:32;7474:119;;;7512:79;;:::i;:::-;7474:119;7632:1;7657:50;7699:7;7690:6;7679:9;7675:22;7657:50;:::i;:::-;7647:60;;7603:114;7401:323;;;;:::o;7730:327::-;7788:6;7837:2;7825:9;7816:7;7812:23;7808:32;7805:119;;;7843:79;;:::i;:::-;7805:119;7963:1;7988:52;8032:7;8023:6;8012:9;8008:22;7988:52;:::i;:::-;7978:62;;7934:116;7730:327;;;;:::o;8063:349::-;8132:6;8181:2;8169:9;8160:7;8156:23;8152:32;8149:119;;;8187:79;;:::i;:::-;8149:119;8307:1;8332:63;8387:7;8378:6;8367:9;8363:22;8332:63;:::i;:::-;8322:73;;8278:127;8063:349;;;;:::o;8418:509::-;8487:6;8536:2;8524:9;8515:7;8511:23;8507:32;8504:119;;;8542:79;;:::i;:::-;8504:119;8690:1;8679:9;8675:17;8662:31;8720:18;8712:6;8709:30;8706:117;;;8742:79;;:::i;:::-;8706:117;8847:63;8902:7;8893:6;8882:9;8878:22;8847:63;:::i;:::-;8837:73;;8633:287;8418:509;;;;:::o;8933:329::-;8992:6;9041:2;9029:9;9020:7;9016:23;9012:32;9009:119;;;9047:79;;:::i;:::-;9009:119;9167:1;9192:53;9237:7;9228:6;9217:9;9213:22;9192:53;:::i;:::-;9182:63;;9138:117;8933:329;;;;:::o;9268:474::-;9336:6;9344;9393:2;9381:9;9372:7;9368:23;9364:32;9361:119;;;9399:79;;:::i;:::-;9361:119;9519:1;9544:53;9589:7;9580:6;9569:9;9565:22;9544:53;:::i;:::-;9534:63;;9490:117;9646:2;9672:53;9717:7;9708:6;9697:9;9693:22;9672:53;:::i;:::-;9662:63;;9617:118;9268:474;;;;;:::o;9748:303::-;9879:10;9900:108;10004:3;9996:6;9900:108;:::i;:::-;10040:4;10035:3;10031:14;10017:28;;9748:303;;;;:::o;10057:179::-;10126:10;10147:46;10189:3;10181:6;10147:46;:::i;:::-;10225:4;10220:3;10216:14;10202:28;;10057:179;;;;:::o;10242:108::-;10319:24;10337:5;10319:24;:::i;:::-;10314:3;10307:37;10242:108;;:::o;10356:118::-;10443:24;10461:5;10443:24;:::i;:::-;10438:3;10431:37;10356:118;;:::o;10556:980::-;10737:3;10766:85;10845:5;10766:85;:::i;:::-;10867:117;10977:6;10972:3;10867:117;:::i;:::-;10860:124;;11008:87;11089:5;11008:87;:::i;:::-;11118:7;11149:1;11134:377;11159:6;11156:1;11153:13;11134:377;;;11235:6;11229:13;11262:125;11383:3;11368:13;11262:125;:::i;:::-;11255:132;;11410:91;11494:6;11410:91;:::i;:::-;11400:101;;11194:317;11181:1;11178;11174:9;11169:14;;11134:377;;;11138:14;11527:3;11520:10;;10742:794;;;10556:980;;;;:::o;11572:732::-;11691:3;11720:54;11768:5;11720:54;:::i;:::-;11790:86;11869:6;11864:3;11790:86;:::i;:::-;11783:93;;11900:56;11950:5;11900:56;:::i;:::-;11979:7;12010:1;11995:284;12020:6;12017:1;12014:13;11995:284;;;12096:6;12090:13;12123:63;12182:3;12167:13;12123:63;:::i;:::-;12116:70;;12209:60;12262:6;12209:60;:::i;:::-;12199:70;;12055:224;12042:1;12039;12035:9;12030:14;;11995:284;;;11999:14;12295:3;12288:10;;11696:608;;;11572:732;;;;:::o;12310:99::-;12381:21;12396:5;12381:21;:::i;:::-;12376:3;12369:34;12310:99;;:::o;12415:109::-;12496:21;12511:5;12496:21;:::i;:::-;12491:3;12484:34;12415:109;;:::o;12530:360::-;12616:3;12644:38;12676:5;12644:38;:::i;:::-;12698:70;12761:6;12756:3;12698:70;:::i;:::-;12691:77;;12777:52;12822:6;12817:3;12810:4;12803:5;12799:16;12777:52;:::i;:::-;12854:29;12876:6;12854:29;:::i;:::-;12849:3;12845:39;12838:46;;12620:270;12530:360;;;;:::o;12896:364::-;12984:3;13012:39;13045:5;13012:39;:::i;:::-;13067:71;13131:6;13126:3;13067:71;:::i;:::-;13060:78;;13147:52;13192:6;13187:3;13180:4;13173:5;13169:16;13147:52;:::i;:::-;13224:29;13246:6;13224:29;:::i;:::-;13219:3;13215:39;13208:46;;12988:272;12896:364;;;;:::o;13266:377::-;13372:3;13400:39;13433:5;13400:39;:::i;:::-;13455:89;13537:6;13532:3;13455:89;:::i;:::-;13448:96;;13553:52;13598:6;13593:3;13586:4;13579:5;13575:16;13553:52;:::i;:::-;13630:6;13625:3;13621:16;13614:23;;13376:267;13266:377;;;;:::o;13649:365::-;13791:3;13812:66;13876:1;13871:3;13812:66;:::i;:::-;13805:73;;13887:93;13976:3;13887:93;:::i;:::-;14005:2;14000:3;13996:12;13989:19;;13649:365;;;:::o;14020:366::-;14162:3;14183:67;14247:2;14242:3;14183:67;:::i;:::-;14176:74;;14259:93;14348:3;14259:93;:::i;:::-;14377:2;14372:3;14368:12;14361:19;;14020:366;;;:::o;14392:400::-;14552:3;14573:84;14655:1;14650:3;14573:84;:::i;:::-;14566:91;;14666:93;14755:3;14666:93;:::i;:::-;14784:1;14779:3;14775:11;14768:18;;14392:400;;;:::o;14798:366::-;14940:3;14961:67;15025:2;15020:3;14961:67;:::i;:::-;14954:74;;15037:93;15126:3;15037:93;:::i;:::-;15155:2;15150:3;15146:12;15139:19;;14798:366;;;:::o;15170:::-;15312:3;15333:67;15397:2;15392:3;15333:67;:::i;:::-;15326:74;;15409:93;15498:3;15409:93;:::i;:::-;15527:2;15522:3;15518:12;15511:19;;15170:366;;;:::o;15542:::-;15684:3;15705:67;15769:2;15764:3;15705:67;:::i;:::-;15698:74;;15781:93;15870:3;15781:93;:::i;:::-;15899:2;15894:3;15890:12;15883:19;;15542:366;;;:::o;15914:::-;16056:3;16077:67;16141:2;16136:3;16077:67;:::i;:::-;16070:74;;16153:93;16242:3;16153:93;:::i;:::-;16271:2;16266:3;16262:12;16255:19;;15914:366;;;:::o;16286:398::-;16445:3;16466:83;16547:1;16542:3;16466:83;:::i;:::-;16459:90;;16558:93;16647:3;16558:93;:::i;:::-;16676:1;16671:3;16667:11;16660:18;;16286:398;;;:::o;16690:366::-;16832:3;16853:67;16917:2;16912:3;16853:67;:::i;:::-;16846:74;;16929:93;17018:3;16929:93;:::i;:::-;17047:2;17042:3;17038:12;17031:19;;16690:366;;;:::o;17134:864::-;17283:4;17278:3;17274:14;17370:4;17363:5;17359:16;17353:23;17389:63;17446:4;17441:3;17437:14;17423:12;17389:63;:::i;:::-;17298:164;17554:4;17547:5;17543:16;17537:23;17573:61;17628:4;17623:3;17619:14;17605:12;17573:61;:::i;:::-;17472:172;17728:4;17721:5;17717:16;17711:23;17747:57;17798:4;17793:3;17789:14;17775:12;17747:57;:::i;:::-;17654:160;17901:4;17894:5;17890:16;17884:23;17920:61;17975:4;17970:3;17966:14;17952:12;17920:61;:::i;:::-;17824:167;17252:746;17134:864;;:::o;18076:874::-;18235:4;18230:3;18226:14;18322:4;18315:5;18311:16;18305:23;18341:63;18398:4;18393:3;18389:14;18375:12;18341:63;:::i;:::-;18250:164;18506:4;18499:5;18495:16;18489:23;18525:61;18580:4;18575:3;18571:14;18557:12;18525:61;:::i;:::-;18424:172;18680:4;18673:5;18669:16;18663:23;18699:57;18750:4;18745:3;18741:14;18727:12;18699:57;:::i;:::-;18606:160;18853:4;18846:5;18842:16;18836:23;18872:61;18927:4;18922:3;18918:14;18904:12;18872:61;:::i;:::-;18776:167;18204:746;18076:874;;:::o;18956:105::-;19031:23;19048:5;19031:23;:::i;:::-;19026:3;19019:36;18956:105;;:::o;19067:108::-;19144:24;19162:5;19144:24;:::i;:::-;19139:3;19132:37;19067:108;;:::o;19181:118::-;19268:24;19286:5;19268:24;:::i;:::-;19263:3;19256:37;19181:118;;:::o;19305:105::-;19380:23;19397:5;19380:23;:::i;:::-;19375:3;19368:36;19305:105;;:::o;19416:701::-;19697:3;19719:95;19810:3;19801:6;19719:95;:::i;:::-;19712:102;;19831:95;19922:3;19913:6;19831:95;:::i;:::-;19824:102;;19943:148;20087:3;19943:148;:::i;:::-;19936:155;;20108:3;20101:10;;19416:701;;;;;:::o;20123:379::-;20307:3;20329:147;20472:3;20329:147;:::i;:::-;20322:154;;20493:3;20486:10;;20123:379;;;:::o;20508:222::-;20601:4;20639:2;20628:9;20624:18;20616:26;;20652:71;20720:1;20709:9;20705:17;20696:6;20652:71;:::i;:::-;20508:222;;;;:::o;20736:640::-;20931:4;20969:3;20958:9;20954:19;20946:27;;20983:71;21051:1;21040:9;21036:17;21027:6;20983:71;:::i;:::-;21064:72;21132:2;21121:9;21117:18;21108:6;21064:72;:::i;:::-;21146;21214:2;21203:9;21199:18;21190:6;21146:72;:::i;:::-;21265:9;21259:4;21255:20;21250:2;21239:9;21235:18;21228:48;21293:76;21364:4;21355:6;21293:76;:::i;:::-;21285:84;;20736:640;;;;;;;:::o;21382:497::-;21587:4;21625:2;21614:9;21610:18;21602:26;;21674:9;21668:4;21664:20;21660:1;21649:9;21645:17;21638:47;21702:170;21867:4;21858:6;21702:170;:::i;:::-;21694:178;;21382:497;;;;:::o;21885:373::-;22028:4;22066:2;22055:9;22051:18;22043:26;;22115:9;22109:4;22105:20;22101:1;22090:9;22086:17;22079:47;22143:108;22246:4;22237:6;22143:108;:::i;:::-;22135:116;;21885:373;;;;:::o;22264:210::-;22351:4;22389:2;22378:9;22374:18;22366:26;;22402:65;22464:1;22453:9;22449:17;22440:6;22402:65;:::i;:::-;22264:210;;;;:::o;22480:313::-;22593:4;22631:2;22620:9;22616:18;22608:26;;22680:9;22674:4;22670:20;22666:1;22655:9;22651:17;22644:47;22708:78;22781:4;22772:6;22708:78;:::i;:::-;22700:86;;22480:313;;;;:::o;22799:419::-;22965:4;23003:2;22992:9;22988:18;22980:26;;23052:9;23046:4;23042:20;23038:1;23027:9;23023:17;23016:47;23080:131;23206:4;23080:131;:::i;:::-;23072:139;;22799:419;;;:::o;23224:::-;23390:4;23428:2;23417:9;23413:18;23405:26;;23477:9;23471:4;23467:20;23463:1;23452:9;23448:17;23441:47;23505:131;23631:4;23505:131;:::i;:::-;23497:139;;23224:419;;;:::o;23649:::-;23815:4;23853:2;23842:9;23838:18;23830:26;;23902:9;23896:4;23892:20;23888:1;23877:9;23873:17;23866:47;23930:131;24056:4;23930:131;:::i;:::-;23922:139;;23649:419;;;:::o;24074:::-;24240:4;24278:2;24267:9;24263:18;24255:26;;24327:9;24321:4;24317:20;24313:1;24302:9;24298:17;24291:47;24355:131;24481:4;24355:131;:::i;:::-;24347:139;;24074:419;;;:::o;24499:::-;24665:4;24703:2;24692:9;24688:18;24680:26;;24752:9;24746:4;24742:20;24738:1;24727:9;24723:17;24716:47;24780:131;24906:4;24780:131;:::i;:::-;24772:139;;24499:419;;;:::o;24924:::-;25090:4;25128:2;25117:9;25113:18;25105:26;;25177:9;25171:4;25167:20;25163:1;25152:9;25148:17;25141:47;25205:131;25331:4;25205:131;:::i;:::-;25197:139;;24924:419;;;:::o;25349:::-;25515:4;25553:2;25542:9;25538:18;25530:26;;25602:9;25596:4;25592:20;25588:1;25577:9;25573:17;25566:47;25630:131;25756:4;25630:131;:::i;:::-;25622:139;;25349:419;;;:::o;25774:347::-;25929:4;25967:3;25956:9;25952:19;25944:27;;25981:133;26111:1;26100:9;26096:17;26087:6;25981:133;:::i;:::-;25774:347;;;;:::o;26127:222::-;26220:4;26258:2;26247:9;26243:18;26235:26;;26271:71;26339:1;26328:9;26324:17;26315:6;26271:71;:::i;:::-;26127:222;;;;:::o;26355:129::-;26389:6;26416:20;;:::i;:::-;26406:30;;26445:33;26473:4;26465:6;26445:33;:::i;:::-;26355:129;;;:::o;26490:75::-;26523:6;26556:2;26550:9;26540:19;;26490:75;:::o;26571:307::-;26632:4;26722:18;26714:6;26711:30;26708:56;;;26744:18;;:::i;:::-;26708:56;26782:29;26804:6;26782:29;:::i;:::-;26774:37;;26866:4;26860;26856:15;26848:23;;26571:307;;;:::o;26884:308::-;26946:4;27036:18;27028:6;27025:30;27022:56;;;27058:18;;:::i;:::-;27022:56;27096:29;27118:6;27096:29;:::i;:::-;27088:37;;27180:4;27174;27170:15;27162:23;;26884:308;;;:::o;27198:163::-;27296:4;27319:3;27311:11;;27349:4;27344:3;27340:14;27332:22;;27198:163;;;:::o;27367:132::-;27434:4;27457:3;27449:11;;27487:4;27482:3;27478:14;27470:22;;27367:132;;;:::o;27505:145::-;27603:6;27637:5;27631:12;27621:22;;27505:145;;;:::o;27656:114::-;27723:6;27757:5;27751:12;27741:22;;27656:114;;;:::o;27776:98::-;27827:6;27861:5;27855:12;27845:22;;27776:98;;;:::o;27880:99::-;27932:6;27966:5;27960:12;27950:22;;27880:99;;;:::o;27985:144::-;28086:4;28118;28113:3;28109:14;28101:22;;27985:144;;;:::o;28135:113::-;28205:4;28237;28232:3;28228:14;28220:22;;28135:113;;;:::o;28254:215::-;28384:11;28418:6;28413:3;28406:19;28458:4;28453:3;28449:14;28434:29;;28254:215;;;;:::o;28475:184::-;28574:11;28608:6;28603:3;28596:19;28648:4;28643:3;28639:14;28624:29;;28475:184;;;;:::o;28665:168::-;28748:11;28782:6;28777:3;28770:19;28822:4;28817:3;28813:14;28798:29;;28665:168;;;;:::o;28839:147::-;28940:11;28977:3;28962:18;;28839:147;;;;:::o;28992:169::-;29076:11;29110:6;29105:3;29098:19;29150:4;29145:3;29141:14;29126:29;;28992:169;;;;:::o;29167:148::-;29269:11;29306:3;29291:18;;29167:148;;;;:::o;29321:305::-;29361:3;29380:20;29398:1;29380:20;:::i;:::-;29375:25;;29414:20;29432:1;29414:20;:::i;:::-;29409:25;;29568:1;29500:66;29496:74;29493:1;29490:81;29487:107;;;29574:18;;:::i;:::-;29487:107;29618:1;29615;29611:9;29604:16;;29321:305;;;;:::o;29632:185::-;29672:1;29689:20;29707:1;29689:20;:::i;:::-;29684:25;;29723:20;29741:1;29723:20;:::i;:::-;29718:25;;29762:1;29752:35;;29767:18;;:::i;:::-;29752:35;29809:1;29806;29802:9;29797:14;;29632:185;;;;:::o;29823:348::-;29863:7;29886:20;29904:1;29886:20;:::i;:::-;29881:25;;29920:20;29938:1;29920:20;:::i;:::-;29915:25;;30108:1;30040:66;30036:74;30033:1;30030:81;30025:1;30018:9;30011:17;30007:105;30004:131;;;30115:18;;:::i;:::-;30004:131;30163:1;30160;30156:9;30145:20;;29823:348;;;;:::o;30177:191::-;30217:4;30237:20;30255:1;30237:20;:::i;:::-;30232:25;;30271:20;30289:1;30271:20;:::i;:::-;30266:25;;30310:1;30307;30304:8;30301:34;;;30315:18;;:::i;:::-;30301:34;30360:1;30357;30353:9;30345:17;;30177:191;;;;:::o;30374:96::-;30411:7;30440:24;30458:5;30440:24;:::i;:::-;30429:35;;30374:96;;;:::o;30476:90::-;30510:7;30553:5;30546:13;30539:21;30528:32;;30476:90;;;:::o;30572:149::-;30608:7;30648:66;30641:5;30637:78;30626:89;;30572:149;;;:::o;30727:126::-;30764:7;30804:42;30797:5;30793:54;30782:65;;30727:126;;;:::o;30859:91::-;30895:7;30935:8;30928:5;30924:20;30913:31;;30859:91;;;:::o;30956:77::-;30993:7;31022:5;31011:16;;30956:77;;;:::o;31039:101::-;31075:7;31115:18;31108:5;31104:30;31093:41;;31039:101;;;:::o;31146:154::-;31230:6;31225:3;31220;31207:30;31292:1;31283:6;31278:3;31274:16;31267:27;31146:154;;;:::o;31306:307::-;31374:1;31384:113;31398:6;31395:1;31392:13;31384:113;;;31483:1;31478:3;31474:11;31468:18;31464:1;31459:3;31455:11;31448:39;31420:2;31417:1;31413:10;31408:15;;31384:113;;;31515:6;31512:1;31509:13;31506:101;;;31595:1;31586:6;31581:3;31577:16;31570:27;31506:101;31355:258;31306:307;;;:::o;31619:320::-;31663:6;31700:1;31694:4;31690:12;31680:22;;31747:1;31741:4;31737:12;31768:18;31758:81;;31824:4;31816:6;31812:17;31802:27;;31758:81;31886:2;31878:6;31875:14;31855:18;31852:38;31849:84;;;31905:18;;:::i;:::-;31849:84;31670:269;31619:320;;;:::o;31945:281::-;32028:27;32050:4;32028:27;:::i;:::-;32020:6;32016:40;32158:6;32146:10;32143:22;32122:18;32110:10;32107:34;32104:62;32101:88;;;32169:18;;:::i;:::-;32101:88;32209:10;32205:2;32198:22;31988:238;31945:281;;:::o;32232:233::-;32271:3;32294:24;32312:5;32294:24;:::i;:::-;32285:33;;32340:66;32333:5;32330:77;32327:103;;;32410:18;;:::i;:::-;32327:103;32457:1;32450:5;32446:13;32439:20;;32232:233;;;:::o;32471:176::-;32503:1;32520:20;32538:1;32520:20;:::i;:::-;32515:25;;32554:20;32572:1;32554:20;:::i;:::-;32549:25;;32593:1;32583:35;;32598:18;;:::i;:::-;32583:35;32639:1;32636;32632:9;32627:14;;32471:176;;;;:::o;32653:180::-;32701:77;32698:1;32691:88;32798:4;32795:1;32788:15;32822:4;32819:1;32812:15;32839:180;32887:77;32884:1;32877:88;32984:4;32981:1;32974:15;33008:4;33005:1;32998:15;33025:180;33073:77;33070:1;33063:88;33170:4;33167:1;33160:15;33194:4;33191:1;33184:15;33211:180;33259:77;33256:1;33249:88;33356:4;33353:1;33346:15;33380:4;33377:1;33370:15;33397:180;33445:77;33442:1;33435:88;33542:4;33539:1;33532:15;33566:4;33563:1;33556:15;33583:117;33692:1;33689;33682:12;33706:117;33815:1;33812;33805:12;33829:117;33938:1;33935;33928:12;33952:117;34061:1;34058;34051:12;34075:117;34184:1;34181;34174:12;34198:117;34307:1;34304;34297:12;34321:102;34362:6;34413:2;34409:7;34404:2;34397:5;34393:14;34389:28;34379:38;;34321:102;;;:::o;34429:158::-;34569:10;34565:1;34557:6;34553:14;34546:34;34429:158;:::o;34593:225::-;34733:34;34729:1;34721:6;34717:14;34710:58;34802:8;34797:2;34789:6;34785:15;34778:33;34593:225;:::o;34824:155::-;34964:7;34960:1;34952:6;34948:14;34941:31;34824:155;:::o;34985:182::-;35125:34;35121:1;35113:6;35109:14;35102:58;34985:182;:::o;35173:234::-;35313:34;35309:1;35301:6;35297:14;35290:58;35382:17;35377:2;35369:6;35365:15;35358:42;35173:234;:::o;35413:175::-;35553:27;35549:1;35541:6;35537:14;35530:51;35413:175;:::o;35594:164::-;35734:16;35730:1;35722:6;35718:14;35711:40;35594:164;:::o;35764:114::-;;:::o;35884:170::-;36024:22;36020:1;36012:6;36008:14;36001:46;35884:170;:::o;36060:122::-;36133:24;36151:5;36133:24;:::i;:::-;36126:5;36123:35;36113:63;;36172:1;36169;36162:12;36113:63;36060:122;:::o;36188:116::-;36258:21;36273:5;36258:21;:::i;:::-;36251:5;36248:32;36238:60;;36294:1;36291;36284:12;36238:60;36188:116;:::o;36310:120::-;36382:23;36399:5;36382:23;:::i;:::-;36375:5;36372:34;36362:62;;36420:1;36417;36410:12;36362:62;36310:120;:::o;36436:122::-;36509:24;36527:5;36509:24;:::i;:::-;36502:5;36499:35;36489:63;;36548:1;36545;36538:12;36489:63;36436:122;:::o
Swarm Source
ipfs://7bf34a999cb036838182b94d60185d689e48826ef7e78fb0f4ffb803ecc37b41
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.