ERC-721
Overview
Max Total Supply
335 RI
Holders
77
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 RILoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RuggInsurance
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-22 */ // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @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 payable; /** * @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 payable; /** * @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.3 // 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 { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). 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 payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable 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 payable 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 payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. 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 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // 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: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // 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/RugInsurance.sol pragma solidity ^0.8.7; contract RuggInsurance is Ownable, ERC721A, ReentrancyGuard { // Token/Mint data uint256 public mMaxTokenSupply = 4000; uint256 public mCapPerTxPublic = 5; uint256 public mPublicPrice = 0.04 ether; bool public mPublicSaleIsActive = false; string private mBaseURI = ""; bytes32 public mMerkleRoot; constructor() ERC721A("RugInsurance", "RI") { } /// Functions for minting function mint(uint256 quantity) external payable { require(mPublicSaleIsActive, "Public sale must be active to mint"); require(quantity <= mCapPerTxPublic, "Purchase quantity exceeds transaction max"); require(quantity + totalSupply() <= mMaxTokenSupply, "Purchase would exceed max supply"); require(quantity * mPublicPrice <= msg.value, "Ether value sent is not enough"); _safeMint(msg.sender, quantity); } function reserveMint(address[] calldata recipients, uint256[] calldata quantities) external onlyOwner nonReentrant { require(recipients.length == quantities.length, "Array lengths must match"); // Ensure total quantities doesn't exceed supply uint256 totalQuantity = 0; for(uint256 i = 0; i < quantities.length; i++){ totalQuantity += quantities[i]; } require(totalQuantity + totalSupply() <= mMaxTokenSupply, "Reserve mint would exceed max supply"); // Mint for each address for (uint256 i = 0; i < recipients.length; i++) { _safeMint(recipients[i], quantities[i]); } } /// Functions for managing token metadata function setBaseURI(string calldata baseURI) external onlyOwner { mBaseURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return mBaseURI; } /// Functions to change mint state - ONLY OWNER function setMintPrice(uint256 newPrice) external onlyOwner { mPublicPrice = newPrice; } function flipSaleState() external onlyOwner { mPublicSaleIsActive = !mPublicSaleIsActive; } /// Ether withdrawal - ONLY OWNER function forceWithdraw(uint256 amount, address payable to) external onlyOwner nonReentrant { (bool success, ) = payable(to).call{value: amount}(""); require(success, "Transfer failed."); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address payable","name":"to","type":"address"}],"name":"forceWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mCapPerTxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mMaxTokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mPublicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mPublicSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"}],"name":"reserveMint","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":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052610fa0600a556005600b55668e1bc9bf040000600c556000600d60006101000a81548160ff02191690831515021790555060405180602001604052806000815250600e90805190602001906200005c92919062000220565b503480156200006a57600080fd5b506040518060400160405280600c81526020017f527567496e737572616e636500000000000000000000000000000000000000008152506040518060400160405280600281526020017f5249000000000000000000000000000000000000000000000000000000000000815250620000f7620000eb6200014f60201b60201c565b6200015760201b60201c565b81600390805190602001906200010f92919062000220565b5080600490805190602001906200012892919062000220565b50620001396200021b60201b60201c565b6001819055505050600160098190555062000335565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b8280546200022e90620002d0565b90600052602060002090601f0160209004810192826200025257600085556200029e565b82601f106200026d57805160ff19168380011785556200029e565b828001600101855582156200029e579182015b828111156200029d57825182559160200191906001019062000280565b5b509050620002ad9190620002b1565b5090565b5b80821115620002cc576000816000905550600101620002b2565b5090565b60006002820490506001821680620002e957607f821691505b602082108114156200030057620002ff62000306565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612f7480620003456000396000f3fe6080604052600436106101b75760003560e01c80638734c6ea116100ec578063c0a58fa91161008a578063dbe72ba611610064578063dbe72ba6146105a3578063e985e9c5146105ce578063f2fde38b1461060b578063f4a0a52814610634576101b7565b8063c0a58fa914610510578063c85a18911461053b578063c87b56dd14610566576101b7565b8063963565e1116100c6578063963565e114610486578063a0712d68146104af578063a22cb465146104cb578063b88d4fde146104f4576101b7565b80638734c6ea146104055780638da5cb5b1461043057806395d89b411461045b576101b7565b806334918dfd1161015957806355f804b31161013357806355f804b31461034b5780636352211e1461037457806370a08231146103b1578063715018a6146103ee576101b7565b806334918dfd146102ef57806342842e0e146103065780634ef020b214610322576101b7565b8063095ea7b311610195578063095ea7b314610261578063156bed9f1461027d57806318160ddd146102a857806323b872dd146102d3576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612312565b61065d565b6040516101f09190612726565b60405180910390f35b34801561020557600080fd5b5061020e6106ef565b60405161021b919061275c565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906123b9565b610781565b60405161025891906126bf565b60405180910390f35b61027b60048036038101906102769190612251565b610800565b005b34801561028957600080fd5b50610292610944565b60405161029f91906128be565b60405180910390f35b3480156102b457600080fd5b506102bd61094a565b6040516102ca91906128be565b60405180910390f35b6102ed60048036038101906102e8919061213b565b610961565b005b3480156102fb57600080fd5b50610304610c86565b005b610320600480360381019061031b919061213b565b610cba565b005b34801561032e57600080fd5b50610349600480360381019061034491906123e6565b610cda565b005b34801561035757600080fd5b50610372600480360381019061036d919061236c565b610de9565b005b34801561038057600080fd5b5061039b600480360381019061039691906123b9565b610e07565b6040516103a891906126bf565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d391906120ce565b610e19565b6040516103e591906128be565b60405180910390f35b3480156103fa57600080fd5b50610403610ed2565b005b34801561041157600080fd5b5061041a610ee6565b6040516104279190612726565b60405180910390f35b34801561043c57600080fd5b50610445610ef9565b60405161045291906126bf565b60405180910390f35b34801561046757600080fd5b50610470610f22565b60405161047d919061275c565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a89190612291565b610fb4565b005b6104c960048036038101906104c491906123b9565b61116e565b005b3480156104d757600080fd5b506104f260048036038101906104ed9190612211565b6112b6565b005b61050e6004803603810190610509919061218e565b6113c1565b005b34801561051c57600080fd5b50610525611434565b60405161053291906128be565b60405180910390f35b34801561054757600080fd5b5061055061143a565b60405161055d91906128be565b60405180910390f35b34801561057257600080fd5b5061058d600480360381019061058891906123b9565b611440565b60405161059a919061275c565b60405180910390f35b3480156105af57600080fd5b506105b86114df565b6040516105c59190612741565b60405180910390f35b3480156105da57600080fd5b506105f560048036038101906105f091906120fb565b6114e5565b6040516106029190612726565b60405180910390f35b34801561061757600080fd5b50610632600480360381019061062d91906120ce565b611579565b005b34801561064057600080fd5b5061065b600480360381019061065691906123b9565b6115fd565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106e85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546106fe90612aff565b80601f016020809104026020016040519081016040528092919081815260200182805461072a90612aff565b80156107775780601f1061074c57610100808354040283529160200191610777565b820191906000526020600020905b81548152906001019060200180831161075a57829003601f168201915b5050505050905090565b600061078c8261160f565b6107c2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080b82610e07565b90508073ffffffffffffffffffffffffffffffffffffffff1661082c61166e565b73ffffffffffffffffffffffffffffffffffffffff161461088f576108588161085361166e565b6114e5565b61088e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b6000610954611676565b6002546001540303905090565b600061096c8261167b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109d3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806109df84611749565b915091506109f581876109f061166e565b611770565b610a4157610a0a86610a0561166e565b6114e5565b610a40576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610aa8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ab586868660016117b4565b8015610ac057600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b8e85610b6a8888876117ba565b7c0200000000000000000000000000000000000000000000000000000000176117e2565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c16576000600185019050600060056000838152602001908152602001600020541415610c14576001548114610c13578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c7e868686600161180d565b505050505050565b610c8e611813565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610cd5838383604051806020016040528060008152506113c1565b505050565b610ce2611813565b60026009541415610d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1f9061287e565b60405180910390fd5b600260098190555060008173ffffffffffffffffffffffffffffffffffffffff1683604051610d56906126aa565b60006040518083038185875af1925050503d8060008114610d93576040519150601f19603f3d011682016040523d82523d6000602084013e610d98565b606091505b5050905080610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd39061285e565b60405180910390fd5b5060016009819055505050565b610df1611813565b8181600e9190610e02929190611e3b565b505050565b6000610e128261167b565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e81576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610eda611813565b610ee46000611891565b565b600d60009054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610f3190612aff565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5d90612aff565b8015610faa5780601f10610f7f57610100808354040283529160200191610faa565b820191906000526020600020905b815481529060010190602001808311610f8d57829003601f168201915b5050505050905090565b610fbc611813565b60026009541415611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff99061287e565b60405180910390fd5b6002600981905550818190508484905014611052576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110499061283e565b60405180910390fd5b6000805b8383905081101561109b5783838281811061107457611073612c09565b5b9050602002013582611086919061297d565b9150808061109390612b62565b915050611056565b50600a546110a761094a565b826110b2919061297d565b11156110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea906127fe565b60405180910390fd5b60005b8585905081101561115e5761114b86868381811061111757611116612c09565b5b905060200201602081019061112c91906120ce565b85858481811061113f5761113e612c09565b5b90506020020135611955565b808061115690612b62565b9150506110f6565b5050600160098190555050505050565b600d60009054906101000a900460ff166111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b49061277e565b60405180910390fd5b600b54811115611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f99061279e565b60405180910390fd5b600a5461120d61094a565b82611218919061297d565b1115611259576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611250906127de565b60405180910390fd5b34600c548261126891906129d3565b11156112a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a09061289e565b60405180910390fd5b6112b33382611955565b50565b80600860006112c361166e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661137061166e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113b59190612726565b60405180910390a35050565b6113cc848484610961565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461142e576113f784848484611973565b61142d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a5481565b600c5481565b606061144b8261160f565b611481576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061148b611ad3565b90506000815114156114ac57604051806020016040528060008152506114d7565b806114b684611b65565b6040516020016114c7929190612686565b6040516020818303038152906040525b915050919050565b600f5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611581611813565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e8906127be565b60405180910390fd5b6115fa81611891565b50565b611605611813565b80600c8190555050565b60008161161a611676565b11158015611629575060015482105b8015611667575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061168a611676565b11611712576001548110156117115760006005600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561170f575b60008114156117055760056000836001900393508381526020019081526020016000205490506116da565b8092505050611744565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86117d1868684611bbe565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61181b611bc7565b73ffffffffffffffffffffffffffffffffffffffff16611839610ef9565b73ffffffffffffffffffffffffffffffffffffffff161461188f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118869061281e565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61196f828260405180602001604052806000815250611bcf565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261199961166e565b8786866040518563ffffffff1660e01b81526004016119bb94939291906126da565b602060405180830381600087803b1580156119d557600080fd5b505af1925050508015611a0657506040513d601f19601f82011682018060405250810190611a03919061233f565b60015b611a80573d8060008114611a36576040519150601f19603f3d011682016040523d82523d6000602084013e611a3b565b606091505b50600081511415611a78576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054611ae290612aff565b80601f0160208091040260200160405190810160405280929190818152602001828054611b0e90612aff565b8015611b5b5780601f10611b3057610100808354040283529160200191611b5b565b820191906000526020600020905b815481529060010190602001808311611b3e57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611ba957600184039350600a81066030018453600a8104905080611ba457611ba9565b611b7e565b50828103602084039350808452505050919050565b60009392505050565b600033905090565b611bd98383611c6d565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c685760006001549050600083820390505b611c1a6000868380600101945086611973565b611c50576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c07578160015414611c6557600080fd5b50505b505050565b600060015490506000821415611caf576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cbc60008483856117b4565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d3383611d2460008660006117ba565b611d2d85611e2b565b176117e2565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611dd457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611d99565b506000821415611e10576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050611e26600084838561180d565b505050565b60006001821460e11b9050919050565b828054611e4790612aff565b90600052602060002090601f016020900481019282611e695760008555611eb0565b82601f10611e8257803560ff1916838001178555611eb0565b82800160010185558215611eb0579182015b82811115611eaf578235825591602001919060010190611e94565b5b509050611ebd9190611ec1565b5090565b5b80821115611eda576000816000905550600101611ec2565b5090565b6000611ef1611eec846128fe565b6128d9565b905082815260208101848484011115611f0d57611f0c612c76565b5b611f18848285612abd565b509392505050565b600081359050611f2f81612ecb565b92915050565b600081359050611f4481612ee2565b92915050565b60008083601f840112611f6057611f5f612c6c565b5b8235905067ffffffffffffffff811115611f7d57611f7c612c67565b5b602083019150836020820283011115611f9957611f98612c71565b5b9250929050565b60008083601f840112611fb657611fb5612c6c565b5b8235905067ffffffffffffffff811115611fd357611fd2612c67565b5b602083019150836020820283011115611fef57611fee612c71565b5b9250929050565b60008135905061200581612ef9565b92915050565b60008135905061201a81612f10565b92915050565b60008151905061202f81612f10565b92915050565b600082601f83011261204a57612049612c6c565b5b813561205a848260208601611ede565b91505092915050565b60008083601f84011261207957612078612c6c565b5b8235905067ffffffffffffffff81111561209657612095612c67565b5b6020830191508360018202830111156120b2576120b1612c71565b5b9250929050565b6000813590506120c881612f27565b92915050565b6000602082840312156120e4576120e3612c80565b5b60006120f284828501611f20565b91505092915050565b6000806040838503121561211257612111612c80565b5b600061212085828601611f20565b925050602061213185828601611f20565b9150509250929050565b60008060006060848603121561215457612153612c80565b5b600061216286828701611f20565b935050602061217386828701611f20565b9250506040612184868287016120b9565b9150509250925092565b600080600080608085870312156121a8576121a7612c80565b5b60006121b687828801611f20565b94505060206121c787828801611f20565b93505060406121d8878288016120b9565b925050606085013567ffffffffffffffff8111156121f9576121f8612c7b565b5b61220587828801612035565b91505092959194509250565b6000806040838503121561222857612227612c80565b5b600061223685828601611f20565b925050602061224785828601611ff6565b9150509250929050565b6000806040838503121561226857612267612c80565b5b600061227685828601611f20565b9250506020612287858286016120b9565b9150509250929050565b600080600080604085870312156122ab576122aa612c80565b5b600085013567ffffffffffffffff8111156122c9576122c8612c7b565b5b6122d587828801611f4a565b9450945050602085013567ffffffffffffffff8111156122f8576122f7612c7b565b5b61230487828801611fa0565b925092505092959194509250565b60006020828403121561232857612327612c80565b5b60006123368482850161200b565b91505092915050565b60006020828403121561235557612354612c80565b5b600061236384828501612020565b91505092915050565b6000806020838503121561238357612382612c80565b5b600083013567ffffffffffffffff8111156123a1576123a0612c7b565b5b6123ad85828601612063565b92509250509250929050565b6000602082840312156123cf576123ce612c80565b5b60006123dd848285016120b9565b91505092915050565b600080604083850312156123fd576123fc612c80565b5b600061240b858286016120b9565b925050602061241c85828601611f35565b9150509250929050565b61242f81612a2d565b82525050565b61243e81612a51565b82525050565b61244d81612a5d565b82525050565b600061245e8261292f565b6124688185612945565b9350612478818560208601612acc565b61248181612c85565b840191505092915050565b60006124978261293a565b6124a18185612961565b93506124b1818560208601612acc565b6124ba81612c85565b840191505092915050565b60006124d08261293a565b6124da8185612972565b93506124ea818560208601612acc565b80840191505092915050565b6000612503602283612961565b915061250e82612c96565b604082019050919050565b6000612526602983612961565b915061253182612ce5565b604082019050919050565b6000612549602683612961565b915061255482612d34565b604082019050919050565b600061256c602083612961565b915061257782612d83565b602082019050919050565b600061258f602483612961565b915061259a82612dac565b604082019050919050565b60006125b2602083612961565b91506125bd82612dfb565b602082019050919050565b60006125d5601883612961565b91506125e082612e24565b602082019050919050565b60006125f8600083612956565b915061260382612e4d565b600082019050919050565b600061261b601083612961565b915061262682612e50565b602082019050919050565b600061263e601f83612961565b915061264982612e79565b602082019050919050565b6000612661601e83612961565b915061266c82612ea2565b602082019050919050565b61268081612ab3565b82525050565b600061269282856124c5565b915061269e82846124c5565b91508190509392505050565b60006126b5826125eb565b9150819050919050565b60006020820190506126d46000830184612426565b92915050565b60006080820190506126ef6000830187612426565b6126fc6020830186612426565b6127096040830185612677565b818103606083015261271b8184612453565b905095945050505050565b600060208201905061273b6000830184612435565b92915050565b60006020820190506127566000830184612444565b92915050565b60006020820190508181036000830152612776818461248c565b905092915050565b60006020820190508181036000830152612797816124f6565b9050919050565b600060208201905081810360008301526127b781612519565b9050919050565b600060208201905081810360008301526127d78161253c565b9050919050565b600060208201905081810360008301526127f78161255f565b9050919050565b6000602082019050818103600083015261281781612582565b9050919050565b60006020820190508181036000830152612837816125a5565b9050919050565b60006020820190508181036000830152612857816125c8565b9050919050565b600060208201905081810360008301526128778161260e565b9050919050565b6000602082019050818103600083015261289781612631565b9050919050565b600060208201905081810360008301526128b781612654565b9050919050565b60006020820190506128d36000830184612677565b92915050565b60006128e36128f4565b90506128ef8282612b31565b919050565b6000604051905090565b600067ffffffffffffffff82111561291957612918612c38565b5b61292282612c85565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061298882612ab3565b915061299383612ab3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156129c8576129c7612bab565b5b828201905092915050565b60006129de82612ab3565b91506129e983612ab3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a2257612a21612bab565b5b828202905092915050565b6000612a3882612a93565b9050919050565b6000612a4a82612a93565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612aea578082015181840152602081019050612acf565b83811115612af9576000848401525b50505050565b60006002820490506001821680612b1757607f821691505b60208210811415612b2b57612b2a612bda565b5b50919050565b612b3a82612c85565b810181811067ffffffffffffffff82111715612b5957612b58612c38565b5b80604052505050565b6000612b6d82612ab3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ba057612b9f612bab565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5075626c69632073616c65206d7573742062652061637469766520746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f5075726368617365207175616e746974792065786365656473207472616e736160008201527f6374696f6e206d61780000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b7f52657365727665206d696e7420776f756c6420657863656564206d617820737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4172726179206c656e67746873206d757374206d617463680000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f45746865722076616c75652073656e74206973206e6f7420656e6f7567680000600082015250565b612ed481612a2d565b8114612edf57600080fd5b50565b612eeb81612a3f565b8114612ef657600080fd5b50565b612f0281612a51565b8114612f0d57600080fd5b50565b612f1981612a67565b8114612f2457600080fd5b50565b612f3081612ab3565b8114612f3b57600080fd5b5056fea2646970667358221220b7dd0c4040885897a9628892a9d10bf0e987c14736f19e2c1e835077fe042e4364736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101b75760003560e01c80638734c6ea116100ec578063c0a58fa91161008a578063dbe72ba611610064578063dbe72ba6146105a3578063e985e9c5146105ce578063f2fde38b1461060b578063f4a0a52814610634576101b7565b8063c0a58fa914610510578063c85a18911461053b578063c87b56dd14610566576101b7565b8063963565e1116100c6578063963565e114610486578063a0712d68146104af578063a22cb465146104cb578063b88d4fde146104f4576101b7565b80638734c6ea146104055780638da5cb5b1461043057806395d89b411461045b576101b7565b806334918dfd1161015957806355f804b31161013357806355f804b31461034b5780636352211e1461037457806370a08231146103b1578063715018a6146103ee576101b7565b806334918dfd146102ef57806342842e0e146103065780634ef020b214610322576101b7565b8063095ea7b311610195578063095ea7b314610261578063156bed9f1461027d57806318160ddd146102a857806323b872dd146102d3576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612312565b61065d565b6040516101f09190612726565b60405180910390f35b34801561020557600080fd5b5061020e6106ef565b60405161021b919061275c565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906123b9565b610781565b60405161025891906126bf565b60405180910390f35b61027b60048036038101906102769190612251565b610800565b005b34801561028957600080fd5b50610292610944565b60405161029f91906128be565b60405180910390f35b3480156102b457600080fd5b506102bd61094a565b6040516102ca91906128be565b60405180910390f35b6102ed60048036038101906102e8919061213b565b610961565b005b3480156102fb57600080fd5b50610304610c86565b005b610320600480360381019061031b919061213b565b610cba565b005b34801561032e57600080fd5b50610349600480360381019061034491906123e6565b610cda565b005b34801561035757600080fd5b50610372600480360381019061036d919061236c565b610de9565b005b34801561038057600080fd5b5061039b600480360381019061039691906123b9565b610e07565b6040516103a891906126bf565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d391906120ce565b610e19565b6040516103e591906128be565b60405180910390f35b3480156103fa57600080fd5b50610403610ed2565b005b34801561041157600080fd5b5061041a610ee6565b6040516104279190612726565b60405180910390f35b34801561043c57600080fd5b50610445610ef9565b60405161045291906126bf565b60405180910390f35b34801561046757600080fd5b50610470610f22565b60405161047d919061275c565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a89190612291565b610fb4565b005b6104c960048036038101906104c491906123b9565b61116e565b005b3480156104d757600080fd5b506104f260048036038101906104ed9190612211565b6112b6565b005b61050e6004803603810190610509919061218e565b6113c1565b005b34801561051c57600080fd5b50610525611434565b60405161053291906128be565b60405180910390f35b34801561054757600080fd5b5061055061143a565b60405161055d91906128be565b60405180910390f35b34801561057257600080fd5b5061058d600480360381019061058891906123b9565b611440565b60405161059a919061275c565b60405180910390f35b3480156105af57600080fd5b506105b86114df565b6040516105c59190612741565b60405180910390f35b3480156105da57600080fd5b506105f560048036038101906105f091906120fb565b6114e5565b6040516106029190612726565b60405180910390f35b34801561061757600080fd5b50610632600480360381019061062d91906120ce565b611579565b005b34801561064057600080fd5b5061065b600480360381019061065691906123b9565b6115fd565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106e85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546106fe90612aff565b80601f016020809104026020016040519081016040528092919081815260200182805461072a90612aff565b80156107775780601f1061074c57610100808354040283529160200191610777565b820191906000526020600020905b81548152906001019060200180831161075a57829003601f168201915b5050505050905090565b600061078c8261160f565b6107c2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080b82610e07565b90508073ffffffffffffffffffffffffffffffffffffffff1661082c61166e565b73ffffffffffffffffffffffffffffffffffffffff161461088f576108588161085361166e565b6114e5565b61088e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b6000610954611676565b6002546001540303905090565b600061096c8261167b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109d3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806109df84611749565b915091506109f581876109f061166e565b611770565b610a4157610a0a86610a0561166e565b6114e5565b610a40576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610aa8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ab586868660016117b4565b8015610ac057600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b8e85610b6a8888876117ba565b7c0200000000000000000000000000000000000000000000000000000000176117e2565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c16576000600185019050600060056000838152602001908152602001600020541415610c14576001548114610c13578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c7e868686600161180d565b505050505050565b610c8e611813565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610cd5838383604051806020016040528060008152506113c1565b505050565b610ce2611813565b60026009541415610d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1f9061287e565b60405180910390fd5b600260098190555060008173ffffffffffffffffffffffffffffffffffffffff1683604051610d56906126aa565b60006040518083038185875af1925050503d8060008114610d93576040519150601f19603f3d011682016040523d82523d6000602084013e610d98565b606091505b5050905080610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd39061285e565b60405180910390fd5b5060016009819055505050565b610df1611813565b8181600e9190610e02929190611e3b565b505050565b6000610e128261167b565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e81576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610eda611813565b610ee46000611891565b565b600d60009054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610f3190612aff565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5d90612aff565b8015610faa5780601f10610f7f57610100808354040283529160200191610faa565b820191906000526020600020905b815481529060010190602001808311610f8d57829003601f168201915b5050505050905090565b610fbc611813565b60026009541415611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff99061287e565b60405180910390fd5b6002600981905550818190508484905014611052576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110499061283e565b60405180910390fd5b6000805b8383905081101561109b5783838281811061107457611073612c09565b5b9050602002013582611086919061297d565b9150808061109390612b62565b915050611056565b50600a546110a761094a565b826110b2919061297d565b11156110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea906127fe565b60405180910390fd5b60005b8585905081101561115e5761114b86868381811061111757611116612c09565b5b905060200201602081019061112c91906120ce565b85858481811061113f5761113e612c09565b5b90506020020135611955565b808061115690612b62565b9150506110f6565b5050600160098190555050505050565b600d60009054906101000a900460ff166111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b49061277e565b60405180910390fd5b600b54811115611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f99061279e565b60405180910390fd5b600a5461120d61094a565b82611218919061297d565b1115611259576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611250906127de565b60405180910390fd5b34600c548261126891906129d3565b11156112a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a09061289e565b60405180910390fd5b6112b33382611955565b50565b80600860006112c361166e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661137061166e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113b59190612726565b60405180910390a35050565b6113cc848484610961565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461142e576113f784848484611973565b61142d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a5481565b600c5481565b606061144b8261160f565b611481576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061148b611ad3565b90506000815114156114ac57604051806020016040528060008152506114d7565b806114b684611b65565b6040516020016114c7929190612686565b6040516020818303038152906040525b915050919050565b600f5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611581611813565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e8906127be565b60405180910390fd5b6115fa81611891565b50565b611605611813565b80600c8190555050565b60008161161a611676565b11158015611629575060015482105b8015611667575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061168a611676565b11611712576001548110156117115760006005600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561170f575b60008114156117055760056000836001900393508381526020019081526020016000205490506116da565b8092505050611744565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86117d1868684611bbe565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61181b611bc7565b73ffffffffffffffffffffffffffffffffffffffff16611839610ef9565b73ffffffffffffffffffffffffffffffffffffffff161461188f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118869061281e565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61196f828260405180602001604052806000815250611bcf565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261199961166e565b8786866040518563ffffffff1660e01b81526004016119bb94939291906126da565b602060405180830381600087803b1580156119d557600080fd5b505af1925050508015611a0657506040513d601f19601f82011682018060405250810190611a03919061233f565b60015b611a80573d8060008114611a36576040519150601f19603f3d011682016040523d82523d6000602084013e611a3b565b606091505b50600081511415611a78576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054611ae290612aff565b80601f0160208091040260200160405190810160405280929190818152602001828054611b0e90612aff565b8015611b5b5780601f10611b3057610100808354040283529160200191611b5b565b820191906000526020600020905b815481529060010190602001808311611b3e57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611ba957600184039350600a81066030018453600a8104905080611ba457611ba9565b611b7e565b50828103602084039350808452505050919050565b60009392505050565b600033905090565b611bd98383611c6d565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c685760006001549050600083820390505b611c1a6000868380600101945086611973565b611c50576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c07578160015414611c6557600080fd5b50505b505050565b600060015490506000821415611caf576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cbc60008483856117b4565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d3383611d2460008660006117ba565b611d2d85611e2b565b176117e2565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611dd457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611d99565b506000821415611e10576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050611e26600084838561180d565b505050565b60006001821460e11b9050919050565b828054611e4790612aff565b90600052602060002090601f016020900481019282611e695760008555611eb0565b82601f10611e8257803560ff1916838001178555611eb0565b82800160010185558215611eb0579182015b82811115611eaf578235825591602001919060010190611e94565b5b509050611ebd9190611ec1565b5090565b5b80821115611eda576000816000905550600101611ec2565b5090565b6000611ef1611eec846128fe565b6128d9565b905082815260208101848484011115611f0d57611f0c612c76565b5b611f18848285612abd565b509392505050565b600081359050611f2f81612ecb565b92915050565b600081359050611f4481612ee2565b92915050565b60008083601f840112611f6057611f5f612c6c565b5b8235905067ffffffffffffffff811115611f7d57611f7c612c67565b5b602083019150836020820283011115611f9957611f98612c71565b5b9250929050565b60008083601f840112611fb657611fb5612c6c565b5b8235905067ffffffffffffffff811115611fd357611fd2612c67565b5b602083019150836020820283011115611fef57611fee612c71565b5b9250929050565b60008135905061200581612ef9565b92915050565b60008135905061201a81612f10565b92915050565b60008151905061202f81612f10565b92915050565b600082601f83011261204a57612049612c6c565b5b813561205a848260208601611ede565b91505092915050565b60008083601f84011261207957612078612c6c565b5b8235905067ffffffffffffffff81111561209657612095612c67565b5b6020830191508360018202830111156120b2576120b1612c71565b5b9250929050565b6000813590506120c881612f27565b92915050565b6000602082840312156120e4576120e3612c80565b5b60006120f284828501611f20565b91505092915050565b6000806040838503121561211257612111612c80565b5b600061212085828601611f20565b925050602061213185828601611f20565b9150509250929050565b60008060006060848603121561215457612153612c80565b5b600061216286828701611f20565b935050602061217386828701611f20565b9250506040612184868287016120b9565b9150509250925092565b600080600080608085870312156121a8576121a7612c80565b5b60006121b687828801611f20565b94505060206121c787828801611f20565b93505060406121d8878288016120b9565b925050606085013567ffffffffffffffff8111156121f9576121f8612c7b565b5b61220587828801612035565b91505092959194509250565b6000806040838503121561222857612227612c80565b5b600061223685828601611f20565b925050602061224785828601611ff6565b9150509250929050565b6000806040838503121561226857612267612c80565b5b600061227685828601611f20565b9250506020612287858286016120b9565b9150509250929050565b600080600080604085870312156122ab576122aa612c80565b5b600085013567ffffffffffffffff8111156122c9576122c8612c7b565b5b6122d587828801611f4a565b9450945050602085013567ffffffffffffffff8111156122f8576122f7612c7b565b5b61230487828801611fa0565b925092505092959194509250565b60006020828403121561232857612327612c80565b5b60006123368482850161200b565b91505092915050565b60006020828403121561235557612354612c80565b5b600061236384828501612020565b91505092915050565b6000806020838503121561238357612382612c80565b5b600083013567ffffffffffffffff8111156123a1576123a0612c7b565b5b6123ad85828601612063565b92509250509250929050565b6000602082840312156123cf576123ce612c80565b5b60006123dd848285016120b9565b91505092915050565b600080604083850312156123fd576123fc612c80565b5b600061240b858286016120b9565b925050602061241c85828601611f35565b9150509250929050565b61242f81612a2d565b82525050565b61243e81612a51565b82525050565b61244d81612a5d565b82525050565b600061245e8261292f565b6124688185612945565b9350612478818560208601612acc565b61248181612c85565b840191505092915050565b60006124978261293a565b6124a18185612961565b93506124b1818560208601612acc565b6124ba81612c85565b840191505092915050565b60006124d08261293a565b6124da8185612972565b93506124ea818560208601612acc565b80840191505092915050565b6000612503602283612961565b915061250e82612c96565b604082019050919050565b6000612526602983612961565b915061253182612ce5565b604082019050919050565b6000612549602683612961565b915061255482612d34565b604082019050919050565b600061256c602083612961565b915061257782612d83565b602082019050919050565b600061258f602483612961565b915061259a82612dac565b604082019050919050565b60006125b2602083612961565b91506125bd82612dfb565b602082019050919050565b60006125d5601883612961565b91506125e082612e24565b602082019050919050565b60006125f8600083612956565b915061260382612e4d565b600082019050919050565b600061261b601083612961565b915061262682612e50565b602082019050919050565b600061263e601f83612961565b915061264982612e79565b602082019050919050565b6000612661601e83612961565b915061266c82612ea2565b602082019050919050565b61268081612ab3565b82525050565b600061269282856124c5565b915061269e82846124c5565b91508190509392505050565b60006126b5826125eb565b9150819050919050565b60006020820190506126d46000830184612426565b92915050565b60006080820190506126ef6000830187612426565b6126fc6020830186612426565b6127096040830185612677565b818103606083015261271b8184612453565b905095945050505050565b600060208201905061273b6000830184612435565b92915050565b60006020820190506127566000830184612444565b92915050565b60006020820190508181036000830152612776818461248c565b905092915050565b60006020820190508181036000830152612797816124f6565b9050919050565b600060208201905081810360008301526127b781612519565b9050919050565b600060208201905081810360008301526127d78161253c565b9050919050565b600060208201905081810360008301526127f78161255f565b9050919050565b6000602082019050818103600083015261281781612582565b9050919050565b60006020820190508181036000830152612837816125a5565b9050919050565b60006020820190508181036000830152612857816125c8565b9050919050565b600060208201905081810360008301526128778161260e565b9050919050565b6000602082019050818103600083015261289781612631565b9050919050565b600060208201905081810360008301526128b781612654565b9050919050565b60006020820190506128d36000830184612677565b92915050565b60006128e36128f4565b90506128ef8282612b31565b919050565b6000604051905090565b600067ffffffffffffffff82111561291957612918612c38565b5b61292282612c85565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061298882612ab3565b915061299383612ab3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156129c8576129c7612bab565b5b828201905092915050565b60006129de82612ab3565b91506129e983612ab3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a2257612a21612bab565b5b828202905092915050565b6000612a3882612a93565b9050919050565b6000612a4a82612a93565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612aea578082015181840152602081019050612acf565b83811115612af9576000848401525b50505050565b60006002820490506001821680612b1757607f821691505b60208210811415612b2b57612b2a612bda565b5b50919050565b612b3a82612c85565b810181811067ffffffffffffffff82111715612b5957612b58612c38565b5b80604052505050565b6000612b6d82612ab3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ba057612b9f612bab565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5075626c69632073616c65206d7573742062652061637469766520746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f5075726368617365207175616e746974792065786365656473207472616e736160008201527f6374696f6e206d61780000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b7f52657365727665206d696e7420776f756c6420657863656564206d617820737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4172726179206c656e67746873206d757374206d617463680000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f45746865722076616c75652073656e74206973206e6f7420656e6f7567680000600082015250565b612ed481612a2d565b8114612edf57600080fd5b50565b612eeb81612a3f565b8114612ef657600080fd5b50565b612f0281612a51565b8114612f0d57600080fd5b50565b612f1981612a67565b8114612f2457600080fd5b50565b612f3081612ab3565b8114612f3b57600080fd5b5056fea2646970667358221220b7dd0c4040885897a9628892a9d10bf0e987c14736f19e2c1e835077fe042e4364736f6c63430008070033
Deployed Bytecode Sourcemap
57861:2418:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18404:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19306:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25797:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25230:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58002:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15057:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29436:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59913:105;;;;;;;;;;;;;:::i;:::-;;32357:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60065:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59521:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20699:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16241:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56970:103;;;;;;;;;;;;;:::i;:::-;;58090:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56322:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19482:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58764:702;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58297:459;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26355:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33148:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57958:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58043:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19692:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58171:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26746:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57228:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59804:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18404:639;18489:4;18828:10;18813:25;;:11;:25;;;;:102;;;;18905:10;18890:25;;:11;:25;;;;18813:102;:179;;;;18982:10;18967:25;;:11;:25;;;;18813:179;18793:199;;18404:639;;;:::o;19306:100::-;19360:13;19393:5;19386:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19306:100;:::o;25797:218::-;25873:7;25898:16;25906:7;25898;:16::i;:::-;25893:64;;25923:34;;;;;;;;;;;;;;25893:64;25977:15;:24;25993:7;25977:24;;;;;;;;;;;:30;;;;;;;;;;;;25970:37;;25797:218;;;:::o;25230:408::-;25319:13;25335:16;25343:7;25335;:16::i;:::-;25319:32;;25391:5;25368:28;;:19;:17;:19::i;:::-;:28;;;25364:175;;25416:44;25433:5;25440:19;:17;:19::i;:::-;25416:16;:44::i;:::-;25411:128;;25488:35;;;;;;;;;;;;;;25411:128;25364:175;25584:2;25551:15;:24;25567:7;25551:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25622:7;25618:2;25602:28;;25611:5;25602:28;;;;;;;;;;;;25308:330;25230:408;;:::o;58002:34::-;;;;:::o;15057:323::-;15118:7;15346:15;:13;:15::i;:::-;15331:12;;15315:13;;:28;:46;15308:53;;15057:323;:::o;29436:2825::-;29578:27;29608;29627:7;29608:18;:27::i;:::-;29578:57;;29693:4;29652:45;;29668:19;29652:45;;;29648:86;;29706:28;;;;;;;;;;;;;;29648:86;29748:27;29777:23;29804:35;29831:7;29804:26;:35::i;:::-;29747:92;;;;29939:68;29964:15;29981:4;29987:19;:17;:19::i;:::-;29939:24;:68::i;:::-;29934:180;;30027:43;30044:4;30050:19;:17;:19::i;:::-;30027:16;:43::i;:::-;30022:92;;30079:35;;;;;;;;;;;;;;30022:92;29934:180;30145:1;30131:16;;:2;:16;;;30127:52;;;30156:23;;;;;;;;;;;;;;30127:52;30192:43;30214:4;30220:2;30224:7;30233:1;30192:21;:43::i;:::-;30328:15;30325:160;;;30468:1;30447:19;30440:30;30325:160;30865:18;:24;30884:4;30865:24;;;;;;;;;;;;;;;;30863:26;;;;;;;;;;;;30934:18;:22;30953:2;30934:22;;;;;;;;;;;;;;;;30932:24;;;;;;;;;;;31256:146;31293:2;31342:45;31357:4;31363:2;31367:19;31342:14;:45::i;:::-;11456:8;31314:73;31256:18;:146::i;:::-;31227:17;:26;31245:7;31227:26;;;;;;;;;;;:175;;;;31573:1;11456:8;31522:19;:47;:52;31518:627;;;31595:19;31627:1;31617:7;:11;31595:33;;31784:1;31750:17;:30;31768:11;31750:30;;;;;;;;;;;;:35;31746:384;;;31888:13;;31873:11;:28;31869:242;;32068:19;32035:17;:30;32053:11;32035:30;;;;;;;;;;;:52;;;;31869:242;31746:384;31576:569;31518:627;32192:7;32188:2;32173:27;;32182:4;32173:27;;;;;;;;;;;;32211:42;32232:4;32238:2;32242:7;32251:1;32211:20;:42::i;:::-;29567:2694;;;29436:2825;;;:::o;59913:105::-;56208:13;:11;:13::i;:::-;59991:19:::1;;;;;;;;;;;59990:20;59968:19;;:42;;;;;;;;;;;;;;;;;;59913:105::o:0;32357:193::-;32503:39;32520:4;32526:2;32530:7;32503:39;;;;;;;;;;;;:16;:39::i;:::-;32357:193;;;:::o;60065:211::-;56208:13;:11;:13::i;:::-;53247:1:::1;53845:7;;:19;;53837:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;53247:1;53978:7;:18;;;;60168:12:::2;60194:2;60186:16;;60210:6;60186:35;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60167:54;;;60240:7;60232:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;60156:120;53203:1:::1;54157:7;:22;;;;60065:211:::0;;:::o;59521:101::-;56208:13;:11;:13::i;:::-;59607:7:::1;;59596:8;:18;;;;;;;:::i;:::-;;59521:101:::0;;:::o;20699:152::-;20771:7;20814:27;20833:7;20814:18;:27::i;:::-;20791:52;;20699:152;;;:::o;16241:233::-;16313:7;16354:1;16337:19;;:5;:19;;;16333:60;;;16365:28;;;;;;;;;;;;;;16333:60;10400:13;16411:18;:25;16430:5;16411:25;;;;;;;;;;;;;;;;:55;16404:62;;16241:233;;;:::o;56970:103::-;56208:13;:11;:13::i;:::-;57035:30:::1;57062:1;57035:18;:30::i;:::-;56970:103::o:0;58090:39::-;;;;;;;;;;;;;:::o;56322:87::-;56368:7;56395:6;;;;;;;;;;;56388:13;;56322:87;:::o;19482:104::-;19538:13;19571:7;19564:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19482:104;:::o;58764:702::-;56208:13;:11;:13::i;:::-;53247:1:::1;53845:7;;:19;;53837:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;53247:1;53978:7;:18;;;;58919:10:::2;;:17;;58898:10;;:17;;:38;58890:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;59044:21;59084:9:::0;59080:103:::2;59103:10;;:17;;59099:1;:21;59080:103;;;59158:10;;59169:1;59158:13;;;;;;;:::i;:::-;;;;;;;;59141:30;;;;;:::i;:::-;;;59122:3;;;;;:::i;:::-;;;;59080:103;;;;59234:15;;59217:13;:11;:13::i;:::-;59201;:29;;;;:::i;:::-;:48;;59193:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;59350:9;59345:114;59369:10;;:17;;59365:1;:21;59345:114;;;59408:39;59418:10;;59429:1;59418:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;59433:10;;59444:1;59433:13;;;;;;;:::i;:::-;;;;;;;;59408:9;:39::i;:::-;59388:3;;;;;:::i;:::-;;;;59345:114;;;;58879:587;53203:1:::1;54157:7;:22;;;;58764:702:::0;;;;:::o;58297:459::-;58365:19;;;;;;;;;;;58357:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;58454:15;;58442:8;:27;;58434:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;58562:15;;58545:13;:11;:13::i;:::-;58534:8;:24;;;;:::i;:::-;:43;;58526:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;58660:9;58644:12;;58633:8;:23;;;;:::i;:::-;:36;;58625:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;58717:31;58727:10;58739:8;58717:9;:31::i;:::-;58297:459;:::o;26355:234::-;26502:8;26450:18;:39;26469:19;:17;:19::i;:::-;26450:39;;;;;;;;;;;;;;;:49;26490:8;26450:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26562:8;26526:55;;26541:19;:17;:19::i;:::-;26526:55;;;26572:8;26526:55;;;;;;:::i;:::-;;;;;;;;26355:234;;:::o;33148:407::-;33323:31;33336:4;33342:2;33346:7;33323:12;:31::i;:::-;33387:1;33369:2;:14;;;:19;33365:183;;33408:56;33439:4;33445:2;33449:7;33458:5;33408:30;:56::i;:::-;33403:145;;33492:40;;;;;;;;;;;;;;33403:145;33365:183;33148:407;;;;:::o;57958:37::-;;;;:::o;58043:40::-;;;;:::o;19692:318::-;19765:13;19796:16;19804:7;19796;:16::i;:::-;19791:59;;19821:29;;;;;;;;;;;;;;19791:59;19863:21;19887:10;:8;:10::i;:::-;19863:34;;19940:1;19921:7;19915:21;:26;;:87;;;;;;;;;;;;;;;;;19968:7;19977:18;19987:7;19977:9;:18::i;:::-;19951:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19915:87;19908:94;;;19692:318;;;:::o;58171:26::-;;;;:::o;26746:164::-;26843:4;26867:18;:25;26886:5;26867:25;;;;;;;;;;;;;;;:35;26893:8;26867:35;;;;;;;;;;;;;;;;;;;;;;;;;26860:42;;26746:164;;;;:::o;57228:201::-;56208:13;:11;:13::i;:::-;57337:1:::1;57317:22;;:8;:22;;;;57309:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;57393:28;57412:8;57393:18;:28::i;:::-;57228:201:::0;:::o;59804:101::-;56208:13;:11;:13::i;:::-;59889:8:::1;59874:12;:23;;;;59804:101:::0;:::o;27168:282::-;27233:4;27289:7;27270:15;:13;:15::i;:::-;:26;;:66;;;;;27323:13;;27313:7;:23;27270:66;:153;;;;;27422:1;11176:8;27374:17;:26;27392:7;27374:26;;;;;;;;;;;;:44;:49;27270:153;27250:173;;27168:282;;;:::o;49476:105::-;49536:7;49563:10;49556:17;;49476:105;:::o;14573:92::-;14629:7;14573:92;:::o;21854:1275::-;21921:7;21941:12;21956:7;21941:22;;22024:4;22005:15;:13;:15::i;:::-;:23;22001:1061;;22058:13;;22051:4;:20;22047:1015;;;22096:14;22113:17;:23;22131:4;22113:23;;;;;;;;;;;;22096:40;;22230:1;11176:8;22202:6;:24;:29;22198:845;;;22867:113;22884:1;22874:6;:11;22867:113;;;22927:17;:25;22945:6;;;;;;;22927:25;;;;;;;;;;;;22918:34;;22867:113;;;23013:6;23006:13;;;;;;22198:845;22073:989;22047:1015;22001:1061;23090:31;;;;;;;;;;;;;;21854:1275;;;;:::o;28331:485::-;28433:27;28462:23;28503:38;28544:15;:24;28560:7;28544:24;;;;;;;;;;;28503:65;;28721:18;28698:41;;28778:19;28772:26;28753:45;;28683:126;28331:485;;;:::o;27559:659::-;27708:11;27873:16;27866:5;27862:28;27853:37;;28033:16;28022:9;28018:32;28005:45;;28183:15;28172:9;28169:30;28161:5;28150:9;28147:20;28144:56;28134:66;;27559:659;;;;;:::o;34217:159::-;;;;;:::o;48785:311::-;48920:7;48940:16;11580:3;48966:19;:41;;48940:68;;11580:3;49034:31;49045:4;49051:2;49055:9;49034:10;:31::i;:::-;49026:40;;:62;;49019:69;;;48785:311;;;;;:::o;23677:450::-;23757:14;23925:16;23918:5;23914:28;23905:37;;24102:5;24088:11;24063:23;24059:41;24056:52;24049:5;24046:63;24036:73;;23677:450;;;;:::o;35041:158::-;;;;;:::o;56487:132::-;56562:12;:10;:12::i;:::-;56551:23;;:7;:5;:7::i;:::-;:23;;;56543:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56487:132::o;57589:191::-;57663:16;57682:6;;;;;;;;;;;57663:25;;57708:8;57699:6;;:17;;;;;;;;;;;;;;;;;;57763:8;57732:40;;57753:8;57732:40;;;;;;;;;;;;57652:128;57589:191;:::o;43308:112::-;43385:27;43395:2;43399:8;43385:27;;;;;;;;;;;;:9;:27::i;:::-;43308:112;;:::o;35639:716::-;35802:4;35848:2;35823:45;;;35869:19;:17;:19::i;:::-;35890:4;35896:7;35905:5;35823:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35819:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36123:1;36106:6;:13;:18;36102:235;;;36152:40;;;;;;;;;;;;;;36102:235;36295:6;36289:13;36280:6;36276:2;36272:15;36265:38;35819:529;35992:54;;;35982:64;;;:6;:64;;;;35975:71;;;35639:716;;;;;;:::o;59630:109::-;59690:13;59723:8;59716:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59630:109;:::o;49683:1745::-;49748:17;50182:4;50175;50169:11;50165:22;50274:1;50268:4;50261:15;50349:4;50346:1;50342:12;50335:19;;50431:1;50426:3;50419:14;50535:3;50774:5;50756:428;50782:1;50756:428;;;50822:1;50817:3;50813:11;50806:18;;50993:2;50987:4;50983:13;50979:2;50975:22;50970:3;50962:36;51087:2;51081:4;51077:13;51069:21;;51154:4;51144:25;;51162:5;;51144:25;50756:428;;;50760:21;51223:3;51218;51214:13;51338:4;51333:3;51329:14;51322:21;;51403:6;51398:3;51391:19;49787:1634;;;49683:1745;;;:::o;48486:147::-;48623:6;48486:147;;;;;:::o;54873:98::-;54926:7;54953:10;54946:17;;54873:98;:::o;42535:689::-;42666:19;42672:2;42676:8;42666:5;:19::i;:::-;42745:1;42727:2;:14;;;:19;42723:483;;42767:11;42781:13;;42767:27;;42813:13;42835:8;42829:3;:14;42813:30;;42862:233;42893:62;42932:1;42936:2;42940:7;;;;;;42949:5;42893:30;:62::i;:::-;42888:167;;42991:40;;;;;;;;;;;;;;42888:167;43090:3;43082:5;:11;42862:233;;43177:3;43160:13;;:20;43156:34;;43182:8;;;43156:34;42748:458;;42723:483;42535:689;;;:::o;36817:2966::-;36890:20;36913:13;;36890:36;;36953:1;36941:8;:13;36937:44;;;36963:18;;;;;;;;;;;;;;36937:44;36994:61;37024:1;37028:2;37032:12;37046:8;36994:21;:61::i;:::-;37538:1;10538:2;37508:1;:26;;37507:32;37495:8;:45;37469:18;:22;37488:2;37469:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37817:139;37854:2;37908:33;37931:1;37935:2;37939:1;37908:14;:33::i;:::-;37875:30;37896:8;37875:20;:30::i;:::-;:66;37817:18;:139::i;:::-;37783:17;:31;37801:12;37783:31;;;;;;;;;;;:173;;;;37973:16;38004:11;38033:8;38018:12;:23;38004:37;;38554:16;38550:2;38546:25;38534:37;;38926:12;38886:8;38845:1;38783:25;38724:1;38663;38636:335;39297:1;39283:12;39279:20;39237:346;39338:3;39329:7;39326:16;39237:346;;39556:7;39546:8;39543:1;39516:25;39513:1;39510;39505:59;39391:1;39382:7;39378:15;39367:26;;39237:346;;;39241:77;39628:1;39616:8;:13;39612:45;;;39638:19;;;;;;;;;;;;;;39612:45;39690:3;39674:13;:19;;;;37243:2462;;39715:60;39744:1;39748:2;39752:12;39766:8;39715:20;:60::i;:::-;36879:2904;36817:2966;;:::o;24229:324::-;24299:14;24532:1;24522:8;24519:15;24493:24;24489:46;24479:56;;24229:324;;;:::o;-1:-1:-1:-;;;;;;;:::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:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:155::-;622:5;660:6;647:20;638:29;;676:41;711:5;676:41;:::i;:::-;568:155;;;;:::o;746:568::-;819:8;829:6;879:3;872:4;864:6;860:17;856:27;846:122;;887:79;;:::i;:::-;846:122;1000:6;987:20;977:30;;1030:18;1022:6;1019:30;1016:117;;;1052:79;;:::i;:::-;1016:117;1166:4;1158:6;1154:17;1142:29;;1220:3;1212:4;1204:6;1200:17;1190:8;1186:32;1183:41;1180:128;;;1227:79;;:::i;:::-;1180:128;746:568;;;;;:::o;1337:::-;1410:8;1420:6;1470:3;1463:4;1455:6;1451:17;1447:27;1437:122;;1478:79;;:::i;:::-;1437:122;1591:6;1578:20;1568:30;;1621:18;1613:6;1610:30;1607:117;;;1643:79;;:::i;:::-;1607:117;1757:4;1749:6;1745:17;1733:29;;1811:3;1803:4;1795:6;1791:17;1781:8;1777:32;1774:41;1771:128;;;1818:79;;:::i;:::-;1771:128;1337:568;;;;;:::o;1911:133::-;1954:5;1992:6;1979:20;1970:29;;2008:30;2032:5;2008:30;:::i;:::-;1911:133;;;;:::o;2050:137::-;2095:5;2133:6;2120:20;2111:29;;2149:32;2175:5;2149:32;:::i;:::-;2050:137;;;;:::o;2193:141::-;2249:5;2280:6;2274:13;2265:22;;2296:32;2322:5;2296:32;:::i;:::-;2193:141;;;;:::o;2353:338::-;2408:5;2457:3;2450:4;2442:6;2438:17;2434:27;2424:122;;2465:79;;:::i;:::-;2424:122;2582:6;2569:20;2607:78;2681:3;2673:6;2666:4;2658:6;2654:17;2607:78;:::i;:::-;2598:87;;2414:277;2353:338;;;;:::o;2711:553::-;2769:8;2779:6;2829:3;2822:4;2814:6;2810:17;2806:27;2796:122;;2837:79;;:::i;:::-;2796:122;2950:6;2937:20;2927:30;;2980:18;2972:6;2969:30;2966:117;;;3002:79;;:::i;:::-;2966:117;3116:4;3108:6;3104:17;3092:29;;3170:3;3162:4;3154:6;3150:17;3140:8;3136:32;3133:41;3130:128;;;3177:79;;:::i;:::-;3130:128;2711:553;;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:329::-;3474:6;3523:2;3511:9;3502:7;3498:23;3494:32;3491:119;;;3529:79;;:::i;:::-;3491:119;3649:1;3674:53;3719:7;3710:6;3699:9;3695:22;3674:53;:::i;:::-;3664:63;;3620:117;3415:329;;;;:::o;3750:474::-;3818:6;3826;3875:2;3863:9;3854:7;3850:23;3846:32;3843:119;;;3881:79;;:::i;:::-;3843:119;4001:1;4026:53;4071:7;4062:6;4051:9;4047:22;4026:53;:::i;:::-;4016:63;;3972:117;4128:2;4154:53;4199:7;4190:6;4179:9;4175:22;4154:53;:::i;:::-;4144:63;;4099:118;3750:474;;;;;:::o;4230:619::-;4307:6;4315;4323;4372:2;4360:9;4351:7;4347:23;4343:32;4340:119;;;4378:79;;:::i;:::-;4340:119;4498:1;4523:53;4568:7;4559:6;4548:9;4544:22;4523:53;:::i;:::-;4513:63;;4469:117;4625:2;4651:53;4696:7;4687:6;4676:9;4672:22;4651:53;:::i;:::-;4641:63;;4596:118;4753:2;4779:53;4824:7;4815:6;4804:9;4800:22;4779:53;:::i;:::-;4769:63;;4724:118;4230:619;;;;;:::o;4855:943::-;4950:6;4958;4966;4974;5023:3;5011:9;5002:7;4998:23;4994:33;4991:120;;;5030:79;;:::i;:::-;4991:120;5150:1;5175:53;5220:7;5211:6;5200:9;5196:22;5175:53;:::i;:::-;5165:63;;5121:117;5277:2;5303:53;5348:7;5339:6;5328:9;5324:22;5303:53;:::i;:::-;5293:63;;5248:118;5405:2;5431:53;5476:7;5467:6;5456:9;5452:22;5431:53;:::i;:::-;5421:63;;5376:118;5561:2;5550:9;5546:18;5533:32;5592:18;5584:6;5581:30;5578:117;;;5614:79;;:::i;:::-;5578:117;5719:62;5773:7;5764:6;5753:9;5749:22;5719:62;:::i;:::-;5709:72;;5504:287;4855:943;;;;;;;:::o;5804:468::-;5869:6;5877;5926:2;5914:9;5905:7;5901:23;5897:32;5894:119;;;5932:79;;:::i;:::-;5894:119;6052:1;6077:53;6122:7;6113:6;6102:9;6098:22;6077:53;:::i;:::-;6067:63;;6023:117;6179:2;6205:50;6247:7;6238:6;6227:9;6223:22;6205:50;:::i;:::-;6195:60;;6150:115;5804:468;;;;;:::o;6278:474::-;6346:6;6354;6403:2;6391:9;6382:7;6378:23;6374:32;6371:119;;;6409:79;;:::i;:::-;6371:119;6529:1;6554:53;6599:7;6590:6;6579:9;6575:22;6554:53;:::i;:::-;6544:63;;6500:117;6656:2;6682:53;6727:7;6718:6;6707:9;6703:22;6682:53;:::i;:::-;6672:63;;6627:118;6278:474;;;;;:::o;6758:934::-;6880:6;6888;6896;6904;6953:2;6941:9;6932:7;6928:23;6924:32;6921:119;;;6959:79;;:::i;:::-;6921:119;7107:1;7096:9;7092:17;7079:31;7137:18;7129:6;7126:30;7123:117;;;7159:79;;:::i;:::-;7123:117;7272:80;7344:7;7335:6;7324:9;7320:22;7272:80;:::i;:::-;7254:98;;;;7050:312;7429:2;7418:9;7414:18;7401:32;7460:18;7452:6;7449:30;7446:117;;;7482:79;;:::i;:::-;7446:117;7595:80;7667:7;7658:6;7647:9;7643:22;7595:80;:::i;:::-;7577:98;;;;7372:313;6758:934;;;;;;;:::o;7698:327::-;7756:6;7805:2;7793:9;7784:7;7780:23;7776:32;7773:119;;;7811:79;;:::i;:::-;7773:119;7931:1;7956:52;8000:7;7991:6;7980:9;7976:22;7956:52;:::i;:::-;7946:62;;7902:116;7698:327;;;;:::o;8031:349::-;8100:6;8149:2;8137:9;8128:7;8124:23;8120:32;8117:119;;;8155:79;;:::i;:::-;8117:119;8275:1;8300:63;8355:7;8346:6;8335:9;8331:22;8300:63;:::i;:::-;8290:73;;8246:127;8031:349;;;;:::o;8386:529::-;8457:6;8465;8514:2;8502:9;8493:7;8489:23;8485:32;8482:119;;;8520:79;;:::i;:::-;8482:119;8668:1;8657:9;8653:17;8640:31;8698:18;8690:6;8687:30;8684:117;;;8720:79;;:::i;:::-;8684:117;8833:65;8890:7;8881:6;8870:9;8866:22;8833:65;:::i;:::-;8815:83;;;;8611:297;8386:529;;;;;:::o;8921:329::-;8980:6;9029:2;9017:9;9008:7;9004:23;9000:32;8997:119;;;9035:79;;:::i;:::-;8997:119;9155:1;9180:53;9225:7;9216:6;9205:9;9201:22;9180:53;:::i;:::-;9170:63;;9126:117;8921:329;;;;:::o;9256:490::-;9332:6;9340;9389:2;9377:9;9368:7;9364:23;9360:32;9357:119;;;9395:79;;:::i;:::-;9357:119;9515:1;9540:53;9585:7;9576:6;9565:9;9561:22;9540:53;:::i;:::-;9530:63;;9486:117;9642:2;9668:61;9721:7;9712:6;9701:9;9697:22;9668:61;:::i;:::-;9658:71;;9613:126;9256:490;;;;;:::o;9752:118::-;9839:24;9857:5;9839:24;:::i;:::-;9834:3;9827:37;9752:118;;:::o;9876:109::-;9957:21;9972:5;9957:21;:::i;:::-;9952:3;9945:34;9876:109;;:::o;9991:118::-;10078:24;10096:5;10078:24;:::i;:::-;10073:3;10066:37;9991:118;;:::o;10115:360::-;10201:3;10229:38;10261:5;10229:38;:::i;:::-;10283:70;10346:6;10341:3;10283:70;:::i;:::-;10276:77;;10362:52;10407:6;10402:3;10395:4;10388:5;10384:16;10362:52;:::i;:::-;10439:29;10461:6;10439:29;:::i;:::-;10434:3;10430:39;10423:46;;10205:270;10115:360;;;;:::o;10481:364::-;10569:3;10597:39;10630:5;10597:39;:::i;:::-;10652:71;10716:6;10711:3;10652:71;:::i;:::-;10645:78;;10732:52;10777:6;10772:3;10765:4;10758:5;10754:16;10732:52;:::i;:::-;10809:29;10831:6;10809:29;:::i;:::-;10804:3;10800:39;10793:46;;10573:272;10481:364;;;;:::o;10851:377::-;10957:3;10985:39;11018:5;10985:39;:::i;:::-;11040:89;11122:6;11117:3;11040:89;:::i;:::-;11033:96;;11138:52;11183:6;11178:3;11171:4;11164:5;11160:16;11138:52;:::i;:::-;11215:6;11210:3;11206:16;11199:23;;10961:267;10851:377;;;;:::o;11234:366::-;11376:3;11397:67;11461:2;11456:3;11397:67;:::i;:::-;11390:74;;11473:93;11562:3;11473:93;:::i;:::-;11591:2;11586:3;11582:12;11575:19;;11234:366;;;:::o;11606:::-;11748:3;11769:67;11833:2;11828:3;11769:67;:::i;:::-;11762:74;;11845:93;11934:3;11845:93;:::i;:::-;11963:2;11958:3;11954:12;11947:19;;11606:366;;;:::o;11978:::-;12120:3;12141:67;12205:2;12200:3;12141:67;:::i;:::-;12134:74;;12217:93;12306:3;12217:93;:::i;:::-;12335:2;12330:3;12326:12;12319:19;;11978:366;;;:::o;12350:::-;12492:3;12513:67;12577:2;12572:3;12513:67;:::i;:::-;12506:74;;12589:93;12678:3;12589:93;:::i;:::-;12707:2;12702:3;12698:12;12691:19;;12350:366;;;:::o;12722:::-;12864:3;12885:67;12949:2;12944:3;12885:67;:::i;:::-;12878:74;;12961:93;13050:3;12961:93;:::i;:::-;13079:2;13074:3;13070:12;13063:19;;12722:366;;;:::o;13094:::-;13236:3;13257:67;13321:2;13316:3;13257:67;:::i;:::-;13250:74;;13333:93;13422:3;13333:93;:::i;:::-;13451:2;13446:3;13442:12;13435:19;;13094:366;;;:::o;13466:::-;13608:3;13629:67;13693:2;13688:3;13629:67;:::i;:::-;13622:74;;13705:93;13794:3;13705:93;:::i;:::-;13823:2;13818:3;13814:12;13807:19;;13466:366;;;:::o;13838:398::-;13997:3;14018:83;14099:1;14094:3;14018:83;:::i;:::-;14011:90;;14110:93;14199:3;14110:93;:::i;:::-;14228:1;14223:3;14219:11;14212:18;;13838:398;;;:::o;14242:366::-;14384:3;14405:67;14469:2;14464:3;14405:67;:::i;:::-;14398:74;;14481:93;14570:3;14481:93;:::i;:::-;14599:2;14594:3;14590:12;14583:19;;14242:366;;;:::o;14614:::-;14756:3;14777:67;14841:2;14836:3;14777:67;:::i;:::-;14770:74;;14853:93;14942:3;14853:93;:::i;:::-;14971:2;14966:3;14962:12;14955:19;;14614:366;;;:::o;14986:::-;15128:3;15149:67;15213:2;15208:3;15149:67;:::i;:::-;15142:74;;15225:93;15314:3;15225:93;:::i;:::-;15343:2;15338:3;15334:12;15327:19;;14986:366;;;:::o;15358:118::-;15445:24;15463:5;15445:24;:::i;:::-;15440:3;15433:37;15358:118;;:::o;15482:435::-;15662:3;15684:95;15775:3;15766:6;15684:95;:::i;:::-;15677:102;;15796:95;15887:3;15878:6;15796:95;:::i;:::-;15789:102;;15908:3;15901:10;;15482:435;;;;;:::o;15923:379::-;16107:3;16129:147;16272:3;16129:147;:::i;:::-;16122:154;;16293:3;16286:10;;15923:379;;;:::o;16308:222::-;16401:4;16439:2;16428:9;16424:18;16416:26;;16452:71;16520:1;16509:9;16505:17;16496:6;16452:71;:::i;:::-;16308:222;;;;:::o;16536:640::-;16731:4;16769:3;16758:9;16754:19;16746:27;;16783:71;16851:1;16840:9;16836:17;16827:6;16783:71;:::i;:::-;16864:72;16932:2;16921:9;16917:18;16908:6;16864:72;:::i;:::-;16946;17014:2;17003:9;16999:18;16990:6;16946:72;:::i;:::-;17065:9;17059:4;17055:20;17050:2;17039:9;17035:18;17028:48;17093:76;17164:4;17155:6;17093:76;:::i;:::-;17085:84;;16536:640;;;;;;;:::o;17182:210::-;17269:4;17307:2;17296:9;17292:18;17284:26;;17320:65;17382:1;17371:9;17367:17;17358:6;17320:65;:::i;:::-;17182:210;;;;:::o;17398:222::-;17491:4;17529:2;17518:9;17514:18;17506:26;;17542:71;17610:1;17599:9;17595:17;17586:6;17542:71;:::i;:::-;17398:222;;;;:::o;17626:313::-;17739:4;17777:2;17766:9;17762:18;17754:26;;17826:9;17820:4;17816:20;17812:1;17801:9;17797:17;17790:47;17854:78;17927:4;17918:6;17854:78;:::i;:::-;17846:86;;17626:313;;;;:::o;17945:419::-;18111:4;18149:2;18138:9;18134:18;18126:26;;18198:9;18192:4;18188:20;18184:1;18173:9;18169:17;18162:47;18226:131;18352:4;18226:131;:::i;:::-;18218:139;;17945:419;;;:::o;18370:::-;18536:4;18574:2;18563:9;18559:18;18551:26;;18623:9;18617:4;18613:20;18609:1;18598:9;18594:17;18587:47;18651:131;18777:4;18651:131;:::i;:::-;18643:139;;18370:419;;;:::o;18795:::-;18961:4;18999:2;18988:9;18984:18;18976:26;;19048:9;19042:4;19038:20;19034:1;19023:9;19019:17;19012:47;19076:131;19202:4;19076:131;:::i;:::-;19068:139;;18795:419;;;:::o;19220:::-;19386:4;19424:2;19413:9;19409:18;19401:26;;19473:9;19467:4;19463:20;19459:1;19448:9;19444:17;19437:47;19501:131;19627:4;19501:131;:::i;:::-;19493:139;;19220:419;;;:::o;19645:::-;19811:4;19849:2;19838:9;19834:18;19826:26;;19898:9;19892:4;19888:20;19884:1;19873:9;19869:17;19862:47;19926:131;20052:4;19926:131;:::i;:::-;19918:139;;19645:419;;;:::o;20070:::-;20236:4;20274:2;20263:9;20259:18;20251:26;;20323:9;20317:4;20313:20;20309:1;20298:9;20294:17;20287:47;20351:131;20477:4;20351:131;:::i;:::-;20343:139;;20070:419;;;:::o;20495:::-;20661:4;20699:2;20688:9;20684:18;20676:26;;20748:9;20742:4;20738:20;20734:1;20723:9;20719:17;20712:47;20776:131;20902:4;20776:131;:::i;:::-;20768:139;;20495:419;;;:::o;20920:::-;21086:4;21124:2;21113:9;21109:18;21101:26;;21173:9;21167:4;21163:20;21159:1;21148:9;21144:17;21137:47;21201:131;21327:4;21201:131;:::i;:::-;21193:139;;20920:419;;;:::o;21345:::-;21511:4;21549:2;21538:9;21534:18;21526:26;;21598:9;21592:4;21588:20;21584:1;21573:9;21569:17;21562:47;21626:131;21752:4;21626:131;:::i;:::-;21618:139;;21345:419;;;:::o;21770:::-;21936:4;21974:2;21963:9;21959:18;21951:26;;22023:9;22017:4;22013:20;22009:1;21998:9;21994:17;21987:47;22051:131;22177:4;22051:131;:::i;:::-;22043:139;;21770:419;;;:::o;22195:222::-;22288:4;22326:2;22315:9;22311:18;22303:26;;22339:71;22407:1;22396:9;22392:17;22383:6;22339:71;:::i;:::-;22195:222;;;;:::o;22423:129::-;22457:6;22484:20;;:::i;:::-;22474:30;;22513:33;22541:4;22533:6;22513:33;:::i;:::-;22423:129;;;:::o;22558:75::-;22591:6;22624:2;22618:9;22608:19;;22558:75;:::o;22639:307::-;22700:4;22790:18;22782:6;22779:30;22776:56;;;22812:18;;:::i;:::-;22776:56;22850:29;22872:6;22850:29;:::i;:::-;22842:37;;22934:4;22928;22924:15;22916:23;;22639:307;;;:::o;22952:98::-;23003:6;23037:5;23031:12;23021:22;;22952:98;;;:::o;23056:99::-;23108:6;23142:5;23136:12;23126:22;;23056:99;;;:::o;23161:168::-;23244:11;23278:6;23273:3;23266:19;23318:4;23313:3;23309:14;23294:29;;23161:168;;;;:::o;23335:147::-;23436:11;23473:3;23458:18;;23335:147;;;;:::o;23488:169::-;23572:11;23606:6;23601:3;23594:19;23646:4;23641:3;23637:14;23622:29;;23488:169;;;;:::o;23663:148::-;23765:11;23802:3;23787:18;;23663:148;;;;:::o;23817:305::-;23857:3;23876:20;23894:1;23876:20;:::i;:::-;23871:25;;23910:20;23928:1;23910:20;:::i;:::-;23905:25;;24064:1;23996:66;23992:74;23989:1;23986:81;23983:107;;;24070:18;;:::i;:::-;23983:107;24114:1;24111;24107:9;24100:16;;23817:305;;;;:::o;24128:348::-;24168:7;24191:20;24209:1;24191:20;:::i;:::-;24186:25;;24225:20;24243:1;24225:20;:::i;:::-;24220:25;;24413:1;24345:66;24341:74;24338:1;24335:81;24330:1;24323:9;24316:17;24312:105;24309:131;;;24420:18;;:::i;:::-;24309:131;24468:1;24465;24461:9;24450:20;;24128:348;;;;:::o;24482:96::-;24519:7;24548:24;24566:5;24548:24;:::i;:::-;24537:35;;24482:96;;;:::o;24584:104::-;24629:7;24658:24;24676:5;24658:24;:::i;:::-;24647:35;;24584:104;;;:::o;24694:90::-;24728:7;24771:5;24764:13;24757:21;24746:32;;24694:90;;;:::o;24790:77::-;24827:7;24856:5;24845:16;;24790:77;;;:::o;24873:149::-;24909:7;24949:66;24942:5;24938:78;24927:89;;24873:149;;;:::o;25028:126::-;25065:7;25105:42;25098:5;25094:54;25083:65;;25028:126;;;:::o;25160:77::-;25197:7;25226:5;25215:16;;25160:77;;;:::o;25243:154::-;25327:6;25322:3;25317;25304:30;25389:1;25380:6;25375:3;25371:16;25364:27;25243:154;;;:::o;25403:307::-;25471:1;25481:113;25495:6;25492:1;25489:13;25481:113;;;25580:1;25575:3;25571:11;25565:18;25561:1;25556:3;25552:11;25545:39;25517:2;25514:1;25510:10;25505:15;;25481:113;;;25612:6;25609:1;25606:13;25603:101;;;25692:1;25683:6;25678:3;25674:16;25667:27;25603:101;25452:258;25403:307;;;:::o;25716:320::-;25760:6;25797:1;25791:4;25787:12;25777:22;;25844:1;25838:4;25834:12;25865:18;25855:81;;25921:4;25913:6;25909:17;25899:27;;25855:81;25983:2;25975:6;25972:14;25952:18;25949:38;25946:84;;;26002:18;;:::i;:::-;25946:84;25767:269;25716:320;;;:::o;26042:281::-;26125:27;26147:4;26125:27;:::i;:::-;26117:6;26113:40;26255:6;26243:10;26240:22;26219:18;26207:10;26204:34;26201:62;26198:88;;;26266:18;;:::i;:::-;26198:88;26306:10;26302:2;26295:22;26085:238;26042:281;;:::o;26329:233::-;26368:3;26391:24;26409:5;26391:24;:::i;:::-;26382:33;;26437:66;26430:5;26427:77;26424:103;;;26507:18;;:::i;:::-;26424:103;26554:1;26547:5;26543:13;26536:20;;26329:233;;;:::o;26568:180::-;26616:77;26613:1;26606:88;26713:4;26710:1;26703:15;26737:4;26734:1;26727:15;26754:180;26802:77;26799:1;26792:88;26899:4;26896:1;26889:15;26923:4;26920:1;26913:15;26940:180;26988:77;26985:1;26978:88;27085:4;27082:1;27075:15;27109:4;27106:1;27099:15;27126:180;27174:77;27171:1;27164:88;27271:4;27268:1;27261:15;27295:4;27292:1;27285:15;27312:117;27421:1;27418;27411:12;27435:117;27544:1;27541;27534:12;27558:117;27667:1;27664;27657:12;27681:117;27790:1;27787;27780:12;27804:117;27913:1;27910;27903:12;27927:117;28036:1;28033;28026:12;28050:102;28091:6;28142:2;28138:7;28133:2;28126:5;28122:14;28118:28;28108:38;;28050:102;;;:::o;28158:221::-;28298:34;28294:1;28286:6;28282:14;28275:58;28367:4;28362:2;28354:6;28350:15;28343:29;28158:221;:::o;28385:228::-;28525:34;28521:1;28513:6;28509:14;28502:58;28594:11;28589:2;28581:6;28577:15;28570:36;28385:228;:::o;28619:225::-;28759:34;28755:1;28747:6;28743:14;28736:58;28828:8;28823:2;28815:6;28811:15;28804:33;28619:225;:::o;28850:182::-;28990:34;28986:1;28978:6;28974:14;28967:58;28850:182;:::o;29038:223::-;29178:34;29174:1;29166:6;29162:14;29155:58;29247:6;29242:2;29234:6;29230:15;29223:31;29038:223;:::o;29267:182::-;29407:34;29403:1;29395:6;29391:14;29384:58;29267:182;:::o;29455:174::-;29595:26;29591:1;29583:6;29579:14;29572:50;29455:174;:::o;29635:114::-;;:::o;29755:166::-;29895:18;29891:1;29883:6;29879:14;29872:42;29755:166;:::o;29927:181::-;30067:33;30063:1;30055:6;30051:14;30044:57;29927:181;:::o;30114:180::-;30254:32;30250:1;30242:6;30238:14;30231:56;30114:180;:::o;30300:122::-;30373:24;30391:5;30373:24;:::i;:::-;30366:5;30363:35;30353:63;;30412:1;30409;30402:12;30353:63;30300:122;:::o;30428:138::-;30509:32;30535:5;30509:32;:::i;:::-;30502:5;30499:43;30489:71;;30556:1;30553;30546:12;30489:71;30428:138;:::o;30572:116::-;30642:21;30657:5;30642:21;:::i;:::-;30635:5;30632:32;30622:60;;30678:1;30675;30668:12;30622:60;30572:116;:::o;30694:120::-;30766:23;30783:5;30766:23;:::i;:::-;30759:5;30756:34;30746:62;;30804:1;30801;30794:12;30746:62;30694:120;:::o;30820:122::-;30893:24;30911:5;30893:24;:::i;:::-;30886:5;30883:35;30873:63;;30932:1;30929;30922:12;30873:63;30820:122;:::o
Swarm Source
ipfs://b7dd0c4040885897a9628892a9d10bf0e987c14736f19e2c1e835077fe042e43
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.