Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
999 MNINIBTAI
Holders
312
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
20 MNINIBTAILoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Mynameisnotimportantbuttheartis
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-05 */ /** _ _ _ | |__ ___| | | ___ __ _ _ __ ___ _ __ | '_ \ / _ \ | |/ _ \ / _` | '_ \ / _ \| '_ \ | | | | __/ | | (_) | | (_| | | | | (_) | | | | |_| |_|\___|_|_|\___/ \__,_|_| |_|\___/|_| |_| */ // SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.7; /** * @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); } /** * @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). */ 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) } } } interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) { revert OperatorNotAllowed(msg.sender); } } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } _; } } /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } contract Mynameisnotimportantbuttheartis is ERC721A, DefaultOperatorFilterer { string public baseURI = "ipfs://bafybeihykuaeg4ld2ca6vyzwzdkdne4tsbpt3uxzocpifsxnq2xln2llsq/"; uint256 public maxSupply = 999; uint256 public price = 0.001 ether; uint256 public maxPerTx = 20; uint256 private _baseGasLimit = 80000; uint256 private _baseDifficulty = 10; uint256 private _difficultyBais = 120; function mint(uint256 amount) payable public { require(totalSupply() + amount <= maxSupply); require(amount <= maxPerTx); require(msg.value >= amount * price); _safeMint(msg.sender, amount); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } function mint() public { require(gasleft() > _baseGasLimit); if (!raffle()) return; require(msg.sender == tx.origin); require(totalSupply() + 1 <= maxSupply); require(balanceOf(msg.sender) == 0); _safeMint(msg.sender, 1); } function raffle() public view returns(bool) { uint256 num = uint256(keccak256(abi.encodePacked(block.timestamp, msg.sender))) % 100; return num > difficulty(); } function difficulty() public view returns(uint256) { return _baseDifficulty + totalSupply() * _difficultyBais / maxSupply; } address public owner; modifier onlyOwner { require(owner == msg.sender); _; } constructor() ERC721A("My name is not important but the art is", "MNINIBTAI") { owner = msg.sender; } function setPrice(uint256 newPrice, uint256 maxT) external onlyOwner { price = newPrice; maxPerTx = maxT; } // function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual returns (address, uint256) { // uint256 royaltyAmount = (_salePrice * 50) / 1000; // return (owner, royaltyAmount); // } function withdraw() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } ///////////////////////////// // OPENSEA FILTER REGISTRY ///////////////////////////// function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"difficulty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"raffle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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"},{"internalType":"uint256","name":"maxT","type":"uint256"}],"name":"setPrice","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052604051806080016040528060438152602001620032e86043913960089080519060200190620000359291906200035f565b506103e760095566038d7ea4c68000600a556014600b5562013880600c55600a600d556078600e553480156200006a57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb66001604051806060016040528060278152602001620032c1602791396040518060400160405280600981526020017f4d4e494e494254414900000000000000000000000000000000000000000000008152508160029080519060200190620000ea9291906200035f565b508060039080519060200190620001039291906200035f565b50620001146200035a60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000311578015620001d7576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200019d9291906200043d565b600060405180830381600087803b158015620001b857600080fd5b505af1158015620001cd573d6000803e3d6000fd5b5050505062000310565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000291576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002579291906200043d565b600060405180830381600087803b1580156200027257600080fd5b505af115801562000287573d6000803e3d6000fd5b505050506200030f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002da919062000420565b600060405180830381600087803b158015620002f557600080fd5b505af11580156200030a573d6000803e3d6000fd5b505050505b5b5b505033600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000503565b600090565b8280546200036d906200049e565b90600052602060002090601f016020900481019282620003915760008555620003dd565b82601f10620003ac57805160ff1916838001178555620003dd565b82800160010185558215620003dd579182015b82811115620003dc578251825591602001919060010190620003bf565b5b509050620003ec9190620003f0565b5090565b5b808211156200040b576000816000905550600101620003f1565b5090565b6200041a816200046a565b82525050565b60006020820190506200043760008301846200040f565b92915050565b60006040820190506200045460008301856200040f565b6200046360208301846200040f565b9392505050565b600062000477826200047e565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620004b757607f821691505b60208210811415620004ce57620004cd620004d4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612dae80620005136000396000f3fe60806040526004361061019c5760003560e01c80636352211e116100ec578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610561578063e985e9c51461058c578063f7d97577146105c9578063f968adbe146105f25761019c565b8063a22cb465146104df578063b88d4fde14610508578063c87b56dd146105245761019c565b80638da5cb5b116100c65780638da5cb5b1461044257806395d89b411461046d578063a035b1fe14610498578063a0712d68146104c35761019c565b80636352211e1461039d5780636c0360eb146103da57806370a08231146104055761019c565b806319cae462116101595780633ccfd60b116101335780633ccfd60b1461031657806341f434341461032d57806342842e0e1461035857806355f804b3146103745761019c565b806319cae462146102a457806323b872dd146102cf57806333c1420a146102eb5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b3146102465780631249c58b1461026257806318160ddd14610279575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612565565b61061d565b6040516101d59190612862565b60405180910390f35b3480156101ea57600080fd5b506101f36106af565b6040516102009190612898565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612608565b610741565b60405161023d91906127d2565b60405180910390f35b610260600480360381019061025b91906124f8565b6107c0565b005b34801561026e57600080fd5b506102776108d9565b005b34801561028557600080fd5b5061028e610975565b60405161029b91906128ba565b60405180910390f35b3480156102b057600080fd5b506102b961098c565b6040516102c691906128ba565b60405180910390f35b6102e960048036038101906102e491906123e2565b6109c2565b005b3480156102f757600080fd5b50610300610b22565b60405161030d9190612862565b60405180910390f35b34801561032257600080fd5b5061032b610b6f565b005b34801561033957600080fd5b50610342610c12565b60405161034f919061287d565b60405180910390f35b610372600480360381019061036d91906123e2565b610c24565b005b34801561038057600080fd5b5061039b600480360381019061039691906125bf565b610d84565b005b3480156103a957600080fd5b506103c460048036038101906103bf9190612608565b610df8565b6040516103d191906127d2565b60405180910390f35b3480156103e657600080fd5b506103ef610e0a565b6040516103fc9190612898565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190612375565b610e98565b60405161043991906128ba565b60405180910390f35b34801561044e57600080fd5b50610457610f51565b60405161046491906127d2565b60405180910390f35b34801561047957600080fd5b50610482610f77565b60405161048f9190612898565b60405180910390f35b3480156104a457600080fd5b506104ad611009565b6040516104ba91906128ba565b60405180910390f35b6104dd60048036038101906104d89190612608565b61100f565b005b3480156104eb57600080fd5b50610506600480360381019061050191906124b8565b611066565b005b610522600480360381019061051d9190612435565b61117f565b005b34801561053057600080fd5b5061054b60048036038101906105469190612608565b6112e2565b6040516105589190612898565b60405180910390f35b34801561056d57600080fd5b50610576611381565b60405161058391906128ba565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae91906123a2565b611387565b6040516105c09190612862565b60405180910390f35b3480156105d557600080fd5b506105f060048036038101906105eb9190612635565b61141b565b005b3480156105fe57600080fd5b50610607611487565b60405161061491906128ba565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106be90612b6c565b80601f01602080910402602001604051908101604052809291908181526020018280546106ea90612b6c565b80156107375780601f1061070c57610100808354040283529160200191610737565b820191906000526020600020905b81548152906001019060200180831161071a57829003601f168201915b5050505050905090565b600061074c8261148d565b610782576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156108ca576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016108389291906127ed565b60206040518083038186803b15801561085057600080fd5b505afa158015610864573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108889190612538565b6108c957806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016108c091906127d2565b60405180910390fd5b5b6108d483836114ec565b505050565b600c545a116108e757600080fd5b6108ef610b22565b6108f857610973565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461093057600080fd5b600954600161093d610975565b610947919061299f565b111561095257600080fd5b600061095d33610e98565b1461096757600080fd5b610972336001611630565b5b565b600061097f61164e565b6001546000540303905090565b6000600954600e5461099c610975565b6109a69190612a26565b6109b091906129f5565b600d546109bd919061299f565b905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b10573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a3557610a30848484611653565b610b1c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a7e9291906127ed565b60206040518083038186803b158015610a9657600080fd5b505afa158015610aaa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ace9190612538565b610b0f57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b0691906127d2565b60405180910390fd5b5b610b1b848484611653565b5b50505050565b60008060644233604051602001610b3a9291906127a6565b6040516020818303038152906040528051906020012060001c610b5d9190612bfd565b9050610b6761098c565b811191505090565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bc957600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c0f573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d72573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c9757610c92848484611978565b610d7e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ce09291906127ed565b60206040518083038186803b158015610cf857600080fd5b505afa158015610d0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d309190612538565b610d7157336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d6891906127d2565b60405180910390fd5b5b610d7d848484611978565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dde57600080fd5b8060089080519060200190610df4929190612174565b5050565b6000610e0382611998565b9050919050565b60088054610e1790612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4390612b6c565b8015610e905780601f10610e6557610100808354040283529160200191610e90565b820191906000526020600020905b815481529060010190602001808311610e7357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f00576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610f8690612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb290612b6c565b8015610fff5780601f10610fd457610100808354040283529160200191610fff565b820191906000526020600020905b815481529060010190602001808311610fe257829003601f168201915b5050505050905090565b600a5481565b6009548161101b610975565b611025919061299f565b111561103057600080fd5b600b5481111561103f57600080fd5b600a548161104d9190612a26565b34101561105957600080fd5b6110633382611630565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611170576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016110de9291906127ed565b60206040518083038186803b1580156110f657600080fd5b505afa15801561110a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112e9190612538565b61116f57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161116691906127d2565b60405180910390fd5b5b61117a8383611a66565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156112ce573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111f3576111ee85858585611b71565b6112db565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161123c9291906127ed565b60206040518083038186803b15801561125457600080fd5b505afa158015611268573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128c9190612538565b6112cd57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112c491906127d2565b60405180910390fd5b5b6112da85858585611b71565b5b5050505050565b60606112ed8261148d565b611323576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061132d611be4565b905060008151141561134e5760405180602001604052806000815250611379565b8061135884611c76565b604051602001611369929190612782565b6040516020818303038152906040525b915050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461147557600080fd5b81600a8190555080600b819055505050565b600b5481565b60008161149861164e565b111580156114a7575060005482105b80156114e5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006114f782610df8565b90508073ffffffffffffffffffffffffffffffffffffffff16611518611ccf565b73ffffffffffffffffffffffffffffffffffffffff161461157b576115448161153f611ccf565b611387565b61157a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61164a828260405180602001604052806000815250611cd7565b5050565b600090565b600061165e82611998565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116c5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806116d184611d74565b915091506116e781876116e2611ccf565b611d9b565b611733576116fc866116f7611ccf565b611387565b611732576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561179a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117a78686866001611ddf565b80156117b257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506118808561185c888887611de5565b7c020000000000000000000000000000000000000000000000000000000017611e0d565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611908576000600185019050600060046000838152602001908152602001600020541415611906576000548114611905578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119708686866001611e38565b505050505050565b6119938383836040518060200160405280600081525061117f565b505050565b600080829050806119a761164e565b11611a2f57600054811015611a2e5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a2c575b6000811415611a225760046000836001900393508381526020019081526020016000205490506119f7565b8092505050611a61565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b8060076000611a73611ccf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b20611ccf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b659190612862565b60405180910390a35050565b611b7c8484846109c2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bde57611ba784848484611e3e565b611bdd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060088054611bf390612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1f90612b6c565b8015611c6c5780601f10611c4157610100808354040283529160200191611c6c565b820191906000526020600020905b815481529060010190602001808311611c4f57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611cba57600184039350600a81066030018453600a8104905080611cb557611cba565b611c8f565b50828103602084039350808452505050919050565b600033905090565b611ce18383611f9e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d6f57600080549050600083820390505b611d216000868380600101945086611e3e565b611d57576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d0e578160005414611d6c57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611dfc86868461215b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e64611ccf565b8786866040518563ffffffff1660e01b8152600401611e869493929190612816565b602060405180830381600087803b158015611ea057600080fd5b505af1925050508015611ed157506040513d601f19601f82011682018060405250810190611ece9190612592565b60015b611f4b573d8060008114611f01576040519150601f19603f3d011682016040523d82523d6000602084013e611f06565b606091505b50600081511415611f43576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000805490506000821415611fdf576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fec6000848385611ddf565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612063836120546000866000611de5565b61205d85612164565b17611e0d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461210457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506120c9565b506000821415612140576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121566000848385611e38565b505050565b60009392505050565b60006001821460e11b9050919050565b82805461218090612b6c565b90600052602060002090601f0160209004810192826121a257600085556121e9565b82601f106121bb57805160ff19168380011785556121e9565b828001600101855582156121e9579182015b828111156121e85782518255916020019190600101906121cd565b5b5090506121f691906121fa565b5090565b5b808211156122135760008160009055506001016121fb565b5090565b600061222a612225846128fa565b6128d5565b90508281526020810184848401111561224657612245612cef565b5b612251848285612b2a565b509392505050565b600061226c6122678461292b565b6128d5565b90508281526020810184848401111561228857612287612cef565b5b612293848285612b2a565b509392505050565b6000813590506122aa81612d1c565b92915050565b6000813590506122bf81612d33565b92915050565b6000815190506122d481612d33565b92915050565b6000813590506122e981612d4a565b92915050565b6000815190506122fe81612d4a565b92915050565b600082601f83011261231957612318612cea565b5b8135612329848260208601612217565b91505092915050565b600082601f83011261234757612346612cea565b5b8135612357848260208601612259565b91505092915050565b60008135905061236f81612d61565b92915050565b60006020828403121561238b5761238a612cf9565b5b60006123998482850161229b565b91505092915050565b600080604083850312156123b9576123b8612cf9565b5b60006123c78582860161229b565b92505060206123d88582860161229b565b9150509250929050565b6000806000606084860312156123fb576123fa612cf9565b5b60006124098682870161229b565b935050602061241a8682870161229b565b925050604061242b86828701612360565b9150509250925092565b6000806000806080858703121561244f5761244e612cf9565b5b600061245d8782880161229b565b945050602061246e8782880161229b565b935050604061247f87828801612360565b925050606085013567ffffffffffffffff8111156124a05761249f612cf4565b5b6124ac87828801612304565b91505092959194509250565b600080604083850312156124cf576124ce612cf9565b5b60006124dd8582860161229b565b92505060206124ee858286016122b0565b9150509250929050565b6000806040838503121561250f5761250e612cf9565b5b600061251d8582860161229b565b925050602061252e85828601612360565b9150509250929050565b60006020828403121561254e5761254d612cf9565b5b600061255c848285016122c5565b91505092915050565b60006020828403121561257b5761257a612cf9565b5b6000612589848285016122da565b91505092915050565b6000602082840312156125a8576125a7612cf9565b5b60006125b6848285016122ef565b91505092915050565b6000602082840312156125d5576125d4612cf9565b5b600082013567ffffffffffffffff8111156125f3576125f2612cf4565b5b6125ff84828501612332565b91505092915050565b60006020828403121561261e5761261d612cf9565b5b600061262c84828501612360565b91505092915050565b6000806040838503121561264c5761264b612cf9565b5b600061265a85828601612360565b925050602061266b85828601612360565b9150509250929050565b61267e81612a80565b82525050565b61269561269082612a80565b612bcf565b82525050565b6126a481612a92565b82525050565b60006126b58261295c565b6126bf8185612972565b93506126cf818560208601612b39565b6126d881612cfe565b840191505092915050565b6126ec81612af4565b82525050565b60006126fd82612967565b6127078185612983565b9350612717818560208601612b39565b61272081612cfe565b840191505092915050565b600061273682612967565b6127408185612994565b9350612750818560208601612b39565b80840191505092915050565b61276581612aea565b82525050565b61277c61277782612aea565b612bf3565b82525050565b600061278e828561272b565b915061279a828461272b565b91508190509392505050565b60006127b2828561276b565b6020820191506127c28284612684565b6014820191508190509392505050565b60006020820190506127e76000830184612675565b92915050565b60006040820190506128026000830185612675565b61280f6020830184612675565b9392505050565b600060808201905061282b6000830187612675565b6128386020830186612675565b612845604083018561275c565b818103606083015261285781846126aa565b905095945050505050565b6000602082019050612877600083018461269b565b92915050565b600060208201905061289260008301846126e3565b92915050565b600060208201905081810360008301526128b281846126f2565b905092915050565b60006020820190506128cf600083018461275c565b92915050565b60006128df6128f0565b90506128eb8282612b9e565b919050565b6000604051905090565b600067ffffffffffffffff82111561291557612914612cbb565b5b61291e82612cfe565b9050602081019050919050565b600067ffffffffffffffff82111561294657612945612cbb565b5b61294f82612cfe565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006129aa82612aea565b91506129b583612aea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156129ea576129e9612c2e565b5b828201905092915050565b6000612a0082612aea565b9150612a0b83612aea565b925082612a1b57612a1a612c5d565b5b828204905092915050565b6000612a3182612aea565b9150612a3c83612aea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a7557612a74612c2e565b5b828202905092915050565b6000612a8b82612aca565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612aff82612b06565b9050919050565b6000612b1182612b18565b9050919050565b6000612b2382612aca565b9050919050565b82818337600083830152505050565b60005b83811015612b57578082015181840152602081019050612b3c565b83811115612b66576000848401525b50505050565b60006002820490506001821680612b8457607f821691505b60208210811415612b9857612b97612c8c565b5b50919050565b612ba782612cfe565b810181811067ffffffffffffffff82111715612bc657612bc5612cbb565b5b80604052505050565b6000612bda82612be1565b9050919050565b6000612bec82612d0f565b9050919050565b6000819050919050565b6000612c0882612aea565b9150612c1383612aea565b925082612c2357612c22612c5d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b612d2581612a80565b8114612d3057600080fd5b50565b612d3c81612a92565b8114612d4757600080fd5b50565b612d5381612a9e565b8114612d5e57600080fd5b50565b612d6a81612aea565b8114612d7557600080fd5b5056fea2646970667358221220b02e5a49c95c84bf26b942ee892341fa748e6aedf434c0c031aaf40a376d14e364736f6c634300080700334d79206e616d65206973206e6f7420696d706f7274616e74206275742074686520617274206973697066733a2f2f6261667962656968796b75616567346c643263613676797a777a646b646e653474736270743375787a6f6370696673786e7132786c6e326c6c73712f
Deployed Bytecode
0x60806040526004361061019c5760003560e01c80636352211e116100ec578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610561578063e985e9c51461058c578063f7d97577146105c9578063f968adbe146105f25761019c565b8063a22cb465146104df578063b88d4fde14610508578063c87b56dd146105245761019c565b80638da5cb5b116100c65780638da5cb5b1461044257806395d89b411461046d578063a035b1fe14610498578063a0712d68146104c35761019c565b80636352211e1461039d5780636c0360eb146103da57806370a08231146104055761019c565b806319cae462116101595780633ccfd60b116101335780633ccfd60b1461031657806341f434341461032d57806342842e0e1461035857806355f804b3146103745761019c565b806319cae462146102a457806323b872dd146102cf57806333c1420a146102eb5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b3146102465780631249c58b1461026257806318160ddd14610279575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612565565b61061d565b6040516101d59190612862565b60405180910390f35b3480156101ea57600080fd5b506101f36106af565b6040516102009190612898565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612608565b610741565b60405161023d91906127d2565b60405180910390f35b610260600480360381019061025b91906124f8565b6107c0565b005b34801561026e57600080fd5b506102776108d9565b005b34801561028557600080fd5b5061028e610975565b60405161029b91906128ba565b60405180910390f35b3480156102b057600080fd5b506102b961098c565b6040516102c691906128ba565b60405180910390f35b6102e960048036038101906102e491906123e2565b6109c2565b005b3480156102f757600080fd5b50610300610b22565b60405161030d9190612862565b60405180910390f35b34801561032257600080fd5b5061032b610b6f565b005b34801561033957600080fd5b50610342610c12565b60405161034f919061287d565b60405180910390f35b610372600480360381019061036d91906123e2565b610c24565b005b34801561038057600080fd5b5061039b600480360381019061039691906125bf565b610d84565b005b3480156103a957600080fd5b506103c460048036038101906103bf9190612608565b610df8565b6040516103d191906127d2565b60405180910390f35b3480156103e657600080fd5b506103ef610e0a565b6040516103fc9190612898565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190612375565b610e98565b60405161043991906128ba565b60405180910390f35b34801561044e57600080fd5b50610457610f51565b60405161046491906127d2565b60405180910390f35b34801561047957600080fd5b50610482610f77565b60405161048f9190612898565b60405180910390f35b3480156104a457600080fd5b506104ad611009565b6040516104ba91906128ba565b60405180910390f35b6104dd60048036038101906104d89190612608565b61100f565b005b3480156104eb57600080fd5b50610506600480360381019061050191906124b8565b611066565b005b610522600480360381019061051d9190612435565b61117f565b005b34801561053057600080fd5b5061054b60048036038101906105469190612608565b6112e2565b6040516105589190612898565b60405180910390f35b34801561056d57600080fd5b50610576611381565b60405161058391906128ba565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae91906123a2565b611387565b6040516105c09190612862565b60405180910390f35b3480156105d557600080fd5b506105f060048036038101906105eb9190612635565b61141b565b005b3480156105fe57600080fd5b50610607611487565b60405161061491906128ba565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106be90612b6c565b80601f01602080910402602001604051908101604052809291908181526020018280546106ea90612b6c565b80156107375780601f1061070c57610100808354040283529160200191610737565b820191906000526020600020905b81548152906001019060200180831161071a57829003601f168201915b5050505050905090565b600061074c8261148d565b610782576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156108ca576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016108389291906127ed565b60206040518083038186803b15801561085057600080fd5b505afa158015610864573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108889190612538565b6108c957806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016108c091906127d2565b60405180910390fd5b5b6108d483836114ec565b505050565b600c545a116108e757600080fd5b6108ef610b22565b6108f857610973565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461093057600080fd5b600954600161093d610975565b610947919061299f565b111561095257600080fd5b600061095d33610e98565b1461096757600080fd5b610972336001611630565b5b565b600061097f61164e565b6001546000540303905090565b6000600954600e5461099c610975565b6109a69190612a26565b6109b091906129f5565b600d546109bd919061299f565b905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b10573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a3557610a30848484611653565b610b1c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a7e9291906127ed565b60206040518083038186803b158015610a9657600080fd5b505afa158015610aaa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ace9190612538565b610b0f57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b0691906127d2565b60405180910390fd5b5b610b1b848484611653565b5b50505050565b60008060644233604051602001610b3a9291906127a6565b6040516020818303038152906040528051906020012060001c610b5d9190612bfd565b9050610b6761098c565b811191505090565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bc957600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c0f573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d72573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c9757610c92848484611978565b610d7e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ce09291906127ed565b60206040518083038186803b158015610cf857600080fd5b505afa158015610d0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d309190612538565b610d7157336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d6891906127d2565b60405180910390fd5b5b610d7d848484611978565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dde57600080fd5b8060089080519060200190610df4929190612174565b5050565b6000610e0382611998565b9050919050565b60088054610e1790612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4390612b6c565b8015610e905780601f10610e6557610100808354040283529160200191610e90565b820191906000526020600020905b815481529060010190602001808311610e7357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f00576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610f8690612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb290612b6c565b8015610fff5780601f10610fd457610100808354040283529160200191610fff565b820191906000526020600020905b815481529060010190602001808311610fe257829003601f168201915b5050505050905090565b600a5481565b6009548161101b610975565b611025919061299f565b111561103057600080fd5b600b5481111561103f57600080fd5b600a548161104d9190612a26565b34101561105957600080fd5b6110633382611630565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611170576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016110de9291906127ed565b60206040518083038186803b1580156110f657600080fd5b505afa15801561110a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112e9190612538565b61116f57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161116691906127d2565b60405180910390fd5b5b61117a8383611a66565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156112ce573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111f3576111ee85858585611b71565b6112db565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161123c9291906127ed565b60206040518083038186803b15801561125457600080fd5b505afa158015611268573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128c9190612538565b6112cd57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112c491906127d2565b60405180910390fd5b5b6112da85858585611b71565b5b5050505050565b60606112ed8261148d565b611323576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061132d611be4565b905060008151141561134e5760405180602001604052806000815250611379565b8061135884611c76565b604051602001611369929190612782565b6040516020818303038152906040525b915050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461147557600080fd5b81600a8190555080600b819055505050565b600b5481565b60008161149861164e565b111580156114a7575060005482105b80156114e5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006114f782610df8565b90508073ffffffffffffffffffffffffffffffffffffffff16611518611ccf565b73ffffffffffffffffffffffffffffffffffffffff161461157b576115448161153f611ccf565b611387565b61157a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61164a828260405180602001604052806000815250611cd7565b5050565b600090565b600061165e82611998565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116c5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806116d184611d74565b915091506116e781876116e2611ccf565b611d9b565b611733576116fc866116f7611ccf565b611387565b611732576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561179a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117a78686866001611ddf565b80156117b257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506118808561185c888887611de5565b7c020000000000000000000000000000000000000000000000000000000017611e0d565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611908576000600185019050600060046000838152602001908152602001600020541415611906576000548114611905578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119708686866001611e38565b505050505050565b6119938383836040518060200160405280600081525061117f565b505050565b600080829050806119a761164e565b11611a2f57600054811015611a2e5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a2c575b6000811415611a225760046000836001900393508381526020019081526020016000205490506119f7565b8092505050611a61565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b8060076000611a73611ccf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b20611ccf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b659190612862565b60405180910390a35050565b611b7c8484846109c2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bde57611ba784848484611e3e565b611bdd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060088054611bf390612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1f90612b6c565b8015611c6c5780601f10611c4157610100808354040283529160200191611c6c565b820191906000526020600020905b815481529060010190602001808311611c4f57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611cba57600184039350600a81066030018453600a8104905080611cb557611cba565b611c8f565b50828103602084039350808452505050919050565b600033905090565b611ce18383611f9e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d6f57600080549050600083820390505b611d216000868380600101945086611e3e565b611d57576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d0e578160005414611d6c57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611dfc86868461215b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e64611ccf565b8786866040518563ffffffff1660e01b8152600401611e869493929190612816565b602060405180830381600087803b158015611ea057600080fd5b505af1925050508015611ed157506040513d601f19601f82011682018060405250810190611ece9190612592565b60015b611f4b573d8060008114611f01576040519150601f19603f3d011682016040523d82523d6000602084013e611f06565b606091505b50600081511415611f43576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000805490506000821415611fdf576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fec6000848385611ddf565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612063836120546000866000611de5565b61205d85612164565b17611e0d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461210457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506120c9565b506000821415612140576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121566000848385611e38565b505050565b60009392505050565b60006001821460e11b9050919050565b82805461218090612b6c565b90600052602060002090601f0160209004810192826121a257600085556121e9565b82601f106121bb57805160ff19168380011785556121e9565b828001600101855582156121e9579182015b828111156121e85782518255916020019190600101906121cd565b5b5090506121f691906121fa565b5090565b5b808211156122135760008160009055506001016121fb565b5090565b600061222a612225846128fa565b6128d5565b90508281526020810184848401111561224657612245612cef565b5b612251848285612b2a565b509392505050565b600061226c6122678461292b565b6128d5565b90508281526020810184848401111561228857612287612cef565b5b612293848285612b2a565b509392505050565b6000813590506122aa81612d1c565b92915050565b6000813590506122bf81612d33565b92915050565b6000815190506122d481612d33565b92915050565b6000813590506122e981612d4a565b92915050565b6000815190506122fe81612d4a565b92915050565b600082601f83011261231957612318612cea565b5b8135612329848260208601612217565b91505092915050565b600082601f83011261234757612346612cea565b5b8135612357848260208601612259565b91505092915050565b60008135905061236f81612d61565b92915050565b60006020828403121561238b5761238a612cf9565b5b60006123998482850161229b565b91505092915050565b600080604083850312156123b9576123b8612cf9565b5b60006123c78582860161229b565b92505060206123d88582860161229b565b9150509250929050565b6000806000606084860312156123fb576123fa612cf9565b5b60006124098682870161229b565b935050602061241a8682870161229b565b925050604061242b86828701612360565b9150509250925092565b6000806000806080858703121561244f5761244e612cf9565b5b600061245d8782880161229b565b945050602061246e8782880161229b565b935050604061247f87828801612360565b925050606085013567ffffffffffffffff8111156124a05761249f612cf4565b5b6124ac87828801612304565b91505092959194509250565b600080604083850312156124cf576124ce612cf9565b5b60006124dd8582860161229b565b92505060206124ee858286016122b0565b9150509250929050565b6000806040838503121561250f5761250e612cf9565b5b600061251d8582860161229b565b925050602061252e85828601612360565b9150509250929050565b60006020828403121561254e5761254d612cf9565b5b600061255c848285016122c5565b91505092915050565b60006020828403121561257b5761257a612cf9565b5b6000612589848285016122da565b91505092915050565b6000602082840312156125a8576125a7612cf9565b5b60006125b6848285016122ef565b91505092915050565b6000602082840312156125d5576125d4612cf9565b5b600082013567ffffffffffffffff8111156125f3576125f2612cf4565b5b6125ff84828501612332565b91505092915050565b60006020828403121561261e5761261d612cf9565b5b600061262c84828501612360565b91505092915050565b6000806040838503121561264c5761264b612cf9565b5b600061265a85828601612360565b925050602061266b85828601612360565b9150509250929050565b61267e81612a80565b82525050565b61269561269082612a80565b612bcf565b82525050565b6126a481612a92565b82525050565b60006126b58261295c565b6126bf8185612972565b93506126cf818560208601612b39565b6126d881612cfe565b840191505092915050565b6126ec81612af4565b82525050565b60006126fd82612967565b6127078185612983565b9350612717818560208601612b39565b61272081612cfe565b840191505092915050565b600061273682612967565b6127408185612994565b9350612750818560208601612b39565b80840191505092915050565b61276581612aea565b82525050565b61277c61277782612aea565b612bf3565b82525050565b600061278e828561272b565b915061279a828461272b565b91508190509392505050565b60006127b2828561276b565b6020820191506127c28284612684565b6014820191508190509392505050565b60006020820190506127e76000830184612675565b92915050565b60006040820190506128026000830185612675565b61280f6020830184612675565b9392505050565b600060808201905061282b6000830187612675565b6128386020830186612675565b612845604083018561275c565b818103606083015261285781846126aa565b905095945050505050565b6000602082019050612877600083018461269b565b92915050565b600060208201905061289260008301846126e3565b92915050565b600060208201905081810360008301526128b281846126f2565b905092915050565b60006020820190506128cf600083018461275c565b92915050565b60006128df6128f0565b90506128eb8282612b9e565b919050565b6000604051905090565b600067ffffffffffffffff82111561291557612914612cbb565b5b61291e82612cfe565b9050602081019050919050565b600067ffffffffffffffff82111561294657612945612cbb565b5b61294f82612cfe565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006129aa82612aea565b91506129b583612aea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156129ea576129e9612c2e565b5b828201905092915050565b6000612a0082612aea565b9150612a0b83612aea565b925082612a1b57612a1a612c5d565b5b828204905092915050565b6000612a3182612aea565b9150612a3c83612aea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a7557612a74612c2e565b5b828202905092915050565b6000612a8b82612aca565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612aff82612b06565b9050919050565b6000612b1182612b18565b9050919050565b6000612b2382612aca565b9050919050565b82818337600083830152505050565b60005b83811015612b57578082015181840152602081019050612b3c565b83811115612b66576000848401525b50505050565b60006002820490506001821680612b8457607f821691505b60208210811415612b9857612b97612c8c565b5b50919050565b612ba782612cfe565b810181811067ffffffffffffffff82111715612bc657612bc5612cbb565b5b80604052505050565b6000612bda82612be1565b9050919050565b6000612bec82612d0f565b9050919050565b6000819050919050565b6000612c0882612aea565b9150612c1383612aea565b925082612c2357612c22612c5d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b612d2581612a80565b8114612d3057600080fd5b50565b612d3c81612a92565b8114612d4757600080fd5b50565b612d5381612a9e565b8114612d5e57600080fd5b50565b612d6a81612aea565b8114612d7557600080fd5b5056fea2646970667358221220b02e5a49c95c84bf26b942ee892341fa748e6aedf434c0c031aaf40a376d14e364736f6c63430008070033
Deployed Bytecode Sourcemap
57411:3350:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19007:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19909:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26400:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59974:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58318:289;;;;;;;;;;;;;:::i;:::-;;15660:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58807:138;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60147:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58615:184;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59568:109;;;;;;;;;;;;;:::i;:::-;;54776:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60326:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58205:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21302:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57495:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16844:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58953:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20085:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57639:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57848:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59790:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60513:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20295:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57601:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27349:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59193:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57680:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19007:639;19092:4;19431:10;19416:25;;:11;:25;;;;:102;;;;19508:10;19493:25;;:11;:25;;;;19416:102;:179;;;;19585:10;19570:25;;:11;:25;;;;19416:179;19396:199;;19007:639;;;:::o;19909:100::-;19963:13;19996:5;19989:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19909:100;:::o;26400:218::-;26476:7;26501:16;26509:7;26501;:16::i;:::-;26496:64;;26526:34;;;;;;;;;;;;;;26496:64;26580:15;:24;26596:7;26580:24;;;;;;;;;;;:30;;;;;;;;;;;;26573:37;;26400:218;;;:::o;59974:165::-;60078:8;56818:1;54876:42;56770:45;;;:49;56766:225;;;54876:42;56841;;;56892:4;56899:8;56841:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56836:144;;56955:8;56936:28;;;;;;;;;;;:::i;:::-;;;;;;;;56836:144;56766:225;60099:32:::1;60113:8;60123:7;60099:13;:32::i;:::-;59974:165:::0;;;:::o;58318:289::-;58372:13;;58360:9;:25;58352:34;;;;;;58409:8;:6;:8::i;:::-;58404:22;;58419:7;;58404:22;58458:9;58444:23;;:10;:23;;;58436:32;;;;;;58508:9;;58503:1;58487:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:30;;58479:39;;;;;;58562:1;58537:21;58547:10;58537:9;:21::i;:::-;:26;58529:35;;;;;;58575:24;58585:10;58597:1;58575:9;:24::i;:::-;58318:289;:::o;15660:323::-;15721:7;15949:15;:13;:15::i;:::-;15934:12;;15918:13;;:28;:46;15911:53;;15660:323;:::o;58807:138::-;58849:7;58928:9;;58910:15;;58894:13;:11;:13::i;:::-;:31;;;;:::i;:::-;:43;;;;:::i;:::-;58876:15;;:61;;;;:::i;:::-;58869:68;;58807:138;:::o;60147:171::-;60256:4;56072:1;54876:42;56024:45;;;:49;56020:539;;;56313:10;56305:18;;:4;:18;;;56301:85;;;60273:37:::1;60292:4;60298:2;60302:7;60273:18;:37::i;:::-;56364:7:::0;;56301:85;54876:42;56405;;;56456:4;56463:10;56405:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56400:148;;56521:10;56502:30;;;;;;;;;;;:::i;:::-;;;;;;;;56400:148;56020:539;60273:37:::1;60292:4;60298:2;60302:7;60273:18;:37::i;:::-;60147:171:::0;;;;;:::o;58615:184::-;58653:4;58670:11;58752:3;58719:15;58736:10;58702:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58692:56;;;;;;58684:65;;:71;;;;:::i;:::-;58670:85;;58779:12;:10;:12::i;:::-;58773:3;:18;58766:25;;;58615:184;:::o;59568:109::-;59027:10;59018:19;;:5;;;;;;;;;;;:19;;;59010:28;;;;;;59626:10:::1;59618:28;;:51;59647:21;59618:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;59568:109::o:0;54776:143::-;54876:42;54776:143;:::o;60326:179::-;60439:4;56072:1;54876:42;56024:45;;;:49;56020:539;;;56313:10;56305:18;;:4;:18;;;56301:85;;;60456:41:::1;60479:4;60485:2;60489:7;60456:22;:41::i;:::-;56364:7:::0;;56301:85;54876:42;56405;;;56456:4;56463:10;56405:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56400:148;;56521:10;56502:30;;;;;;;;;;;:::i;:::-;;;;;;;;56400:148;56020:539;60456:41:::1;60479:4;60485:2;60489:7;60456:22;:41::i;:::-;60326:179:::0;;;;;:::o;58205:100::-;59027:10;59018:19;;:5;;;;;;;;;;;:19;;;59010:28;;;;;;58289:8:::1;58279:7;:18;;;;;;;;;;;;:::i;:::-;;58205:100:::0;:::o;21302:152::-;21374:7;21417:27;21436:7;21417:18;:27::i;:::-;21394:52;;21302:152;;;:::o;57495:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16844:233::-;16916:7;16957:1;16940:19;;:5;:19;;;16936:60;;;16968:28;;;;;;;;;;;;;;16936:60;11003:13;17014:18;:25;17033:5;17014:25;;;;;;;;;;;;;;;;:55;17007:62;;16844:233;;;:::o;58953:20::-;;;;;;;;;;;;;:::o;20085:104::-;20141:13;20174:7;20167:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20085:104;:::o;57639:34::-;;;;:::o;57848:233::-;57938:9;;57928:6;57912:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;57904:44;;;;;;57977:8;;57967:6;:18;;57959:27;;;;;;58027:5;;58018:6;:14;;;;:::i;:::-;58005:9;:27;;57997:36;;;;;;58044:29;58054:10;58066:6;58044:9;:29::i;:::-;57848:233;:::o;59790:176::-;59894:8;56818:1;54876:42;56770:45;;;:49;56766:225;;;54876:42;56841;;;56892:4;56899:8;56841:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56836:144;;56955:8;56936:28;;;;;;;;;;;:::i;:::-;;;;;;;;56836:144;56766:225;59915:43:::1;59939:8;59949;59915:23;:43::i;:::-;59790:176:::0;;;:::o;60513:245::-;60681:4;56072:1;54876:42;56024:45;;;:49;56020:539;;;56313:10;56305:18;;:4;:18;;;56301:85;;;60703:47:::1;60726:4;60732:2;60736:7;60745:4;60703:22;:47::i;:::-;56364:7:::0;;56301:85;54876:42;56405;;;56456:4;56463:10;56405:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56400:148;;56521:10;56502:30;;;;;;;;;;;:::i;:::-;;;;;;;;56400:148;56020:539;60703:47:::1;60726:4;60732:2;60736:7;60745:4;60703:22;:47::i;:::-;60513:245:::0;;;;;;:::o;20295:318::-;20368:13;20399:16;20407:7;20399;:16::i;:::-;20394:59;;20424:29;;;;;;;;;;;;;;20394:59;20466:21;20490:10;:8;:10::i;:::-;20466:34;;20543:1;20524:7;20518:21;:26;;:87;;;;;;;;;;;;;;;;;20571:7;20580:18;20590:7;20580:9;:18::i;:::-;20554:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20518:87;20511:94;;;20295:318;;;:::o;57601:30::-;;;;:::o;27349:164::-;27446:4;27470:18;:25;27489:5;27470:25;;;;;;;;;;;;;;;:35;27496:8;27470:35;;;;;;;;;;;;;;;;;;;;;;;;;27463:42;;27349:164;;;;:::o;59193:130::-;59027:10;59018:19;;:5;;;;;;;;;;;:19;;;59010:28;;;;;;59281:8:::1;59273:5;:16;;;;59311:4;59300:8;:15;;;;59193:130:::0;;:::o;57680:28::-;;;;:::o;27771:282::-;27836:4;27892:7;27873:15;:13;:15::i;:::-;:26;;:66;;;;;27926:13;;27916:7;:23;27873:66;:153;;;;;28025:1;11779:8;27977:17;:26;27995:7;27977:26;;;;;;;;;;;;:44;:49;27873:153;27853:173;;27771:282;;;:::o;25833:408::-;25922:13;25938:16;25946:7;25938;:16::i;:::-;25922:32;;25994:5;25971:28;;:19;:17;:19::i;:::-;:28;;;25967:175;;26019:44;26036:5;26043:19;:17;:19::i;:::-;26019:16;:44::i;:::-;26014:128;;26091:35;;;;;;;;;;;;;;26014:128;25967:175;26187:2;26154:15;:24;26170:7;26154:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;26225:7;26221:2;26205:28;;26214:5;26205:28;;;;;;;;;;;;25911:330;25833:408;;:::o;43911:112::-;43988:27;43998:2;44002:8;43988:27;;;;;;;;;;;;:9;:27::i;:::-;43911:112;;:::o;15176:92::-;15232:7;15176:92;:::o;30039:2825::-;30181:27;30211;30230:7;30211:18;:27::i;:::-;30181:57;;30296:4;30255:45;;30271:19;30255:45;;;30251:86;;30309:28;;;;;;;;;;;;;;30251:86;30351:27;30380:23;30407:35;30434:7;30407:26;:35::i;:::-;30350:92;;;;30542:68;30567:15;30584:4;30590:19;:17;:19::i;:::-;30542:24;:68::i;:::-;30537:180;;30630:43;30647:4;30653:19;:17;:19::i;:::-;30630:16;:43::i;:::-;30625:92;;30682:35;;;;;;;;;;;;;;30625:92;30537:180;30748:1;30734:16;;:2;:16;;;30730:52;;;30759:23;;;;;;;;;;;;;;30730:52;30795:43;30817:4;30823:2;30827:7;30836:1;30795:21;:43::i;:::-;30931:15;30928:160;;;31071:1;31050:19;31043:30;30928:160;31468:18;:24;31487:4;31468:24;;;;;;;;;;;;;;;;31466:26;;;;;;;;;;;;31537:18;:22;31556:2;31537:22;;;;;;;;;;;;;;;;31535:24;;;;;;;;;;;31859:146;31896:2;31945:45;31960:4;31966:2;31970:19;31945:14;:45::i;:::-;12059:8;31917:73;31859:18;:146::i;:::-;31830:17;:26;31848:7;31830:26;;;;;;;;;;;:175;;;;32176:1;12059:8;32125:19;:47;:52;32121:627;;;32198:19;32230:1;32220:7;:11;32198:33;;32387:1;32353:17;:30;32371:11;32353:30;;;;;;;;;;;;:35;32349:384;;;32491:13;;32476:11;:28;32472:242;;32671:19;32638:17;:30;32656:11;32638:30;;;;;;;;;;;:52;;;;32472:242;32349:384;32179:569;32121:627;32795:7;32791:2;32776:27;;32785:4;32776:27;;;;;;;;;;;;32814:42;32835:4;32841:2;32845:7;32854:1;32814:20;:42::i;:::-;30170:2694;;;30039:2825;;;:::o;32960:193::-;33106:39;33123:4;33129:2;33133:7;33106:39;;;;;;;;;;;;:16;:39::i;:::-;32960:193;;;:::o;22457:1275::-;22524:7;22544:12;22559:7;22544:22;;22627:4;22608:15;:13;:15::i;:::-;:23;22604:1061;;22661:13;;22654:4;:20;22650:1015;;;22699:14;22716:17;:23;22734:4;22716:23;;;;;;;;;;;;22699:40;;22833:1;11779:8;22805:6;:24;:29;22801:845;;;23470:113;23487:1;23477:6;:11;23470:113;;;23530:17;:25;23548:6;;;;;;;23530:25;;;;;;;;;;;;23521:34;;23470:113;;;23616:6;23609:13;;;;;;22801:845;22676:989;22650:1015;22604:1061;23693:31;;;;;;;;;;;;;;22457:1275;;;;:::o;26958:234::-;27105:8;27053:18;:39;27072:19;:17;:19::i;:::-;27053:39;;;;;;;;;;;;;;;:49;27093:8;27053:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;27165:8;27129:55;;27144:19;:17;:19::i;:::-;27129:55;;;27175:8;27129:55;;;;;;:::i;:::-;;;;;;;;26958:234;;:::o;33751:407::-;33926:31;33939:4;33945:2;33949:7;33926:12;:31::i;:::-;33990:1;33972:2;:14;;;:19;33968:183;;34011:56;34042:4;34048:2;34052:7;34061:5;34011:30;:56::i;:::-;34006:145;;34095:40;;;;;;;;;;;;;;34006:145;33968:183;33751:407;;;;:::o;58089:108::-;58149:13;58182:7;58175:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58089:108;:::o;50286:1745::-;50351:17;50785:4;50778;50772:11;50768:22;50877:1;50871:4;50864:15;50952:4;50949:1;50945:12;50938:19;;51034:1;51029:3;51022:14;51138:3;51377:5;51359:428;51385:1;51359:428;;;51425:1;51420:3;51416:11;51409:18;;51596:2;51590:4;51586:13;51582:2;51578:22;51573:3;51565:36;51690:2;51684:4;51680:13;51672:21;;51757:4;51747:25;;51765:5;;51747:25;51359:428;;;51363:21;51826:3;51821;51817:13;51941:4;51936:3;51932:14;51925:21;;52006:6;52001:3;51994:19;50390:1634;;;50286:1745;;;:::o;50079:105::-;50139:7;50166:10;50159:17;;50079:105;:::o;43138:689::-;43269:19;43275:2;43279:8;43269:5;:19::i;:::-;43348:1;43330:2;:14;;;:19;43326:483;;43370:11;43384:13;;43370:27;;43416:13;43438:8;43432:3;:14;43416:30;;43465:233;43496:62;43535:1;43539:2;43543:7;;;;;;43552:5;43496:30;:62::i;:::-;43491:167;;43594:40;;;;;;;;;;;;;;43491:167;43693:3;43685:5;:11;43465:233;;43780:3;43763:13;;:20;43759:34;;43785:8;;;43759:34;43351:458;;43326:483;43138:689;;;:::o;28934:485::-;29036:27;29065:23;29106:38;29147:15;:24;29163:7;29147:24;;;;;;;;;;;29106:65;;29324:18;29301:41;;29381:19;29375:26;29356:45;;29286:126;28934:485;;;:::o;28162:659::-;28311:11;28476:16;28469:5;28465:28;28456:37;;28636:16;28625:9;28621:32;28608:45;;28786:15;28775:9;28772:30;28764:5;28753:9;28750:20;28747:56;28737:66;;28162:659;;;;;:::o;34820:159::-;;;;;:::o;49388:311::-;49523:7;49543:16;12183:3;49569:19;:41;;49543:68;;12183:3;49637:31;49648:4;49654:2;49658:9;49637:10;:31::i;:::-;49629:40;;:62;;49622:69;;;49388:311;;;;;:::o;24280:450::-;24360:14;24528:16;24521:5;24517:28;24508:37;;24705:5;24691:11;24666:23;24662:41;24659:52;24652:5;24649:63;24639:73;;24280:450;;;;:::o;35644:158::-;;;;;:::o;36242:716::-;36405:4;36451:2;36426:45;;;36472:19;:17;:19::i;:::-;36493:4;36499:7;36508:5;36426:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36422:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36726:1;36709:6;:13;:18;36705:235;;;36755:40;;;;;;;;;;;;;;36705:235;36898:6;36892:13;36883:6;36879:2;36875:15;36868:38;36422:529;36595:54;;;36585:64;;;:6;:64;;;;36578:71;;;36242:716;;;;;;:::o;37420:2966::-;37493:20;37516:13;;37493:36;;37556:1;37544:8;:13;37540:44;;;37566:18;;;;;;;;;;;;;;37540:44;37597:61;37627:1;37631:2;37635:12;37649:8;37597:21;:61::i;:::-;38141:1;11141:2;38111:1;:26;;38110:32;38098:8;:45;38072:18;:22;38091:2;38072:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;38420:139;38457:2;38511:33;38534:1;38538:2;38542:1;38511:14;:33::i;:::-;38478:30;38499:8;38478:20;:30::i;:::-;:66;38420:18;:139::i;:::-;38386:17;:31;38404:12;38386:31;;;;;;;;;;;:173;;;;38576:16;38607:11;38636:8;38621:12;:23;38607:37;;39157:16;39153:2;39149:25;39137:37;;39529:12;39489:8;39448:1;39386:25;39327:1;39266;39239:335;39900:1;39886:12;39882:20;39840:346;39941:3;39932:7;39929:16;39840:346;;40159:7;40149:8;40146:1;40119:25;40116:1;40113;40108:59;39994:1;39985:7;39981:15;39970:26;;39840:346;;;39844:77;40231:1;40219:8;:13;40215:45;;;40241:19;;;;;;;;;;;;;;40215:45;40293:3;40277:13;:19;;;;37846:2462;;40318:60;40347:1;40351:2;40355:12;40369:8;40318:20;:60::i;:::-;37482:2904;37420:2966;;:::o;49089:147::-;49226:6;49089:147;;;;;:::o;24832:324::-;24902:14;25135:1;25125:8;25122:15;25096:24;25092:46;25082:56;;24832: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:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1179:5;1210:6;1204:13;1195:22;;1226:30;1250:5;1226:30;:::i;:::-;1125:137;;;;:::o;1268:::-;1313:5;1351:6;1338:20;1329:29;;1367:32;1393:5;1367:32;:::i;:::-;1268:137;;;;:::o;1411:141::-;1467:5;1498:6;1492:13;1483:22;;1514:32;1540:5;1514:32;:::i;:::-;1411:141;;;;:::o;1571:338::-;1626:5;1675:3;1668:4;1660:6;1656:17;1652:27;1642:122;;1683:79;;:::i;:::-;1642:122;1800:6;1787:20;1825:78;1899:3;1891:6;1884:4;1876:6;1872:17;1825:78;:::i;:::-;1816:87;;1632:277;1571:338;;;;:::o;1929:340::-;1985:5;2034:3;2027:4;2019:6;2015:17;2011:27;2001:122;;2042:79;;:::i;:::-;2001:122;2159:6;2146:20;2184:79;2259:3;2251:6;2244:4;2236:6;2232:17;2184:79;:::i;:::-;2175:88;;1991:278;1929:340;;;;:::o;2275:139::-;2321:5;2359:6;2346:20;2337:29;;2375:33;2402:5;2375:33;:::i;:::-;2275:139;;;;:::o;2420:329::-;2479:6;2528:2;2516:9;2507:7;2503:23;2499:32;2496:119;;;2534:79;;:::i;:::-;2496:119;2654:1;2679:53;2724:7;2715:6;2704:9;2700:22;2679:53;:::i;:::-;2669:63;;2625:117;2420:329;;;;:::o;2755:474::-;2823:6;2831;2880:2;2868:9;2859:7;2855:23;2851:32;2848:119;;;2886:79;;:::i;:::-;2848:119;3006:1;3031:53;3076:7;3067:6;3056:9;3052:22;3031:53;:::i;:::-;3021:63;;2977:117;3133:2;3159:53;3204:7;3195:6;3184:9;3180:22;3159:53;:::i;:::-;3149:63;;3104:118;2755:474;;;;;:::o;3235:619::-;3312:6;3320;3328;3377:2;3365:9;3356:7;3352:23;3348:32;3345:119;;;3383:79;;:::i;:::-;3345:119;3503:1;3528:53;3573:7;3564:6;3553:9;3549:22;3528:53;:::i;:::-;3518:63;;3474:117;3630:2;3656:53;3701:7;3692:6;3681:9;3677:22;3656:53;:::i;:::-;3646:63;;3601:118;3758:2;3784:53;3829:7;3820:6;3809:9;3805:22;3784:53;:::i;:::-;3774:63;;3729:118;3235:619;;;;;:::o;3860:943::-;3955:6;3963;3971;3979;4028:3;4016:9;4007:7;4003:23;3999:33;3996:120;;;4035:79;;:::i;:::-;3996:120;4155:1;4180:53;4225:7;4216:6;4205:9;4201:22;4180:53;:::i;:::-;4170:63;;4126:117;4282:2;4308:53;4353:7;4344:6;4333:9;4329:22;4308:53;:::i;:::-;4298:63;;4253:118;4410:2;4436:53;4481:7;4472:6;4461:9;4457:22;4436:53;:::i;:::-;4426:63;;4381:118;4566:2;4555:9;4551:18;4538:32;4597:18;4589:6;4586:30;4583:117;;;4619:79;;:::i;:::-;4583:117;4724:62;4778:7;4769:6;4758:9;4754:22;4724:62;:::i;:::-;4714:72;;4509:287;3860:943;;;;;;;:::o;4809:468::-;4874:6;4882;4931:2;4919:9;4910:7;4906:23;4902:32;4899:119;;;4937:79;;:::i;:::-;4899:119;5057:1;5082:53;5127:7;5118:6;5107:9;5103:22;5082:53;:::i;:::-;5072:63;;5028:117;5184:2;5210:50;5252:7;5243:6;5232:9;5228:22;5210:50;:::i;:::-;5200:60;;5155:115;4809:468;;;;;:::o;5283:474::-;5351:6;5359;5408:2;5396:9;5387:7;5383:23;5379:32;5376:119;;;5414:79;;:::i;:::-;5376:119;5534:1;5559:53;5604:7;5595:6;5584:9;5580:22;5559:53;:::i;:::-;5549:63;;5505:117;5661:2;5687:53;5732:7;5723:6;5712:9;5708:22;5687:53;:::i;:::-;5677:63;;5632:118;5283:474;;;;;:::o;5763:345::-;5830:6;5879:2;5867:9;5858:7;5854:23;5850:32;5847:119;;;5885:79;;:::i;:::-;5847:119;6005:1;6030:61;6083:7;6074:6;6063:9;6059:22;6030:61;:::i;:::-;6020:71;;5976:125;5763:345;;;;:::o;6114:327::-;6172:6;6221:2;6209:9;6200:7;6196:23;6192:32;6189:119;;;6227:79;;:::i;:::-;6189:119;6347:1;6372:52;6416:7;6407:6;6396:9;6392:22;6372:52;:::i;:::-;6362:62;;6318:116;6114:327;;;;:::o;6447:349::-;6516:6;6565:2;6553:9;6544:7;6540:23;6536:32;6533:119;;;6571:79;;:::i;:::-;6533:119;6691:1;6716:63;6771:7;6762:6;6751:9;6747:22;6716:63;:::i;:::-;6706:73;;6662:127;6447:349;;;;:::o;6802:509::-;6871:6;6920:2;6908:9;6899:7;6895:23;6891:32;6888:119;;;6926:79;;:::i;:::-;6888:119;7074:1;7063:9;7059:17;7046:31;7104:18;7096:6;7093:30;7090:117;;;7126:79;;:::i;:::-;7090:117;7231:63;7286:7;7277:6;7266:9;7262:22;7231:63;:::i;:::-;7221:73;;7017:287;6802:509;;;;:::o;7317:329::-;7376:6;7425:2;7413:9;7404:7;7400:23;7396:32;7393:119;;;7431:79;;:::i;:::-;7393:119;7551:1;7576:53;7621:7;7612:6;7601:9;7597:22;7576:53;:::i;:::-;7566:63;;7522:117;7317:329;;;;:::o;7652:474::-;7720:6;7728;7777:2;7765:9;7756:7;7752:23;7748:32;7745:119;;;7783:79;;:::i;:::-;7745:119;7903:1;7928:53;7973:7;7964:6;7953:9;7949:22;7928:53;:::i;:::-;7918:63;;7874:117;8030:2;8056:53;8101:7;8092:6;8081:9;8077:22;8056:53;:::i;:::-;8046:63;;8001:118;7652:474;;;;;:::o;8132:118::-;8219:24;8237:5;8219:24;:::i;:::-;8214:3;8207:37;8132:118;;:::o;8256:157::-;8361:45;8381:24;8399:5;8381:24;:::i;:::-;8361:45;:::i;:::-;8356:3;8349:58;8256:157;;:::o;8419:109::-;8500:21;8515:5;8500:21;:::i;:::-;8495:3;8488:34;8419:109;;:::o;8534:360::-;8620:3;8648:38;8680:5;8648:38;:::i;:::-;8702:70;8765:6;8760:3;8702:70;:::i;:::-;8695:77;;8781:52;8826:6;8821:3;8814:4;8807:5;8803:16;8781:52;:::i;:::-;8858:29;8880:6;8858:29;:::i;:::-;8853:3;8849:39;8842:46;;8624:270;8534:360;;;;:::o;8900:195::-;9019:69;9082:5;9019:69;:::i;:::-;9014:3;9007:82;8900:195;;:::o;9101:364::-;9189:3;9217:39;9250:5;9217:39;:::i;:::-;9272:71;9336:6;9331:3;9272:71;:::i;:::-;9265:78;;9352:52;9397:6;9392:3;9385:4;9378:5;9374:16;9352:52;:::i;:::-;9429:29;9451:6;9429:29;:::i;:::-;9424:3;9420:39;9413:46;;9193:272;9101:364;;;;:::o;9471:377::-;9577:3;9605:39;9638:5;9605:39;:::i;:::-;9660:89;9742:6;9737:3;9660:89;:::i;:::-;9653:96;;9758:52;9803:6;9798:3;9791:4;9784:5;9780:16;9758:52;:::i;:::-;9835:6;9830:3;9826:16;9819:23;;9581:267;9471:377;;;;:::o;9854:118::-;9941:24;9959:5;9941:24;:::i;:::-;9936:3;9929:37;9854:118;;:::o;9978:157::-;10083:45;10103:24;10121:5;10103:24;:::i;:::-;10083:45;:::i;:::-;10078:3;10071:58;9978:157;;:::o;10141:435::-;10321:3;10343:95;10434:3;10425:6;10343:95;:::i;:::-;10336:102;;10455:95;10546:3;10537:6;10455:95;:::i;:::-;10448:102;;10567:3;10560:10;;10141:435;;;;;:::o;10582:397::-;10722:3;10737:75;10808:3;10799:6;10737:75;:::i;:::-;10837:2;10832:3;10828:12;10821:19;;10850:75;10921:3;10912:6;10850:75;:::i;:::-;10950:2;10945:3;10941:12;10934:19;;10970:3;10963:10;;10582:397;;;;;:::o;10985:222::-;11078:4;11116:2;11105:9;11101:18;11093:26;;11129:71;11197:1;11186:9;11182:17;11173:6;11129:71;:::i;:::-;10985:222;;;;:::o;11213:332::-;11334:4;11372:2;11361:9;11357:18;11349:26;;11385:71;11453:1;11442:9;11438:17;11429:6;11385:71;:::i;:::-;11466:72;11534:2;11523:9;11519:18;11510:6;11466:72;:::i;:::-;11213:332;;;;;:::o;11551:640::-;11746:4;11784:3;11773:9;11769:19;11761:27;;11798:71;11866:1;11855:9;11851:17;11842:6;11798:71;:::i;:::-;11879:72;11947:2;11936:9;11932:18;11923:6;11879:72;:::i;:::-;11961;12029:2;12018:9;12014:18;12005:6;11961:72;:::i;:::-;12080:9;12074:4;12070:20;12065:2;12054:9;12050:18;12043:48;12108:76;12179:4;12170:6;12108:76;:::i;:::-;12100:84;;11551:640;;;;;;;:::o;12197:210::-;12284:4;12322:2;12311:9;12307:18;12299:26;;12335:65;12397:1;12386:9;12382:17;12373:6;12335:65;:::i;:::-;12197:210;;;;:::o;12413:286::-;12538:4;12576:2;12565:9;12561:18;12553:26;;12589:103;12689:1;12678:9;12674:17;12665:6;12589:103;:::i;:::-;12413:286;;;;:::o;12705:313::-;12818:4;12856:2;12845:9;12841:18;12833:26;;12905:9;12899:4;12895:20;12891:1;12880:9;12876:17;12869:47;12933:78;13006:4;12997:6;12933:78;:::i;:::-;12925:86;;12705:313;;;;:::o;13024:222::-;13117:4;13155:2;13144:9;13140:18;13132:26;;13168:71;13236:1;13225:9;13221:17;13212:6;13168:71;:::i;:::-;13024:222;;;;:::o;13252:129::-;13286:6;13313:20;;:::i;:::-;13303:30;;13342:33;13370:4;13362:6;13342:33;:::i;:::-;13252:129;;;:::o;13387:75::-;13420:6;13453:2;13447:9;13437:19;;13387:75;:::o;13468:307::-;13529:4;13619:18;13611:6;13608:30;13605:56;;;13641:18;;:::i;:::-;13605:56;13679:29;13701:6;13679:29;:::i;:::-;13671:37;;13763:4;13757;13753:15;13745:23;;13468:307;;;:::o;13781:308::-;13843:4;13933:18;13925:6;13922:30;13919:56;;;13955:18;;:::i;:::-;13919:56;13993:29;14015:6;13993:29;:::i;:::-;13985:37;;14077:4;14071;14067:15;14059:23;;13781:308;;;:::o;14095:98::-;14146:6;14180:5;14174:12;14164:22;;14095:98;;;:::o;14199:99::-;14251:6;14285:5;14279:12;14269:22;;14199:99;;;:::o;14304:168::-;14387:11;14421:6;14416:3;14409:19;14461:4;14456:3;14452:14;14437:29;;14304:168;;;;:::o;14478:169::-;14562:11;14596:6;14591:3;14584:19;14636:4;14631:3;14627:14;14612:29;;14478:169;;;;:::o;14653:148::-;14755:11;14792:3;14777:18;;14653:148;;;;:::o;14807:305::-;14847:3;14866:20;14884:1;14866:20;:::i;:::-;14861:25;;14900:20;14918:1;14900:20;:::i;:::-;14895:25;;15054:1;14986:66;14982:74;14979:1;14976:81;14973:107;;;15060:18;;:::i;:::-;14973:107;15104:1;15101;15097:9;15090:16;;14807:305;;;;:::o;15118:185::-;15158:1;15175:20;15193:1;15175:20;:::i;:::-;15170:25;;15209:20;15227:1;15209:20;:::i;:::-;15204:25;;15248:1;15238:35;;15253:18;;:::i;:::-;15238:35;15295:1;15292;15288:9;15283:14;;15118:185;;;;:::o;15309:348::-;15349:7;15372:20;15390:1;15372:20;:::i;:::-;15367:25;;15406:20;15424:1;15406:20;:::i;:::-;15401:25;;15594:1;15526:66;15522:74;15519:1;15516:81;15511:1;15504:9;15497:17;15493:105;15490:131;;;15601:18;;:::i;:::-;15490:131;15649:1;15646;15642:9;15631:20;;15309:348;;;;:::o;15663:96::-;15700:7;15729:24;15747:5;15729:24;:::i;:::-;15718:35;;15663:96;;;:::o;15765:90::-;15799:7;15842:5;15835:13;15828:21;15817:32;;15765:90;;;:::o;15861:149::-;15897:7;15937:66;15930:5;15926:78;15915:89;;15861:149;;;:::o;16016:126::-;16053:7;16093:42;16086:5;16082:54;16071:65;;16016:126;;;:::o;16148:77::-;16185:7;16214:5;16203:16;;16148:77;;;:::o;16231:158::-;16313:9;16346:37;16377:5;16346:37;:::i;:::-;16333:50;;16231:158;;;:::o;16395:126::-;16445:9;16478:37;16509:5;16478:37;:::i;:::-;16465:50;;16395:126;;;:::o;16527:113::-;16577:9;16610:24;16628:5;16610:24;:::i;:::-;16597:37;;16527:113;;;:::o;16646:154::-;16730:6;16725:3;16720;16707:30;16792:1;16783:6;16778:3;16774:16;16767:27;16646:154;;;:::o;16806:307::-;16874:1;16884:113;16898:6;16895:1;16892:13;16884:113;;;16983:1;16978:3;16974:11;16968:18;16964:1;16959:3;16955:11;16948:39;16920:2;16917:1;16913:10;16908:15;;16884:113;;;17015:6;17012:1;17009:13;17006:101;;;17095:1;17086:6;17081:3;17077:16;17070:27;17006:101;16855:258;16806:307;;;:::o;17119:320::-;17163:6;17200:1;17194:4;17190:12;17180:22;;17247:1;17241:4;17237:12;17268:18;17258:81;;17324:4;17316:6;17312:17;17302:27;;17258:81;17386:2;17378:6;17375:14;17355:18;17352:38;17349:84;;;17405:18;;:::i;:::-;17349:84;17170:269;17119:320;;;:::o;17445:281::-;17528:27;17550:4;17528:27;:::i;:::-;17520:6;17516:40;17658:6;17646:10;17643:22;17622:18;17610:10;17607:34;17604:62;17601:88;;;17669:18;;:::i;:::-;17601:88;17709:10;17705:2;17698:22;17488:238;17445:281;;:::o;17732:100::-;17771:7;17800:26;17820:5;17800:26;:::i;:::-;17789:37;;17732:100;;;:::o;17838:94::-;17877:7;17906:20;17920:5;17906:20;:::i;:::-;17895:31;;17838:94;;;:::o;17938:79::-;17977:7;18006:5;17995:16;;17938:79;;;:::o;18023:176::-;18055:1;18072:20;18090:1;18072:20;:::i;:::-;18067:25;;18106:20;18124:1;18106:20;:::i;:::-;18101:25;;18145:1;18135:35;;18150:18;;:::i;:::-;18135:35;18191:1;18188;18184:9;18179:14;;18023:176;;;;:::o;18205:180::-;18253:77;18250:1;18243:88;18350:4;18347:1;18340:15;18374:4;18371:1;18364:15;18391:180;18439:77;18436:1;18429:88;18536:4;18533:1;18526:15;18560:4;18557:1;18550:15;18577:180;18625:77;18622:1;18615:88;18722:4;18719:1;18712:15;18746:4;18743:1;18736:15;18763:180;18811:77;18808:1;18801:88;18908:4;18905:1;18898:15;18932:4;18929:1;18922:15;18949:117;19058:1;19055;19048:12;19072:117;19181:1;19178;19171:12;19195:117;19304:1;19301;19294:12;19318:117;19427:1;19424;19417:12;19441:102;19482:6;19533:2;19529:7;19524:2;19517:5;19513:14;19509:28;19499:38;;19441:102;;;:::o;19549:94::-;19582:8;19630:5;19626:2;19622:14;19601:35;;19549:94;;;:::o;19649:122::-;19722:24;19740:5;19722:24;:::i;:::-;19715:5;19712:35;19702:63;;19761:1;19758;19751:12;19702:63;19649:122;:::o;19777:116::-;19847:21;19862:5;19847:21;:::i;:::-;19840:5;19837:32;19827:60;;19883:1;19880;19873:12;19827:60;19777:116;:::o;19899:120::-;19971:23;19988:5;19971:23;:::i;:::-;19964:5;19961:34;19951:62;;20009:1;20006;19999:12;19951:62;19899:120;:::o;20025:122::-;20098:24;20116:5;20098:24;:::i;:::-;20091:5;20088:35;20078:63;;20137:1;20134;20127:12;20078:63;20025:122;:::o
Swarm Source
ipfs://b02e5a49c95c84bf26b942ee892341fa748e6aedf434c0c031aaf40a376d14e3
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.