ERC-721
Overview
Max Total Supply
341 SODNFT
Holders
179
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 SODNFTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SeaOfDeath
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-30 */ // SPDX-License-Identifier: MIT // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: erc721a/contracts/extensions/IERC721AQueryable.sol // ERC721A Contracts v4.2.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721AQueryable. */ interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); } // File: erc721a/contracts/extensions/ERC721AQueryable.sol // ERC721A Contracts v4.2.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721AQueryable. * * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) { return ownership; } ownership = _ownershipAt(tokenId); if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] calldata tokenIds) external view virtual override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view virtual override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _nextTokenId(); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, stopLimit)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. It the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. // We also know that `k`, the position of the most significant bit, is such that `msb(a) = 2**k`. // This gives `2**k < a <= 2**(k+1)` → `2**(k/2) <= sqrt(a) < 2 ** (k/2+1)`. // Using an algorithm similar to the msb conmputation, we are able to compute `result = 2**(k/2)` which is a // good first aproximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1; uint256 x = a; if (x >> 128 > 0) { x >>= 128; result <<= 64; } if (x >> 64 > 0) { x >>= 64; result <<= 32; } if (x >> 32 > 0) { x >>= 32; result <<= 16; } if (x >> 16 > 0) { x >>= 16; result <<= 8; } if (x >> 8 > 0) { x >>= 8; result <<= 4; } if (x >> 4 > 0) { x >>= 4; result <<= 2; } if (x >> 2 > 0) { result <<= 1; } // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { uint256 result = sqrt(a); if (rounding == Rounding.Up && result * result < a) { result += 1; } return result; } } // File: @openzeppelin/contracts/utils/Arrays.sol // OpenZeppelin Contracts v4.4.1 (utils/Arrays.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to array types. */ library Arrays { /** * @dev Searches a sorted `array` and returns the first index that contains * a value greater or equal to `element`. If no such index exists (i.e. all * values in the array are strictly less than `element`), the array length is * returned. Time complexity O(log n). * * `array` is expected to be sorted in ascending order, and to contain no * repeated elements. */ function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) { if (array.length == 0) { return 0; } uint256 low = 0; uint256 high = array.length; while (low < high) { uint256 mid = Math.average(low, high); // Note that mid will always be strictly less than high (i.e. it will be a valid array index) // because Math.average rounds down (it does integer division with truncation). if (array[mid] > element) { high = mid; } else { low = mid + 1; } } // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound. if (low > 0 && array[low - 1] == element) { return low - 1; } else { return low; } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: contracts/SeaOfDeath.sol pragma solidity >=0.8.13 <0.9.0; contract SeaOfDeath is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; // ================== Variables Start ======================= string public uri; string public uriSuffix = ".json"; string public hiddenMetadataUri; uint256 public cost1 = 0 ether; uint256 public cost2 = 0.005 ether; uint256 public supplyLimitPhase1 = 333; uint256 public supplyLimit = 999; uint256 public maxMintAmountPerTxPhase1 = 2; uint256 public maxMintAmountPerTxPhase2 = 3; uint256 public maxLimitPerWallet = 50; bool public sale = false; bool public revealed = false; bool public premintWhitelistMintStart = false; address[] listOfWinners = [ 0x081B7ca8b7c3c40ea4714391C99eB681568D3220, 0xd42DdA82a5f97665dEC9b916D135919Dc24EA54C, 0x786a3DEA728eE85553374f0D3395d0689065CDCd, 0xa163B3613A1F0c992Ad48C3E78a3Bff8356C2E70, 0x0f2FB4e32e814AE6918818a566CB138210709B96, 0x96Cb84ac416602cec04B6778fa3F8e588e84cc95, 0xE01Be86C5772766470826d60aFCb6E532933bcB0, 0xd2E5CcCDBA0b0DaA407bA5C68F32bbFeF810205F, 0x4e258cC6180E73A69Bb0Ce18621c8901AEd3B792, 0x05012f437dEe5276AC13eE90A10438468c07d6DF, 0xe54DEBc68b0676d8F800Aff820Dfe63E5C854091, 0x79588679927772104022a68b69A13bd107277c19, 0x926FB37146ADf8a5aAC139E142E3029F087d68e4, 0xE8d8B73CCC85dEd891ad41893Ebbb0d684350E04, 0x8D66A426743ffB9b9526fa2EDEC969194a0098b4, 0x6c4221Dcba114631469C74E203E81Cf737BFFC4a, 0xE436BeA44E9734220509E3d1fd501443eBFb2A7C, 0xaD256CF689fF3320C2718a7D253F4bAa0b255d96, 0x6839Fe55fb21f95bec22491921bDaB488a88f433, 0x9b2726AdCF67B20f98e6D34e80370CA25125A845, 0x15af04b6941Bd2e0746aCA5aD3062b61b2317CDe, 0x3499556fF9703fce8bA3F5aCF19EBd5Eb696AD08, 0xFed051fD5c6fc736fdE242E0E185b5E6F19E27BD, 0xB33fb83c645ac2a12b138636Fe59604312092484, 0x97DC3898a13ffFAA13aCFA198021ac7BE3F26644, 0xBC511e020Da7f0DC4866FeaD317F567EfE58f31E, 0x13bC3BDfe82f8d537981e937cee75d55B5211A9f, 0x74d5fC66CF60Ab20c201489D0fE460cB249fE4B0, 0xdE418a36044ea674cc8B29F0C4CF7134858BDb55, 0x070ff394Dd0eC7AB325697fD12bEe1C7ad8af831, 0xAdd03DCeC81e69D562B501446f463B5654716eF1, 0xa6de7f094d426485f1A3c8c7213f3cd856A0277c, 0x5Ee5CB77B6f175952F7307d3d37129E8aB2A23B6, 0xd8f67baEDd64c64De33491c8558c789c3cCFE13E, 0xdA599dEDef2D8C00c01Cd047BBbEDc7399ad5908, 0x79A40758a2b7158DbcAFfAD2c19E8dF0dC85b1CF, 0xBBf343E932de68eFaaf6661D050C9644Ff1EB989, 0x7b2e34038d9706ce488222748f21BC49409c5aC7, 0xFDf1BCF892BAf2DDAA4fcF1a9657460f350823B4, 0x3CB57E3cF8248079AcAe4c5fa813a3470A11f033, 0xCB5c8E5d6fC11a3908A6f8e74D2fd32f55cA0a60, 0x092AC7F06be7e2a4Dd1Bc49D0F6F44a08CAC12f1, 0xc2C8595Dcd17cf0a867013A99DcEB7AC69f659a2, 0x9570c949658Ead91601D34DD2023a82dcbe51434, 0x0e8A9777820Ad4E62fa2688a4842e5bED2e9F00d, 0x3f0fd50BCFf02652249a386e208A46aB9d1Fb3e2, 0xdBCa4af2C6453D591C4AB183B07D3Fa7d1894734, 0x85198ff297782130CC4691B226B284e0D8d5c996, 0x8F387E020c8c972555c8c91464a9AeB6E2ad61FF, 0x54479691301bff7e537982E7566FD14465a0c1F2, 0x3beD7992aC45d31BBCD37d2fD793e2229dDD16aa, 0x9C9f298a86bB0FDd18B3e1f4F86a5f088f514388, 0x8Fe6220b640Dc34280e9df66e290640C1D41216B, 0x4945C459877532Aa28d3aBC3C41983Ac15202ffB, 0x876D3E4Deb5913ad187745cA0328BD7AA57Ba51D, 0xCbBa613Aa7EF42aF5ACA28616a8F89b7FB2dbb07, 0xfeC73CE9F20aEE37cC462A9b99374d912701cf88, 0xa72781a88D5cB4cAa1bA7cDF7Bd3bCE78212D6fF, 0x55a99Ed2773cdF0470C6016d2B3F3aDDAF9Fe551, 0xb50824951D9617B63299749B466322132b913eCE, 0xB34b5462f06D0B2b40dEf2B3344F3355D80CeFBf, 0xA6BFa697507Fc675380cD2a044767b194Cd8189B, 0x0b03A7F0182720639cC4F6fD25bf8E51e543f0B7, 0xF672A5EC6437c2160cE82B7E308BFb3B4a559946, 0x87a5Ee283e602718957fDC1A4A60F1cD290500Ea, 0x9ea3FFcC40E725Da125161161B9573bFEb70c715, 0xAE25BefaDF944a40ceaa987b23b001cCe60EAc61, 0x5986F558b3Ba300d015Fce96655d2325A307A639, 0x370f36866FE8fA2BA0c3b7c431Ed4a0Df62B83d3, 0x89f23BddcB1f6B4D86639fd2B5210132c29E6692, 0x09D611629B0F03A2d8f73C15BF25EF7D288C74e3, 0xbB524F1c9DDE9D1249e21E4a3afFE8134414ECC7, 0xBCAEDC579A3a9624e5E5029efD099470FEE5C54f, 0x1eE300b0600821E0Fd808A872494339C80247d12, 0xDea98753460120DFF3D6d2629C150cf2e7aF82B8, 0x6329d4a63E9C698EB295351de3f9E0A9C6791775, 0x04c940134551598dc8831991dAC824079A2De5e7, 0x86a2F6EAc13b420fc5E8227e02d9dB076d03cD58, 0xad5e2495732e05b36Bb51c8A44F72C2Fc7eA6733, 0xbeFde548e5387BeDDCEE1EF35CA63c801339a2e4, 0x3C36f8DBec7B5e74C1de617133c718C071C22a1e, 0x194d8C8da18A56b4E63fD14D78D7b38b090900CC, 0x60d3FD0f6725C06Bf957915a55CCFa8fDDc8353b, 0x41Ba91DfB59941Ea0Cd1B8B69A2784f9132A32AE, 0x0130C4c5873DF818F2bC21B7fD6e03d4C72dDE8D, 0xddcfAb22098E569890FFCb9C9365B94836AE76d4, 0xdC13aa59A30DF7903Cb357D9C18B6133F3E0f8e8, 0x69744aBdd85dA19fb9aBDaE6225BB5422e4DFca6, 0xf0b32dF3d07b78bA1F1Bb79D81896fBdD7E56567, 0xd5Ea6dA94a71b52247287dbD985ee3aFfeE40AE5, 0x1bB2821d4c58ED5Aa2e1694cfB704d6c7a9A5711, 0x42E0ed786840C219Be223769113AcECD96c2d6eF, 0x64F2c0d99e10073057b5A0366dBA107FA6ae8C08, 0xa57961970eA7beDC36EE143d1885560745A33369, 0xb2A968029778E7c68c30A4A16F97F5805dD7D28F, 0x24CAd7ED3cf32E26a9577A87CEb5130f20BF6582, 0x621d35D4232FCDf25eB410c4E797e5466001b214, 0x83bf1f446F2D92f971B927d71820A6625702CCEC, 0x31eea5bd4a81fD29fAADd45aD9f5E0AB57bF354b, 0x503B4327D0cd6f0bd0E411D8Bc80Ad2bD7e69573, 0xF50f5b30cCD3e62A6D9f6b572D4CF0987404Df43, 0x170a74Bf5f403503b6e5a63e991Fa0797268F74D, 0x5a3DdA91F2c5B41487ad5FD323A83A7157C4F195, 0xA5Ab1d69B3519C02aC5bBB4F5958892568695Ea2, 0xB2e9991E55468278998e4A710A69A004994A019c, 0x93eee2C44B4bd1AA1a8D29cB3Ad9702c919EF092, 0x473e979C93CA7E0581A8873dd94f2dCd7fdfCC97, 0x77098B72b69E84996C093Adb8b770f3743a4Af10, 0xbeB31411F94701D4D090E0B79c7CcE1EEf8c189D, 0x24b6E47c006ad7b58f4cd89d6795B979577d6D19, 0x9E0Cd36105c6796b2d8485fC0F46D8266D093346, 0x398DDBb1c7f7602B4075c3B29139A6Efcbd0eE82, 0x01003A0a8418ef6fC76b0C0Fc4F6639536dB6A25, 0x37E4ED75363607584c3e0A45DaA5bdB2423679d5, 0x743e3D7D88afe26eeD0C5ac7EBFCAfDec6A5f09e, 0x94a435e8eF2136f694c829f2f354c8Ef8a2635CE, 0xe25b0E4E024F87D7e55Be961b5eb6a8C1619Bfc8, 0xBf98386D2f2B2dEc8E0399a164Fe3a6cFF14A2c6, 0xB73B3b20bDbe9c8a9eB46488303828E2095F9696, 0xf53D2a27FF7DA3f60F6a41Cdcb7acB0eBCc8c094, 0x585bD8fa4BF549d51Ee91Bd21e5cB9713A50bAFD, 0x78f162AD81261a1F8b551478611A2f27CD8F972b, 0xa09B151af7d9aF6753044a0B0feA57a7e6C9A108, 0x9B761352490C13cDA86c6aFe7fAE1974F60DF6D7, 0xc64202e2B512c72c3e145776A7B556457075Fe9F, 0x038Dc61d976Ca0875B8Be0E0260e456780260D45, 0x9EF8286006D73A5d687eE10675BD84853a406f4c, 0x50475AA02F78E4f9500b29b52eaE8D112d6157B8, 0xF023A7D4a47CE0858F2883797B8158A02d8f263d, 0x567a0621560624D00a5FC22fEf4c5706389Ab6A3, 0x7f78Ab8bfe25eDCF957ee0fFc620D397e34fD90E, 0x63CD59D81013a1D04E53CDa13065e3124AFB740f, 0xa51Ed51CC874696d3b0A6Ec8BE9EAc25e65F6aE4, 0x3492606E68208B40C96f2F5771EcCF6e49239241, 0xf583c3292f895384E428e70C404Dcc061f8e4924, 0xC841D6DdF66467Af551b35218c0c2e22f9C14b48, 0xB2edFdABCa043DdBD794a0dA76aA4E05c104c6C9, 0x828d70C702ba4D217f333d7f2Cb6A7C768285EA1, 0x731fD2Bf0B4add511A6559ac2dB7FfC18A9AD13A, 0x6E9788Fb2C864c1D91a88630aEdC380CF1C3f2bA, 0xD3867aB38CD62698103dF0c599103E6704FBFC36, 0x47E91F47701aB4279f4259B3d9d0d7D298a07799, 0x410A4823FFE7778D68c1ef11111183eCeA5e9D1e, 0x270e146C6c3c1c8bbBbBbCf2ee38dc915f0F5F35, 0xbFa5228a55D97489a70E5C58639f3cfa327A1901, 0x96BB20Cb30348dD792f0Ac896C23F5B191b5413c, 0xE19b23DbaF2dC2a3b930F1e30BD94B0f96fb08B5, 0x31E07Cab07614A3433A1B974f29F82a29D6E7b5f, 0xc4D0599F107733Bd5c3826aD51363Fe5e1aFca63, 0x74Aa252a1C97777776702D8a6c30de4Ec0E3c772, 0x5555551Fb60055187f8d08E3521d8A6EB534b0b4, 0x1C6E89600fF6e38DB6Be514F57f6ccCCcCF5AECb, 0x58232E884183547Afde1E3444444732a26fc5A24, 0xD784ba50E4AdfF8131D9701b484f45F3Ac99F44f, 0x846A38EeEeEeBD6F3Ca56eEAd39eE2f5b014f735, 0x4693580EcF019478dd6Da3852484DC4dA999999D, 0x6f8401DB41a046b6092C09D88B53C59b679e0Fa1, 0x1854889597E3852915e3df039E5b2977777756fD, 0x84a56448d3796b0553f863b7Bf41C2FE4a5b7338, 0x110a335E20C3b709Bbc79d7DDDdDDCb1f3291412, 0xF15332DDBaAE1f19AEEEc29dbb9Ecd4635Cc355a, 0x58e71a9395712154f2335AC42e38C0bCf4F0e5dB, 0x9B9fF8E92F29B357fD3A547c613877896C86643A, 0x689E58174bC8c0296D478EB845b7Bb7b5591287b, 0xC59f16bADb449774D1E2A22222264e0a1dc05414, 0x3a0B264b2EfAA7dFb8c067Ab3548443f77405D13, 0x2B22222214E5E899EE0aAfD72F10758a98C4b76c, 0xF06a157428BbF83258f1A23e0C60d5e5E6289914, 0x088e43b0201A1ebFE6EFDf451BDd9ed94cCCe68A, 0x853235C3532853E6C0078AC189Ee13A16c7E8D78, 0x62a57e00753cEc36C5743A962e38234870a67344, 0x3eE199e15613e82A0BcC355C2db7EeC2461932DB, 0xf85D5334E80Cf8F2e20a54e35d2d67cE90Cf7E4D, 0xc2d9d549419c67bed7448d7881E4d8A86Ce25Ab9, 0x393D26457C05AAb402465B0C6bC78fde5fFFFfFa, 0x861f465b79A3991CB59F75D409E2f35fea027cbB, 0x7FdF2C4D0277918719fd13b7E537c4a698d2937b, 0x26B7728BEBA00dd63CCD7dbe1FFf0cc8e3357f7B, 0x3366d64bbe6337be3000000a006D75d3e6386C1D, 0x56Ba7233CCE2AaF5A07f3bf240dC8c33f3Cae370, 0xeF6b46ca995283bCC833d0374C3bE21d3B8Cfc69, 0x4cE48A85180213eEF480AE4c517Cb388e399e180, 0x50cDCcA81dE6Aa60A3525b2b5cD55c6317FCF8FD, 0x10C9cE013258ad8827f69A018d825d3B3ddAe89A, 0xc8e022a0f3781fFd3571C5458ce2EEe7a5973409, 0xB052608E4ed4d40C5fcF6BC1E8aE3249376eb6aE, 0x2718e4e21A33D0A0afE740AC731350F5FE914039, 0x5F4bC750432d6EEf261da9C9441c92008fdCcDDF, 0x0Cd7c4fC8930AafC0BC2Ed5Bde525e2ec49f8301, 0x53201FF143AA386449eD2951C91AF2B303512365, 0x98fa3b538fd691Ed727A9493A47F3C74500E1A37, 0x1A6aFb8b5853eEBC9B71c3aE321d1783eB05B187, 0x4F6D14105d9E2cb008e40CA8e790e1920C1684E1, 0xf0c94716e26A46871B109BaB780134CEd87672fb, 0xDf35Bc82294576fD8E21DE2522EFAcC87E05dEd2, 0x36C481F3f9d9a54B180cB65046Cf0552A6ef2Fdd, 0xDa6fd6e857B669F8Df0D75Ea8Cfe7ee5791cbbaF, 0x6adfb36596F3C0eF59B358D89466180d3f9a56c6, 0x5819038F8076982a8F8BbeA4e4Fa260D43041D55, 0x0CdcaB04859f111f60b3FcD0cAB3abf07fBaeE5A, 0x9DE6ffDbF9af29b77983b8341458F0d54C5e8Dbc, 0x9ca66e21C54E4646892Da5f3A106812d5956eE0c, 0xf726211b9198E1f0C9d3261b362A9FA6256Fc0b9, 0x2bde0f20028fFAd066c5fd596D8e4382b480741D, 0xB9b92EFB979b12EE47b18f81BC9C8F4B851D99c3, 0xFC33f01b2aBdc9C4f594c51f508233e993C35c44, 0x45A4ad3D6C9cBBe6AdCA0D44c440c95F8F519312, 0xbb7B5569B0aCEC9907177A9E374Ee1600f7920e2, 0x75D53B57B0DBe901EA49a409Ecbe73362378aA27, 0x99d7f76834E514e1F24957a2c88e911100088859, 0x50D08C48ECCdF9D2fFca8469a3cE4a53488dF2Ca, 0x1BaF16c71Acdc044bD7B6E5805D93A8b2bE90E78, 0x19e4BE273cd231A1a9FB8a3D263A463dfeCCc154, 0x3A1394284c30b5c7e2883E261430bCDE789ffE8a, 0x879fFDc9CAaB6E381d5CDFF8A0F51C10d021141E, 0x9cF6c837011d7049fEe6beda1Ca9B4E1e73d2418, 0x68A80F974C1cd147119Aa685B241b75e93De464b, 0x60B6598823659f6Cd452aeAFA937cD0Fcc38C74c, 0xF1F785207c7E9A390E0d06982d187c33a8E491f4, 0x82d4Cb8f910c0959f4e92383d8C1866ecD49E82E, 0xBaE973407Ac9D4D69dcCb1A911167Eae81fb9dA7, 0x2E5e729ce539D844c0C5ED1422597ce474f59f86, 0xc2fC12b8D8D1Cd5DCbEa66F7e7117d66747514BF, 0x55DB8A1CF90a0D794ff6c4a2aDd9D4b57cFeDEb8, 0xF78A666f8392A7D58c9a3a4EAff72E6E8F44665D, 0xb70EA32146f02716901C06Dba08059a468556BC7, 0x34a87d71E1c15F6039B8Cf25eEe1B062A8D35a3b, 0x9E54852E223C9B62c214c78703885ff90f409056, 0xD8C6b15D231cCA6Da6c515Da8193401979c10ECD, 0x28E64c750B6377F6c62e107780A77202d646C651, 0x297883e3c8f66B7C066442e106371390373ed7b2, 0xB13995C33a9b7419F3cE5D55A9464d41594A3d52, 0xebfC761E3e59C0a8787952b31E6E3c6e76f6D5E3, 0x5ad356e2E5eD9b6Ea469c994d55C3d28D2AD19C0, 0xB56152393f3b4F89fE79ae9CF4D6349FcA448965, 0xfD4902931b74511fEEf8c1Da99F0B5f091a1bFd1, 0x04FdE1cE000129649601bBbd7cBc69912F36ceDb, 0x5d0553bCbc5079FCf044115f37Ef19221772e64E, 0x37e4BB1C173e916b20a74BC312F9A52f88929c5E, 0x3553F5332A5e6207853cbe337A371C350D51f08B, 0x6E8511187Aeb191202741Ff0D2A58A3c174a152d, 0x3587c832E55c8ee5e69f5cff571291d8FfD4e6C6, 0x94ccAF31cE417a5680DeD3C66B542a73AD72E2e5, 0xF9058647918C25076281Ff811529612b13866C69, 0xcb031C306800283FD29aB7912c5E8F11BB9683B8, 0xe004fdb6243Aad09606f15A6B5DF45B84ba11a62, 0xf9A26bF20B7EC5ca5602a859a116413bA4ab8CEc, 0x9b329bdDD11dBa3f7b55444F75D62Fd75E5aEB46, 0x0601DF2b94298DE8a8C01bE806A33154b0584353, 0x9847020a14F6D8Db8c6cdC38311855C7Dc5d0229, 0xE2a9799aF8E06697dAb29e6179f5699A395c2050, 0x07E9cB365e6450500a24Da2E2BAB57C829B9310e, 0x157d605D32109983D2d4D901CBDDD885Fd450229, 0xf97866c22Cfad8E0A3F03cc63a43E459AF520380, 0x0D4E5CB9ff6833E6210154895d19FbD99d832b6a, 0x0055DFA1b22F51B6a87C172d6358765D75a9D22D, 0x657fD473B4e4512ff7C7f4ed495e03E519cF33f7, 0x1cDDcD54D41d45dA496b2c74D3E606BB876EA54E, 0x4031aD85104Def177E04fe1345107B5744D41e6A, 0x240032712B08dC0a4d9D36a058Be58006bac9626, 0xaDBf429175A2D0DCcfbb8aEc631Ae667514BBCf4, 0xA87BfA4A0e762117C71E578C8421486b56B99cf1, 0x99684de2b233144E712D93C26fc7ED87A97B640e, 0x3e07f239EE3E62E1D0109f84CC15071367945C09, 0x57b170063d7C20BEE94Aec0dbcF38Cd84b59d33F, 0x95eccc6d3a93302C95372CAA86487D7015EC4465, 0x082341E8d89E81B733F4B2E69639Ea3837A51629, 0xc3E78B0Ce31Ffb1De38889C1685E6C42cE444419, 0x05265c4695e895177365d9AdCc291eD8ee6cfFbE, 0x153724C8b26D408c7e1E676F9A54DE5Bda577ee2, 0xE44d051440884d16f1Bf54F91897d4b826320AEe, 0x1D65fe919F3e203bA115Af56FFf48f62BCB93A9E, 0x483daBf9066EEC3b7F6AddbE4Db2d04b833A81cF, 0x116A5Ed06D4F895cC51e3d3F2E84Dc0eA2855b13, 0xF7842637593EBFF439605E48f913B92D96Be8f46, 0xcCC7FA6C26c6cc7712bA86ebCd44F491AE608b29, 0x40E7c58744946Ba22baf44634494dbb821680d08, 0x249686E9A37A89E3b857c5E950d1426ee6B5a771, 0x9B784e56EA6b10AF338Fba2d830229f29DcEEc0E, 0xb3F04a2254Ee059b7B98C99147cA44894d65D567, 0x6Da94DDb9BF8D174E13c29Ea815493f1BA99c437, 0xDC8926DAA265E0D37714d4676b2d8bA317aDAc91, 0xA0486CE8b1B1cC4e0eB7db0e423eA725bbAd5940, 0x8fFBFb1A9796F42900a15E82CA239b395b167D3E, 0x25f8f0Db800E6F86444a82Cf2EC10Bbd1e2aa098, 0x470cAc5D6f56ca1d0489B73D9031A61b734a5ff4, 0xa0031483A121ce09b89Cc35395955D89E3B76890, 0x368269f39270991F7260F1791A18b1391ffBd426, 0x51223a9b646ed8946EBB89Cc1398cAb13F735F31, 0xad88F0E7a05fc382a10E2eE29926f67a3f22AaA8, 0xa28C8d0D585d639d0aaD97A3c68deB7491ac3371, 0x79827EDF6E1Fe43aE880031fEB6E07fF67D9259e, 0xF53c7D08B936CB11CA560a08e455878F757D09EB, 0xF532E41e460aB418001D96AEF87987315fFb8057, 0xa475f011670230D85326b4A70Ac4D0c9e254BB62, 0x83e64BB9FEc2C66c587499ED9799360f12878e4a, 0xb50E7037bC19003E143AE5D153Df7De2f6B17FCf, 0x634f9401D5BdbCD60e58E9Db36A555B6d0A96D15, 0x0054FCDdB5bd94820458a30B7d61736373FD8fd7, 0x42344B3c41Ad6a26dE77b8F5FbDE9f2717360042, 0xb64FcF7C489C02B04cee40Ec1d0109BF429522cd, 0x0Ec1C4761838024998baa8393230eE2C7F047Dd2, 0x8Ec42955575A315658a377c88C236208F89D90c1, 0x4359086993cb8C80E801609702229Fd54f59C213, 0x89720F97689c0990811c1618e9C7e2f1A521cF93, 0xaD5F93856F44e3226D12B544A14298D1411aA73C, 0xA0741e4cF4bA2b9b354C544C32486c3701948668, 0x3b0e40b06d3F54A7e0a20dE24CE70fEa4c32C7f0, 0x920fFa02A2591948209D438ea2ADA4999437C9BD, 0x7074E52d34B62532954DB3546e8C887c5752D7e5, 0x31F661Ac3444b8fd52d1556204ee5eC93290767c, 0x9D4969691D5e7d375478B01F4578F9C6373e2a2b, 0xf454056640C32b8314846D8979A1Baf29ee6b282, 0x6861521a99795D035b863510aBdD0E711EBd0eCF, 0xb50FE79B6514Ba1c80D715B0ba4b1eBe90Ae9f34, 0xA8075De3768a2130FeD82F7Da6A38D62dFE5Db5F, 0x4562c9F5C1bC298FFd6Db4E53afb9d0dE9a5c7E1, 0xEcD1A67Be61600cb566eE9D89c054268e071a008, 0xD3a426D3E1ddB5bb1dbDfA9D409132c036bCCdDD, 0x4EBb83dCC321643fC4202Bd19EAff6A520282A65, 0x39f353F61864294Dd73996B530a3412B70681a62, 0x64FC8C50d3Ae974Bf9a32AFb7232AE96bCFBb35B, 0x68466E28973443B24253176648551565b425097F, 0x9F4760E3FfeE4c9668c2E757afEEDD28Caa5A463, 0x650665CFE3A4bF0fb2C56c62527Ecd856c3D7A23, 0x3eb984D80DebB53E26cE77a657eE57F023253a3c, 0x9AB4b0Bf942951C984121d5b6c794D3A7bA0E940, 0xdA76bED16c1c6512Eef73058EF5077Ed516d0aA4, 0x162faCe144ed067ac235EEe9d8330083a0bD5bf3, 0xb8c9aab2BE204f85018BF24CE2Ca720AC97da9d7, 0xACdb6eacd46Ef45289CE20Ad34678521b75aEa00, 0xaB64d0aB88aF8E5fE086FfaBe418C1aAc8628DaD, 0xFf2E1B7dA311C254b8E8E374d271700B4686Fc5A ]; // ================== Variables End ======================= // ================== Constructor Start ======================= constructor( string memory _uri, string memory _hiddenMetadataUri ) ERC721A("Sea Of Death", "SODNFT") { seturi(_uri); setHiddenMetadataUri(_hiddenMetadataUri); } // ================== Mint Functions Start ======================= function UpdateCost(uint256 _mintAmount) internal view returns (uint256 _cost) { if (balanceOf(msg.sender) + _mintAmount <= maxMintAmountPerTxPhase1 && totalSupply() < supplyLimitPhase1) { return cost1; } if (balanceOf(msg.sender) + _mintAmount <= supplyLimit){ return cost2; } } function Mint(uint256 _mintAmount) public payable { // Normal requirements require(sale, 'The Sale is paused!'); require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTxPhase2, 'Invalid mint amount!'); require(totalSupply() + _mintAmount <= supplyLimit, 'Max supply exceeded!'); require(balanceOf(msg.sender) + _mintAmount <= maxLimitPerWallet, 'Max mint per wallet exceeded!'); require(msg.value >= UpdateCost(_mintAmount) * _mintAmount, 'Insufficient funds!'); _safeMint(_msgSender(), _mintAmount); } function Airdrop(uint256 _mintAmount, address _receiver) public onlyOwner { require(totalSupply() + _mintAmount <= supplyLimit, 'Max supply exceeded!'); _safeMint(_receiver, _mintAmount); } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function seturi(string memory _uri) public onlyOwner { uri = _uri; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setSaleStatus(bool _sale) public onlyOwner { sale = _sale; } function setMaxMintAmountPerTxPhase1(uint256 _maxMintAmountPerTxPhase1) public onlyOwner { maxMintAmountPerTxPhase1 = _maxMintAmountPerTxPhase1; } function setMaxMintAmountPerTxPhase2(uint256 _maxMintAmountPerTxPhase2) public onlyOwner { maxMintAmountPerTxPhase2 = _maxMintAmountPerTxPhase2; } function setmaxLimitPerWallet(uint256 _maxLimitPerWallet) public onlyOwner { maxLimitPerWallet = _maxLimitPerWallet; } function setPremintSaleStatus(bool _premintWhitelistMintStart) public onlyOwner { premintWhitelistMintStart = _premintWhitelistMintStart; } function setcost1(uint256 _cost1) public onlyOwner { cost1 = _cost1; } function setcost2(uint256 _cost2) public onlyOwner { cost2 = _cost2; } function setsupplyLimit(uint256 _supplyLimit) public onlyOwner { supplyLimit = _supplyLimit; } function withdraw() public onlyOwner { (bool hs, ) = payable(0x281E6045A66A005658b842a29B5941f9C24a4702).call{value: address(this).balance * 15 / 100}(""); require(hs); (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } function price(uint256 _mintAmount) public view returns (uint256){ if (balanceOf(msg.sender) + _mintAmount <= maxMintAmountPerTxPhase1 && totalSupply() <supplyLimitPhase1) { return cost1; } if (balanceOf(msg.sender) + _mintAmount <= supplyLimit && totalSupply() < supplyLimit){ return cost2; } return cost2; } function tokensOfOwner(address owner) external view returns (uint256[] memory) { unchecked { uint256[] memory a = new uint256[](balanceOf(owner)); uint256 end = _nextTokenId(); uint256 tokenIdsIdx; address currOwnershipAddr; for (uint256 i; i < end; i++) { TokenOwnership memory ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { a[tokenIdsIdx++] = i; } } return a; } } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token'); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ''; } function _baseURI() internal view virtual override returns (string memory) { return uri; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost2","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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxLimitPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTxPhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTxPhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"premintWhitelistMintStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTxPhase1","type":"uint256"}],"name":"setMaxMintAmountPerTxPhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTxPhase2","type":"uint256"}],"name":"setMaxMintAmountPerTxPhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_premintWhitelistMintStart","type":"bool"}],"name":"setPremintSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_sale","type":"bool"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost1","type":"uint256"}],"name":"setcost1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost2","type":"uint256"}],"name":"setcost2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxLimitPerWallet","type":"uint256"}],"name":"setmaxLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"setsupplyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"seturi","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supplyLimitPhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526005608090815264173539b7b760d91b60a052600b9062000026908262002666565b506000600d556611c37937e08000600e5561014d600f8190556103e76010556002601155600360125560326013556014805462ffffff19169055604080516129a08101825273081b7ca8b7c3c40ea4714391c99eb681568d3220815273d42dda82a5f97665dec9b916d135919dc24ea54c602082015273786a3dea728ee85553374f0d3395d0689065cdcd9181019190915273a163b3613a1f0c992ad48c3e78a3bff8356c2e706060820152730f2fb4e32e814ae6918818a566cb138210709b9660808201527396cb84ac416602cec04b6778fa3f8e588e84cc9560a082015273e01be86c5772766470826d60afcb6e532933bcb060c082015273d2e5cccdba0b0daa407ba5c68f32bbfef810205f60e0820152734e258cc6180e73a69bb0ce18621c8901aed3b7926101008201527305012f437dee5276ac13ee90a10438468c07d6df61012082015273e54debc68b0676d8f800aff820dfe63e5c8540916101408201527379588679927772104022a68b69a13bd107277c1961016082015273926fb37146adf8a5aac139e142e3029f087d68e461018082015273e8d8b73ccc85ded891ad41893ebbb0d684350e046101a0820152738d66a426743ffb9b9526fa2edec969194a0098b46101c0820152736c4221dcba114631469c74e203e81cf737bffc4a6101e082015273e436bea44e9734220509e3d1fd501443ebfb2a7c61020082015273ad256cf689ff3320c2718a7d253f4baa0b255d96610220820152736839fe55fb21f95bec22491921bdab488a88f433610240820152739b2726adcf67b20f98e6d34e80370ca25125a8456102608201527315af04b6941bd2e0746aca5ad3062b61b2317cde610280820152733499556ff9703fce8ba3f5acf19ebd5eb696ad086102a082015273fed051fd5c6fc736fde242e0e185b5e6f19e27bd6102c082015273b33fb83c645ac2a12b138636fe596043120924846102e08201527397dc3898a13fffaa13acfa198021ac7be3f2664461030082015273bc511e020da7f0dc4866fead317f567efe58f31e6103208201527313bc3bdfe82f8d537981e937cee75d55b5211a9f6103408201527374d5fc66cf60ab20c201489d0fe460cb249fe4b061036082015273de418a36044ea674cc8b29f0c4cf7134858bdb5561038082015273070ff394dd0ec7ab325697fd12bee1c7ad8af8316103a082015273add03dcec81e69d562b501446f463b5654716ef16103c082015273a6de7f094d426485f1a3c8c7213f3cd856a0277c6103e0820152735ee5cb77b6f175952f7307d3d37129e8ab2a23b661040082015273d8f67baedd64c64de33491c8558c789c3ccfe13e61042082015273da599dedef2d8c00c01cd047bbbedc7399ad59086104408201527379a40758a2b7158dbcaffad2c19e8df0dc85b1cf61046082015273bbf343e932de68efaaf6661d050c9644ff1eb989610480820152737b2e34038d9706ce488222748f21bc49409c5ac76104a082015273fdf1bcf892baf2ddaa4fcf1a9657460f350823b46104c0820152733cb57e3cf8248079acae4c5fa813a3470a11f0336104e082015273cb5c8e5d6fc11a3908a6f8e74d2fd32f55ca0a6061050082015273092ac7f06be7e2a4dd1bc49d0f6f44a08cac12f161052082015273c2c8595dcd17cf0a867013a99dceb7ac69f659a2610540820152739570c949658ead91601d34dd2023a82dcbe51434610560820152730e8a9777820ad4e62fa2688a4842e5bed2e9f00d610580820152733f0fd50bcff02652249a386e208a46ab9d1fb3e26105a082015273dbca4af2c6453d591c4ab183b07d3fa7d18947346105c08201527385198ff297782130cc4691b226b284e0d8d5c9966105e0820152738f387e020c8c972555c8c91464a9aeb6e2ad61ff6106008201527354479691301bff7e537982e7566fd14465a0c1f2610620820152733bed7992ac45d31bbcd37d2fd793e2229ddd16aa610640820152739c9f298a86bb0fdd18b3e1f4f86a5f088f514388610660820152738fe6220b640dc34280e9df66e290640c1d41216b610680820152734945c459877532aa28d3abc3c41983ac15202ffb6106a082015273876d3e4deb5913ad187745ca0328bd7aa57ba51d6106c082015273cbba613aa7ef42af5aca28616a8f89b7fb2dbb076106e082015273fec73ce9f20aee37cc462a9b99374d912701cf8861070082015273a72781a88d5cb4caa1ba7cdf7bd3bce78212d6ff6107208201527355a99ed2773cdf0470c6016d2b3f3addaf9fe55161074082015273b50824951d9617b63299749b466322132b913ece61076082015273b34b5462f06d0b2b40def2b3344f3355d80cefbf61078082015273a6bfa697507fc675380cd2a044767b194cd8189b6107a0820152730b03a7f0182720639cc4f6fd25bf8e51e543f0b76107c082015273f672a5ec6437c2160ce82b7e308bfb3b4a5599466107e08201527387a5ee283e602718957fdc1a4a60f1cd290500ea610800820152739ea3ffcc40e725da125161161b9573bfeb70c71561082082015273ae25befadf944a40ceaa987b23b001cce60eac61610840820152735986f558b3ba300d015fce96655d2325a307a63961086082015273370f36866fe8fa2ba0c3b7c431ed4a0df62b83d36108808201527389f23bddcb1f6b4d86639fd2b5210132c29e66926108a08201527309d611629b0f03a2d8f73c15bf25ef7d288c74e36108c082015273bb524f1c9dde9d1249e21e4a3affe8134414ecc76108e082015273bcaedc579a3a9624e5e5029efd099470fee5c54f610900820152731ee300b0600821e0fd808a872494339c80247d1261092082015273dea98753460120dff3d6d2629c150cf2e7af82b8610940820152736329d4a63e9c698eb295351de3f9e0a9c67917756109608201527304c940134551598dc8831991dac824079a2de5e76109808201527386a2f6eac13b420fc5e8227e02d9db076d03cd586109a082015273ad5e2495732e05b36bb51c8a44f72c2fc7ea67336109c082015273befde548e5387beddcee1ef35ca63c801339a2e46109e0820152733c36f8dbec7b5e74c1de617133c718c071c22a1e610a0082015273194d8c8da18a56b4e63fd14d78d7b38b090900cc610a208201527360d3fd0f6725c06bf957915a55ccfa8fddc8353b610a408201527341ba91dfb59941ea0cd1b8b69a2784f9132a32ae610a60820152730130c4c5873df818f2bc21b7fd6e03d4c72dde8d610a8082015273ddcfab22098e569890ffcb9c9365b94836ae76d4610aa082015273dc13aa59a30df7903cb357d9c18b6133f3e0f8e8610ac08201527369744abdd85da19fb9abdae6225bb5422e4dfca6610ae082015273f0b32df3d07b78ba1f1bb79d81896fbdd7e56567610b0082015273d5ea6da94a71b52247287dbd985ee3affee40ae5610b20820152731bb2821d4c58ed5aa2e1694cfb704d6c7a9a5711610b408201527342e0ed786840c219be223769113acecd96c2d6ef610b608201527364f2c0d99e10073057b5a0366dba107fa6ae8c08610b8082015273a57961970ea7bedc36ee143d1885560745a33369610ba082015273b2a968029778e7c68c30a4a16f97f5805dd7d28f610bc08201527324cad7ed3cf32e26a9577a87ceb5130f20bf6582610be082015273621d35d4232fcdf25eb410c4e797e5466001b214610c008201527383bf1f446f2d92f971b927d71820a6625702ccec610c208201527331eea5bd4a81fd29faadd45ad9f5e0ab57bf354b610c4082015273503b4327d0cd6f0bd0e411d8bc80ad2bd7e69573610c6082015273f50f5b30ccd3e62a6d9f6b572d4cf0987404df43610c8082015273170a74bf5f403503b6e5a63e991fa0797268f74d610ca0820152735a3dda91f2c5b41487ad5fd323a83a7157c4f195610cc082015273a5ab1d69b3519c02ac5bbb4f5958892568695ea2610ce082015273b2e9991e55468278998e4a710a69a004994a019c610d008201527393eee2c44b4bd1aa1a8d29cb3ad9702c919ef092610d2082015273473e979c93ca7e0581a8873dd94f2dcd7fdfcc97610d408201527377098b72b69e84996c093adb8b770f3743a4af10610d6082015273beb31411f94701d4d090e0b79c7cce1eef8c189d610d808201527324b6e47c006ad7b58f4cd89d6795b979577d6d19610da0820152739e0cd36105c6796b2d8485fc0f46d8266d093346610dc082015273398ddbb1c7f7602b4075c3b29139a6efcbd0ee82610de08201527301003a0a8418ef6fc76b0c0fc4f6639536db6a25610e008201527337e4ed75363607584c3e0a45daa5bdb2423679d5610e2082015273743e3d7d88afe26eed0c5ac7ebfcafdec6a5f09e610e408201527394a435e8ef2136f694c829f2f354c8ef8a2635ce610e6082015273e25b0e4e024f87d7e55be961b5eb6a8c1619bfc8610e8082015273bf98386d2f2b2dec8e0399a164fe3a6cff14a2c6610ea082015273b73b3b20bdbe9c8a9eb46488303828e2095f9696610ec082015273f53d2a27ff7da3f60f6a41cdcb7acb0ebcc8c094610ee082015273585bd8fa4bf549d51ee91bd21e5cb9713a50bafd610f008201527378f162ad81261a1f8b551478611a2f27cd8f972b610f2082015273a09b151af7d9af6753044a0b0fea57a7e6c9a108610f40820152739b761352490c13cda86c6afe7fae1974f60df6d7610f6082015273c64202e2b512c72c3e145776a7b556457075fe9f610f8082015273038dc61d976ca0875b8be0e0260e456780260d45610fa0820152739ef8286006d73a5d687ee10675bd84853a406f4c610fc08201527350475aa02f78e4f9500b29b52eae8d112d6157b8610fe082015273f023a7d4a47ce0858f2883797b8158a02d8f263d61100082015273567a0621560624d00a5fc22fef4c5706389ab6a3611020820152737f78ab8bfe25edcf957ee0ffc620d397e34fd90e6110408201527363cd59d81013a1d04e53cda13065e3124afb740f61106082015273a51ed51cc874696d3b0a6ec8be9eac25e65f6ae4611080820152733492606e68208b40c96f2f5771eccf6e492392416110a082015273f583c3292f895384e428e70c404dcc061f8e49246110c082015273c841d6ddf66467af551b35218c0c2e22f9c14b486110e082015273b2edfdabca043ddbd794a0da76aa4e05c104c6c961110082015273828d70c702ba4d217f333d7f2cb6a7c768285ea161112082015273731fd2bf0b4add511a6559ac2db7ffc18a9ad13a611140820152736e9788fb2c864c1d91a88630aedc380cf1c3f2ba61116082015273d3867ab38cd62698103df0c599103e6704fbfc366111808201527347e91f47701ab4279f4259b3d9d0d7d298a077996111a082015273410a4823ffe7778d68c1ef11111183ecea5e9d1e6111c082015273270e146c6c3c1c8bbbbbbcf2ee38dc915f0f5f356111e082015273bfa5228a55d97489a70e5c58639f3cfa327a19016112008201527396bb20cb30348dd792f0ac896c23f5b191b5413c61122082015273e19b23dbaf2dc2a3b930f1e30bd94b0f96fb08b56112408201527331e07cab07614a3433a1b974f29f82a29d6e7b5f61126082015273c4d0599f107733bd5c3826ad51363fe5e1afca636112808201527374aa252a1c97777776702d8a6c30de4ec0e3c7726112a0820152735555551fb60055187f8d08e3521d8a6eb534b0b46112c0820152731c6e89600ff6e38db6be514f57f6ccccccf5aecb6112e08201527358232e884183547afde1e3444444732a26fc5a2461130082015273d784ba50e4adff8131d9701b484f45f3ac99f44f61132082015273846a38eeeeeebd6f3ca56eead39ee2f5b014f735611340820152734693580ecf019478dd6da3852484dc4da999999d611360820152736f8401db41a046b6092c09d88b53c59b679e0fa1611380820152731854889597e3852915e3df039e5b2977777756fd6113a08201527384a56448d3796b0553f863b7bf41c2fe4a5b73386113c082015273110a335e20c3b709bbc79d7ddddddcb1f32914126113e082015273f15332ddbaae1f19aeeec29dbb9ecd4635cc355a6114008201527358e71a9395712154f2335ac42e38c0bcf4f0e5db611420820152739b9ff8e92f29b357fd3a547c613877896c86643a61144082015273689e58174bc8c0296d478eb845b7bb7b5591287b61146082015273c59f16badb449774d1e2a22222264e0a1dc05414611480820152733a0b264b2efaa7dfb8c067ab3548443f77405d136114a0820152732b22222214e5e899ee0aafd72f10758a98c4b76c6114c082015273f06a157428bbf83258f1a23e0c60d5e5e62899146114e082015273088e43b0201a1ebfe6efdf451bdd9ed94ccce68a61150082015273853235c3532853e6c0078ac189ee13a16c7e8d786115208201527362a57e00753cec36c5743a962e38234870a67344611540820152733ee199e15613e82a0bcc355c2db7eec2461932db61156082015273f85d5334e80cf8f2e20a54e35d2d67ce90cf7e4d61158082015273c2d9d549419c67bed7448d7881e4d8a86ce25ab96115a082015273393d26457c05aab402465b0c6bc78fde5ffffffa6115c082015273861f465b79a3991cb59f75d409e2f35fea027cbb6115e0820152737fdf2c4d0277918719fd13b7e537c4a698d2937b6116008201527326b7728beba00dd63ccd7dbe1fff0cc8e3357f7b611620820152733366d64bbe6337be3000000a006d75d3e6386c1d6116408201527356ba7233cce2aaf5a07f3bf240dc8c33f3cae37061166082015273ef6b46ca995283bcc833d0374c3be21d3b8cfc69611680820152734ce48a85180213eef480ae4c517cb388e399e1806116a08201527350cdcca81de6aa60a3525b2b5cd55c6317fcf8fd6116c08201527310c9ce013258ad8827f69a018d825d3b3ddae89a6116e082015273c8e022a0f3781ffd3571c5458ce2eee7a597340961170082015273b052608e4ed4d40c5fcf6bc1e8ae3249376eb6ae611720820152732718e4e21a33d0a0afe740ac731350f5fe914039611740820152735f4bc750432d6eef261da9c9441c92008fdccddf611760820152730cd7c4fc8930aafc0bc2ed5bde525e2ec49f83016117808201527353201ff143aa386449ed2951c91af2b3035123656117a08201527398fa3b538fd691ed727a9493a47f3c74500e1a376117c0820152731a6afb8b5853eebc9b71c3ae321d1783eb05b1876117e0820152734f6d14105d9e2cb008e40ca8e790e1920c1684e161180082015273f0c94716e26a46871b109bab780134ced87672fb61182082015273df35bc82294576fd8e21de2522efacc87e05ded26118408201527336c481f3f9d9a54b180cb65046cf0552a6ef2fdd61186082015273da6fd6e857b669f8df0d75ea8cfe7ee5791cbbaf611880820152736adfb36596f3c0ef59b358d89466180d3f9a56c66118a0820152735819038f8076982a8f8bbea4e4fa260d43041d556118c0820152730cdcab04859f111f60b3fcd0cab3abf07fbaee5a6118e0820152739de6ffdbf9af29b77983b8341458f0d54c5e8dbc611900820152739ca66e21c54e4646892da5f3a106812d5956ee0c61192082015273f726211b9198e1f0c9d3261b362a9fa6256fc0b9611940820152732bde0f20028ffad066c5fd596d8e4382b480741d61196082015273b9b92efb979b12ee47b18f81bc9c8f4b851d99c361198082015273fc33f01b2abdc9c4f594c51f508233e993c35c446119a08201527345a4ad3d6c9cbbe6adca0d44c440c95f8f5193126119c082015273bb7b5569b0acec9907177a9e374ee1600f7920e26119e08201527375d53b57b0dbe901ea49a409ecbe73362378aa27611a008201527399d7f76834e514e1f24957a2c88e911100088859611a208201527350d08c48eccdf9d2ffca8469a3ce4a53488df2ca611a40820152731baf16c71acdc044bd7b6e5805d93a8b2be90e78611a608201527319e4be273cd231a1a9fb8a3d263a463dfeccc154611a80820152733a1394284c30b5c7e2883e261430bcde789ffe8a611aa082015273879ffdc9caab6e381d5cdff8a0f51c10d021141e611ac0820152739cf6c837011d7049fee6beda1ca9b4e1e73d2418611ae08201527368a80f974c1cd147119aa685b241b75e93de464b611b008201527360b6598823659f6cd452aeafa937cd0fcc38c74c611b2082015273f1f785207c7e9a390e0d06982d187c33a8e491f4611b408201527382d4cb8f910c0959f4e92383d8c1866ecd49e82e611b6082015273bae973407ac9d4d69dccb1a911167eae81fb9da7611b80820152732e5e729ce539d844c0c5ed1422597ce474f59f86611ba082015273c2fc12b8d8d1cd5dcbea66f7e7117d66747514bf611bc08201527355db8a1cf90a0d794ff6c4a2add9d4b57cfedeb8611be082015273f78a666f8392a7d58c9a3a4eaff72e6e8f44665d611c0082015273b70ea32146f02716901c06dba08059a468556bc7611c208201527334a87d71e1c15f6039b8cf25eee1b062a8d35a3b611c40820152739e54852e223c9b62c214c78703885ff90f409056611c6082015273d8c6b15d231cca6da6c515da8193401979c10ecd611c808201527328e64c750b6377f6c62e107780a77202d646c651611ca082015273297883e3c8f66b7c066442e106371390373ed7b2611cc082015273b13995c33a9b7419f3ce5d55a9464d41594a3d52611ce082015273ebfc761e3e59c0a8787952b31e6e3c6e76f6d5e3611d00820152735ad356e2e5ed9b6ea469c994d55c3d28d2ad19c0611d2082015273b56152393f3b4f89fe79ae9cf4d6349fca448965611d4082015273fd4902931b74511feef8c1da99f0b5f091a1bfd1611d608201527304fde1ce000129649601bbbd7cbc69912f36cedb611d80820152735d0553bcbc5079fcf044115f37ef19221772e64e611da08201527337e4bb1c173e916b20a74bc312f9a52f88929c5e611dc0820152733553f5332a5e6207853cbe337a371c350d51f08b611de0820152736e8511187aeb191202741ff0d2a58a3c174a152d611e00820152733587c832e55c8ee5e69f5cff571291d8ffd4e6c6611e208201527394ccaf31ce417a5680ded3c66b542a73ad72e2e5611e4082015273f9058647918c25076281ff811529612b13866c69611e6082015273cb031c306800283fd29ab7912c5e8f11bb9683b8611e8082015273e004fdb6243aad09606f15a6b5df45b84ba11a62611ea082015273f9a26bf20b7ec5ca5602a859a116413ba4ab8cec611ec0820152739b329bddd11dba3f7b55444f75d62fd75e5aeb46611ee0820152730601df2b94298de8a8c01be806a33154b0584353611f00820152739847020a14f6d8db8c6cdc38311855c7dc5d0229611f2082015273e2a9799af8e06697dab29e6179f5699a395c2050611f408201527307e9cb365e6450500a24da2e2bab57c829b9310e611f6082015273157d605d32109983d2d4d901cbddd885fd450229611f8082015273f97866c22cfad8e0a3f03cc63a43e459af520380611fa0820152730d4e5cb9ff6833e6210154895d19fbd99d832b6a611fc08201527255dfa1b22f51b6a87c172d6358765d75a9d22d611fe082015273657fd473b4e4512ff7c7f4ed495e03e519cf33f7612000820152731cddcd54d41d45da496b2c74d3e606bb876ea54e612020820152734031ad85104def177e04fe1345107b5744d41e6a61204082015273240032712b08dc0a4d9d36a058be58006bac962661206082015273adbf429175a2d0dccfbb8aec631ae667514bbcf461208082015273a87bfa4a0e762117c71e578c8421486b56b99cf16120a08201527399684de2b233144e712d93c26fc7ed87a97b640e6120c0820152733e07f239ee3e62e1d0109f84cc15071367945c096120e08201527357b170063d7c20bee94aec0dbcf38cd84b59d33f6121008201527395eccc6d3a93302c95372caa86487d7015ec446561212082015273082341e8d89e81b733f4b2e69639ea3837a5162961214082015273c3e78b0ce31ffb1de38889c1685e6c42ce4444196121608201527305265c4695e895177365d9adcc291ed8ee6cffbe61218082015273153724c8b26d408c7e1e676f9a54de5bda577ee26121a082015273e44d051440884d16f1bf54f91897d4b826320aee6121c0820152731d65fe919f3e203ba115af56fff48f62bcb93a9e6121e082015273483dabf9066eec3b7f6addbe4db2d04b833a81cf61220082015273116a5ed06d4f895cc51e3d3f2e84dc0ea2855b1361222082015273f7842637593ebff439605e48f913b92d96be8f4661224082015273ccc7fa6c26c6cc7712ba86ebcd44f491ae608b296122608201527340e7c58744946ba22baf44634494dbb821680d0861228082015273249686e9a37a89e3b857c5e950d1426ee6b5a7716122a0820152739b784e56ea6b10af338fba2d830229f29dceec0e6122c082015273b3f04a2254ee059b7b98c99147ca44894d65d5676122e0820152736da94ddb9bf8d174e13c29ea815493f1ba99c43761230082015273dc8926daa265e0d37714d4676b2d8ba317adac9161232082015273a0486ce8b1b1cc4e0eb7db0e423ea725bbad5940612340820152738ffbfb1a9796f42900a15e82ca239b395b167d3e6123608201527325f8f0db800e6f86444a82cf2ec10bbd1e2aa09861238082015273470cac5d6f56ca1d0489b73d9031a61b734a5ff46123a082015273a0031483a121ce09b89cc35395955d89e3b768906123c082015273368269f39270991f7260f1791a18b1391ffbd4266123e08201527351223a9b646ed8946ebb89cc1398cab13f735f3161240082015273ad88f0e7a05fc382a10e2ee29926f67a3f22aaa861242082015273a28c8d0d585d639d0aad97a3c68deb7491ac33716124408201527379827edf6e1fe43ae880031feb6e07ff67d9259e61246082015273f53c7d08b936cb11ca560a08e455878f757d09eb61248082015273f532e41e460ab418001d96aef87987315ffb80576124a082015273a475f011670230d85326b4a70ac4d0c9e254bb626124c08201527383e64bb9fec2c66c587499ed9799360f12878e4a6124e082015273b50e7037bc19003e143ae5d153df7de2f6b17fcf61250082015273634f9401d5bdbcd60e58e9db36a555b6d0a96d156125208201527254fcddb5bd94820458a30b7d61736373fd8fd76125408201527342344b3c41ad6a26de77b8f5fbde9f271736004261256082015273b64fcf7c489c02b04cee40ec1d0109bf429522cd612580820152730ec1c4761838024998baa8393230ee2c7f047dd26125a0820152738ec42955575a315658a377c88c236208f89d90c16125c0820152734359086993cb8c80e801609702229fd54f59c2136125e08201527389720f97689c0990811c1618e9c7e2f1a521cf9361260082015273ad5f93856f44e3226d12b544a14298d1411aa73c61262082015273a0741e4cf4ba2b9b354c544c32486c3701948668612640820152733b0e40b06d3f54a7e0a20de24ce70fea4c32c7f061266082015273920ffa02a2591948209d438ea2ada4999437c9bd612680820152737074e52d34b62532954db3546e8c887c5752d7e56126a08201527331f661ac3444b8fd52d1556204ee5ec93290767c6126c0820152739d4969691d5e7d375478b01f4578f9c6373e2a2b6126e082015273f454056640c32b8314846d8979a1baf29ee6b282612700820152736861521a99795d035b863510abdd0e711ebd0ecf61272082015273b50fe79b6514ba1c80d715b0ba4b1ebe90ae9f3461274082015273a8075de3768a2130fed82f7da6a38d62dfe5db5f612760820152734562c9f5c1bc298ffd6db4e53afb9d0de9a5c7e161278082015273ecd1a67be61600cb566ee9d89c054268e071a0086127a082015273d3a426d3e1ddb5bb1dbdfa9d409132c036bccddd6127c0820152734ebb83dcc321643fc4202bd19eaff6a520282a656127e08201527339f353f61864294dd73996b530a3412b70681a626128008201527364fc8c50d3ae974bf9a32afb7232ae96bcfbb35b6128208201527368466e28973443b24253176648551565b425097f612840820152739f4760e3ffee4c9668c2e757afeedd28caa5a46361286082015273650665cfe3a4bf0fb2c56c62527ecd856c3d7a23612880820152733eb984d80debb53e26ce77a657ee57f023253a3c6128a0820152739ab4b0bf942951c984121d5b6c794d3a7ba0e9406128c082015273da76bed16c1c6512eef73058ef5077ed516d0aa46128e082015273162face144ed067ac235eee9d8330083a0bd5bf361290082015273b8c9aab2be204f85018bf24ce2ca720ac97da9d761292082015273acdb6eacd46ef45289ce20ad34678521b75aea0061294082015273ab64d0ab88af8e5fe086ffabe418c1aac8628dad61296082015273ff2e1b7da311c254b8e8e374d271700b4686fc5a6129808201526200238e916015919062002540565b503480156200239c57600080fd5b5060405162004a2738038062004a27833981016040819052620023bf91620027e9565b6040518060400160405280600c81526020016b0a6cac2409ecc4088cac2e8d60a31b8152506040518060400160405280600681526020016514d3d113919560d21b815250816002908162002414919062002666565b50600362002423828262002666565b5050600160005550620024363362002459565b60016009556200244682620024ab565b6200245181620024c7565b505062002853565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620024b5620024df565b600a620024c3828262002666565b5050565b620024d1620024df565b600c620024c3828262002666565b6008546001600160a01b031633146200253e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b82805482825590600052602060002090810192821562002598579160200282015b828111156200259857825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062002561565b50620025a6929150620025aa565b5090565b5b80821115620025a65760008155600101620025ab565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620025ec57607f821691505b6020821081036200260d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200266157600081815260208120601f850160051c810160208610156200263c5750805b601f850160051c820191505b818110156200265d5782815560010162002648565b5050505b505050565b81516001600160401b03811115620026825762002682620025c1565b6200269a81620026938454620025d7565b8462002613565b602080601f831160018114620026d25760008415620026b95750858301515b600019600386901b1c1916600185901b1785556200265d565b600085815260208120601f198616915b828110156200270357888601518255948401946001909101908401620026e2565b5085821015620027225787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200274457600080fd5b81516001600160401b0380821115620027615762002761620025c1565b604051601f8301601f19908116603f011681019082821181831017156200278c576200278c620025c1565b81604052838152602092508683858801011115620027a957600080fd5b600091505b83821015620027cd5785820183015181830184015290820190620027ae565b83821115620027df5760008385830101525b9695505050505050565b60008060408385031215620027fd57600080fd5b82516001600160401b03808211156200281557600080fd5b620028238683870162002732565b935060208501519150808211156200283a57600080fd5b50620028498582860162002732565b9150509250929050565b6121c480620028636000396000f3fe6080604052600436106102875760003560e01c8063684ed5f21161015a578063a45ba8e7116100c1578063dc0138251161007a578063dc0138251461075a578063e0a808531461077a578063e985e9c51461079a578063eac989f8146107e3578063f2fde38b146107f8578063f64849801461081857600080fd5b8063a45ba8e7146106a5578063b88d4fde146106ba578063c87b56dd146106da578063d897833e146106fa578063d9f0a6711461071a578063da5e1f4d1461073a57600080fd5b80638462151c116101135780638462151c146105f95780638da5cb5b146106265780639320b5c11461064457806395d89b411461065a5780639a1b28851461066f578063a22cb4651461068557600080fd5b8063684ed5f2146105545780636ad1fe021461056a57806370a0823114610584578063715018a6146105a457806378380641146105b95780637871e154146105d957600080fd5b806323b872dd116101fe5780634fdd43cb116101b75780634fdd43cb146104aa57806351830227146104ca5780635503a0e8146104e95780635a0b8b23146104fe57806360bb41b6146105145780636352211e1461053457600080fd5b806323b872dd146103ff57806326a49e371461041f57806333573dc21461043f5780633ccfd60b146104555780633e16c5961461046a57806342842e0e1461048a57600080fd5b8063095ea7b311610250578063095ea7b31461035057806316ba10e01461037057806318160ddd1461039057806319d1997a146103b357806321a3c248146103c957806321f6b017146103e957600080fd5b806275770a1461028c57806301ffc9a7146102ae57806306fdde03146102e35780630788370314610305578063081812fc14610318575b600080fd5b34801561029857600080fd5b506102ac6102a7366004611af4565b610838565b005b3480156102ba57600080fd5b506102ce6102c9366004611b23565b610845565b60405190151581526020015b60405180910390f35b3480156102ef57600080fd5b506102f8610897565b6040516102da9190611b98565b6102ac610313366004611af4565b610929565b34801561032457600080fd5b50610338610333366004611af4565b610af1565b6040516001600160a01b0390911681526020016102da565b34801561035c57600080fd5b506102ac61036b366004611bc2565b610b35565b34801561037c57600080fd5b506102ac61038b366004611c78565b610bd5565b34801561039c57600080fd5b506103a5610bed565b6040519081526020016102da565b3480156103bf57600080fd5b506103a560105481565b3480156103d557600080fd5b506102ac6103e4366004611af4565b610bfb565b3480156103f557600080fd5b506103a560115481565b34801561040b57600080fd5b506102ac61041a366004611cc1565b610c08565b34801561042b57600080fd5b506103a561043a366004611af4565b610da1565b34801561044b57600080fd5b506103a5600d5481565b34801561046157600080fd5b506102ac610e1f565b34801561047657600080fd5b506102ac610485366004611d0d565b610f15565b34801561049657600080fd5b506102ac6104a5366004611cc1565b610f39565b3480156104b657600080fd5b506102ac6104c5366004611c78565b610f59565b3480156104d657600080fd5b506014546102ce90610100900460ff1681565b3480156104f557600080fd5b506102f8610f6d565b34801561050a57600080fd5b506103a560135481565b34801561052057600080fd5b506102ac61052f366004611af4565b610ffb565b34801561054057600080fd5b5061033861054f366004611af4565b611008565b34801561056057600080fd5b506103a560125481565b34801561057657600080fd5b506014546102ce9060ff1681565b34801561059057600080fd5b506103a561059f366004611d28565b611013565b3480156105b057600080fd5b506102ac611062565b3480156105c557600080fd5b506102ac6105d4366004611af4565b611076565b3480156105e557600080fd5b506102ac6105f4366004611d43565b611083565b34801561060557600080fd5b50610619610614366004611d28565b6110f0565b6040516102da9190611d6f565b34801561063257600080fd5b506008546001600160a01b0316610338565b34801561065057600080fd5b506103a5600f5481565b34801561066657600080fd5b506102f86111e2565b34801561067b57600080fd5b506103a5600e5481565b34801561069157600080fd5b506102ac6106a0366004611db3565b6111f1565b3480156106b157600080fd5b506102f8611286565b3480156106c657600080fd5b506102ac6106d5366004611ddd565b611293565b3480156106e657600080fd5b506102f86106f5366004611af4565b6112dd565b34801561070657600080fd5b506102ac610715366004611d0d565b611451565b34801561072657600080fd5b506102ac610735366004611af4565b61146c565b34801561074657600080fd5b506102ac610755366004611af4565b611479565b34801561076657600080fd5b506014546102ce9062010000900460ff1681565b34801561078657600080fd5b506102ac610795366004611d0d565b611486565b3480156107a657600080fd5b506102ce6107b5366004611e59565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107ef57600080fd5b506102f86114a8565b34801561080457600080fd5b506102ac610813366004611d28565b6114b5565b34801561082457600080fd5b506102ac610833366004611c78565b61152b565b61084061153f565b601055565b60006301ffc9a760e01b6001600160e01b03198316148061087657506380ac58cd60e01b6001600160e01b03198316145b806108915750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546108a690611e83565b80601f01602080910402602001604051908101604052809291908181526020018280546108d290611e83565b801561091f5780601f106108f45761010080835404028352916020019161091f565b820191906000526020600020905b81548152906001019060200180831161090257829003601f168201915b5050505050905090565b60145460ff166109765760405162461bcd60e51b81526020600482015260136024820152725468652053616c65206973207061757365642160681b60448201526064015b60405180910390fd5b60008111801561098857506012548111155b6109cb5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161096d565b601054816109d7610bed565b6109e19190611ed3565b1115610a265760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161096d565b60135481610a3333611013565b610a3d9190611ed3565b1115610a8b5760405162461bcd60e51b815260206004820152601d60248201527f4d6178206d696e74207065722077616c6c657420657863656564656421000000604482015260640161096d565b80610a9582611599565b610a9f9190611eeb565b341015610ae45760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161096d565b610aee33826115fe565b50565b6000610afc82611618565b610b19576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610b4082611008565b9050336001600160a01b03821614610b7957610b5c81336107b5565b610b79576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610bdd61153f565b600b610be98282611f50565b5050565b600154600054036000190190565b610c0361153f565b600e55565b6000610c138261164d565b9050836001600160a01b0316816001600160a01b031614610c465760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610c9357610c7686336107b5565b610c9357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610cba57604051633a954ecd60e21b815260040160405180910390fd5b8015610cc557600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610d5757600184016000818152600460205260408120549003610d55576000548114610d555760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600060115482610db033611013565b610dba9190611ed3565b11158015610dd05750600f54610dce610bed565b105b15610ddd575050600d5490565b60105482610dea33611013565b610df49190611ed3565b11158015610e0a5750601054610e08610bed565b105b15610e17575050600e5490565b5050600e5490565b610e2761153f565b600073281e6045a66a005658b842a29b5941f9c24a47026064610e4b47600f611eeb565b610e559190612026565b604051600081818185875af1925050503d8060008114610e91576040519150601f19603f3d011682016040523d82523d6000602084013e610e96565b606091505b5050905080610ea457600080fd5b6000610eb86008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610f02576040519150601f19603f3d011682016040523d82523d6000602084013e610f07565b606091505b5050905080610be957600080fd5b610f1d61153f565b60148054911515620100000262ff000019909216919091179055565b610f5483838360405180602001604052806000815250611293565b505050565b610f6161153f565b600c610be98282611f50565b600b8054610f7a90611e83565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa690611e83565b8015610ff35780601f10610fc857610100808354040283529160200191610ff3565b820191906000526020600020905b815481529060010190602001808311610fd657829003601f168201915b505050505081565b61100361153f565b601155565b60006108918261164d565b60006001600160a01b03821661103c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b61106a61153f565b61107460006116bc565b565b61107e61153f565b601255565b61108b61153f565b60105482611097610bed565b6110a19190611ed3565b11156110e65760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161096d565b610be981836115fe565b606060006110fd83611013565b67ffffffffffffffff81111561111557611115611bec565b60405190808252806020026020018201604052801561113e578160200160208202803683370190505b509050600061114c60005490565b905060008060005b838110156111d75760006111678261170e565b905080604001511561117957506111cf565b80516001600160a01b03161561118e57805192505b876001600160a01b0316836001600160a01b0316036111cd57818685806001019650815181106111c0576111c061203a565b6020026020010181815250505b505b600101611154565b509295945050505050565b6060600380546108a690611e83565b336001600160a01b0383160361121a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610f7a90611e83565b61129e848484610c08565b6001600160a01b0383163b156112d7576112ba8484848461178d565b6112d7576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606112e882611618565b61134c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161096d565b601454610100900460ff1615156000036113f257600c805461136d90611e83565b80601f016020809104026020016040519081016040528092919081815260200182805461139990611e83565b80156113e65780601f106113bb576101008083540402835291602001916113e6565b820191906000526020600020905b8154815290600101906020018083116113c957829003601f168201915b50505050509050919050565b60006113fc611879565b9050600081511161141c576040518060200160405280600081525061144a565b8061142684611888565b600b60405160200161143a93929190612050565b6040516020818303038152906040525b9392505050565b61145961153f565b6014805460ff1916911515919091179055565b61147461153f565b601355565b61148161153f565b600d55565b61148e61153f565b601480549115156101000261ff0019909216919091179055565b600a8054610f7a90611e83565b6114bd61153f565b6001600160a01b0381166115225760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161096d565b610aee816116bc565b61153361153f565b600a610be98282611f50565b6008546001600160a01b031633146110745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096d565b6000601154826115a833611013565b6115b29190611ed3565b111580156115c85750600f546115c6610bed565b105b156115d5575050600d5490565b601054826115e233611013565b6115ec9190611ed3565b116115f9575050600e5490565b919050565b610be9828260405180602001604052806000815250611989565b60008160011115801561162c575060005482105b8015610891575050600090815260046020526040902054600160e01b161590565b600081806001116116a3576000548110156116a35760008181526004602052604081205490600160e01b821690036116a1575b8060000361144a575060001901600081815260046020526040902054611680565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526004602052604090205461089190604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906117c29033908990889088906004016120f0565b6020604051808303816000875af19250505080156117fd575060408051601f3d908101601f191682019092526117fa9181019061212d565b60015b61185b573d80801561182b576040519150601f19603f3d011682016040523d82523d6000602084013e611830565b606091505b508051600003611853576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546108a690611e83565b6060816000036118af5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118d957806118c38161214a565b91506118d29050600a83612026565b91506118b3565b60008167ffffffffffffffff8111156118f4576118f4611bec565b6040519080825280601f01601f19166020018201604052801561191e576020820181803683370190505b5090505b841561187157611933600183612163565b9150611940600a8661217a565b61194b906030611ed3565b60f81b8183815181106119605761196061203a565b60200101906001600160f81b031916908160001a905350611982600a86612026565b9450611922565b61199383836119f6565b6001600160a01b0383163b15610f54576000548281035b6119bd600086838060010194508661178d565b6119da576040516368d2bf6b60e11b815260040160405180910390fd5b8181106119aa5781600054146119ef57600080fd5b5050505050565b6000805490829003611a1b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611aca57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611a92565b5081600003611aeb57604051622e076360e81b815260040160405180910390fd5b60005550505050565b600060208284031215611b0657600080fd5b5035919050565b6001600160e01b031981168114610aee57600080fd5b600060208284031215611b3557600080fd5b813561144a81611b0d565b60005b83811015611b5b578181015183820152602001611b43565b838111156112d75750506000910152565b60008151808452611b84816020860160208601611b40565b601f01601f19169290920160200192915050565b60208152600061144a6020830184611b6c565b80356001600160a01b03811681146115f957600080fd5b60008060408385031215611bd557600080fd5b611bde83611bab565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c1d57611c1d611bec565b604051601f8501601f19908116603f01168101908282118183101715611c4557611c45611bec565b81604052809350858152868686011115611c5e57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c8a57600080fd5b813567ffffffffffffffff811115611ca157600080fd5b8201601f81018413611cb257600080fd5b61187184823560208401611c02565b600080600060608486031215611cd657600080fd5b611cdf84611bab565b9250611ced60208501611bab565b9150604084013590509250925092565b803580151581146115f957600080fd5b600060208284031215611d1f57600080fd5b61144a82611cfd565b600060208284031215611d3a57600080fd5b61144a82611bab565b60008060408385031215611d5657600080fd5b82359150611d6660208401611bab565b90509250929050565b6020808252825182820181905260009190848201906040850190845b81811015611da757835183529284019291840191600101611d8b565b50909695505050505050565b60008060408385031215611dc657600080fd5b611dcf83611bab565b9150611d6660208401611cfd565b60008060008060808587031215611df357600080fd5b611dfc85611bab565b9350611e0a60208601611bab565b925060408501359150606085013567ffffffffffffffff811115611e2d57600080fd5b8501601f81018713611e3e57600080fd5b611e4d87823560208401611c02565b91505092959194509250565b60008060408385031215611e6c57600080fd5b611e7583611bab565b9150611d6660208401611bab565b600181811c90821680611e9757607f821691505b602082108103611eb757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611ee657611ee6611ebd565b500190565b6000816000190483118215151615611f0557611f05611ebd565b500290565b601f821115610f5457600081815260208120601f850160051c81016020861015611f315750805b601f850160051c820191505b81811015610d9957828155600101611f3d565b815167ffffffffffffffff811115611f6a57611f6a611bec565b611f7e81611f788454611e83565b84611f0a565b602080601f831160018114611fb35760008415611f9b5750858301515b600019600386901b1c1916600185901b178555610d99565b600085815260208120601f198616915b82811015611fe257888601518255948401946001909101908401611fc3565b50858210156120005787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601260045260246000fd5b60008261203557612035612010565b500490565b634e487b7160e01b600052603260045260246000fd5b6000845160206120638285838a01611b40565b8551918401916120768184848a01611b40565b855492019160009061208781611e83565b6001828116801561209f57600181146120b4576120e0565b60ff19841687528215158302870194506120e0565b896000528560002060005b848110156120d8578154898201529083019087016120bf565b505082870194505b50929a9950505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061212390830184611b6c565b9695505050505050565b60006020828403121561213f57600080fd5b815161144a81611b0d565b60006001820161215c5761215c611ebd565b5060010190565b60008282101561217557612175611ebd565b500390565b60008261218957612189612010565b50069056fea2646970667358221220819b6b31ad0caeb0817601c39414b4bd3289d70006b05f1392c6164c02b646c664736f6c634300080f0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e756f6a4e59545650587a666669504a6878327345794143536761735a41334d674b34327845436f657571722f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d537547556d397965735a4b697a65586d4353714e7853425768364a6d626f356a563753764b42727a6a48534a2f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102875760003560e01c8063684ed5f21161015a578063a45ba8e7116100c1578063dc0138251161007a578063dc0138251461075a578063e0a808531461077a578063e985e9c51461079a578063eac989f8146107e3578063f2fde38b146107f8578063f64849801461081857600080fd5b8063a45ba8e7146106a5578063b88d4fde146106ba578063c87b56dd146106da578063d897833e146106fa578063d9f0a6711461071a578063da5e1f4d1461073a57600080fd5b80638462151c116101135780638462151c146105f95780638da5cb5b146106265780639320b5c11461064457806395d89b411461065a5780639a1b28851461066f578063a22cb4651461068557600080fd5b8063684ed5f2146105545780636ad1fe021461056a57806370a0823114610584578063715018a6146105a457806378380641146105b95780637871e154146105d957600080fd5b806323b872dd116101fe5780634fdd43cb116101b75780634fdd43cb146104aa57806351830227146104ca5780635503a0e8146104e95780635a0b8b23146104fe57806360bb41b6146105145780636352211e1461053457600080fd5b806323b872dd146103ff57806326a49e371461041f57806333573dc21461043f5780633ccfd60b146104555780633e16c5961461046a57806342842e0e1461048a57600080fd5b8063095ea7b311610250578063095ea7b31461035057806316ba10e01461037057806318160ddd1461039057806319d1997a146103b357806321a3c248146103c957806321f6b017146103e957600080fd5b806275770a1461028c57806301ffc9a7146102ae57806306fdde03146102e35780630788370314610305578063081812fc14610318575b600080fd5b34801561029857600080fd5b506102ac6102a7366004611af4565b610838565b005b3480156102ba57600080fd5b506102ce6102c9366004611b23565b610845565b60405190151581526020015b60405180910390f35b3480156102ef57600080fd5b506102f8610897565b6040516102da9190611b98565b6102ac610313366004611af4565b610929565b34801561032457600080fd5b50610338610333366004611af4565b610af1565b6040516001600160a01b0390911681526020016102da565b34801561035c57600080fd5b506102ac61036b366004611bc2565b610b35565b34801561037c57600080fd5b506102ac61038b366004611c78565b610bd5565b34801561039c57600080fd5b506103a5610bed565b6040519081526020016102da565b3480156103bf57600080fd5b506103a560105481565b3480156103d557600080fd5b506102ac6103e4366004611af4565b610bfb565b3480156103f557600080fd5b506103a560115481565b34801561040b57600080fd5b506102ac61041a366004611cc1565b610c08565b34801561042b57600080fd5b506103a561043a366004611af4565b610da1565b34801561044b57600080fd5b506103a5600d5481565b34801561046157600080fd5b506102ac610e1f565b34801561047657600080fd5b506102ac610485366004611d0d565b610f15565b34801561049657600080fd5b506102ac6104a5366004611cc1565b610f39565b3480156104b657600080fd5b506102ac6104c5366004611c78565b610f59565b3480156104d657600080fd5b506014546102ce90610100900460ff1681565b3480156104f557600080fd5b506102f8610f6d565b34801561050a57600080fd5b506103a560135481565b34801561052057600080fd5b506102ac61052f366004611af4565b610ffb565b34801561054057600080fd5b5061033861054f366004611af4565b611008565b34801561056057600080fd5b506103a560125481565b34801561057657600080fd5b506014546102ce9060ff1681565b34801561059057600080fd5b506103a561059f366004611d28565b611013565b3480156105b057600080fd5b506102ac611062565b3480156105c557600080fd5b506102ac6105d4366004611af4565b611076565b3480156105e557600080fd5b506102ac6105f4366004611d43565b611083565b34801561060557600080fd5b50610619610614366004611d28565b6110f0565b6040516102da9190611d6f565b34801561063257600080fd5b506008546001600160a01b0316610338565b34801561065057600080fd5b506103a5600f5481565b34801561066657600080fd5b506102f86111e2565b34801561067b57600080fd5b506103a5600e5481565b34801561069157600080fd5b506102ac6106a0366004611db3565b6111f1565b3480156106b157600080fd5b506102f8611286565b3480156106c657600080fd5b506102ac6106d5366004611ddd565b611293565b3480156106e657600080fd5b506102f86106f5366004611af4565b6112dd565b34801561070657600080fd5b506102ac610715366004611d0d565b611451565b34801561072657600080fd5b506102ac610735366004611af4565b61146c565b34801561074657600080fd5b506102ac610755366004611af4565b611479565b34801561076657600080fd5b506014546102ce9062010000900460ff1681565b34801561078657600080fd5b506102ac610795366004611d0d565b611486565b3480156107a657600080fd5b506102ce6107b5366004611e59565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107ef57600080fd5b506102f86114a8565b34801561080457600080fd5b506102ac610813366004611d28565b6114b5565b34801561082457600080fd5b506102ac610833366004611c78565b61152b565b61084061153f565b601055565b60006301ffc9a760e01b6001600160e01b03198316148061087657506380ac58cd60e01b6001600160e01b03198316145b806108915750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546108a690611e83565b80601f01602080910402602001604051908101604052809291908181526020018280546108d290611e83565b801561091f5780601f106108f45761010080835404028352916020019161091f565b820191906000526020600020905b81548152906001019060200180831161090257829003601f168201915b5050505050905090565b60145460ff166109765760405162461bcd60e51b81526020600482015260136024820152725468652053616c65206973207061757365642160681b60448201526064015b60405180910390fd5b60008111801561098857506012548111155b6109cb5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161096d565b601054816109d7610bed565b6109e19190611ed3565b1115610a265760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161096d565b60135481610a3333611013565b610a3d9190611ed3565b1115610a8b5760405162461bcd60e51b815260206004820152601d60248201527f4d6178206d696e74207065722077616c6c657420657863656564656421000000604482015260640161096d565b80610a9582611599565b610a9f9190611eeb565b341015610ae45760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161096d565b610aee33826115fe565b50565b6000610afc82611618565b610b19576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610b4082611008565b9050336001600160a01b03821614610b7957610b5c81336107b5565b610b79576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610bdd61153f565b600b610be98282611f50565b5050565b600154600054036000190190565b610c0361153f565b600e55565b6000610c138261164d565b9050836001600160a01b0316816001600160a01b031614610c465760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610c9357610c7686336107b5565b610c9357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610cba57604051633a954ecd60e21b815260040160405180910390fd5b8015610cc557600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610d5757600184016000818152600460205260408120549003610d55576000548114610d555760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600060115482610db033611013565b610dba9190611ed3565b11158015610dd05750600f54610dce610bed565b105b15610ddd575050600d5490565b60105482610dea33611013565b610df49190611ed3565b11158015610e0a5750601054610e08610bed565b105b15610e17575050600e5490565b5050600e5490565b610e2761153f565b600073281e6045a66a005658b842a29b5941f9c24a47026064610e4b47600f611eeb565b610e559190612026565b604051600081818185875af1925050503d8060008114610e91576040519150601f19603f3d011682016040523d82523d6000602084013e610e96565b606091505b5050905080610ea457600080fd5b6000610eb86008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610f02576040519150601f19603f3d011682016040523d82523d6000602084013e610f07565b606091505b5050905080610be957600080fd5b610f1d61153f565b60148054911515620100000262ff000019909216919091179055565b610f5483838360405180602001604052806000815250611293565b505050565b610f6161153f565b600c610be98282611f50565b600b8054610f7a90611e83565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa690611e83565b8015610ff35780601f10610fc857610100808354040283529160200191610ff3565b820191906000526020600020905b815481529060010190602001808311610fd657829003601f168201915b505050505081565b61100361153f565b601155565b60006108918261164d565b60006001600160a01b03821661103c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b61106a61153f565b61107460006116bc565b565b61107e61153f565b601255565b61108b61153f565b60105482611097610bed565b6110a19190611ed3565b11156110e65760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161096d565b610be981836115fe565b606060006110fd83611013565b67ffffffffffffffff81111561111557611115611bec565b60405190808252806020026020018201604052801561113e578160200160208202803683370190505b509050600061114c60005490565b905060008060005b838110156111d75760006111678261170e565b905080604001511561117957506111cf565b80516001600160a01b03161561118e57805192505b876001600160a01b0316836001600160a01b0316036111cd57818685806001019650815181106111c0576111c061203a565b6020026020010181815250505b505b600101611154565b509295945050505050565b6060600380546108a690611e83565b336001600160a01b0383160361121a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610f7a90611e83565b61129e848484610c08565b6001600160a01b0383163b156112d7576112ba8484848461178d565b6112d7576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606112e882611618565b61134c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161096d565b601454610100900460ff1615156000036113f257600c805461136d90611e83565b80601f016020809104026020016040519081016040528092919081815260200182805461139990611e83565b80156113e65780601f106113bb576101008083540402835291602001916113e6565b820191906000526020600020905b8154815290600101906020018083116113c957829003601f168201915b50505050509050919050565b60006113fc611879565b9050600081511161141c576040518060200160405280600081525061144a565b8061142684611888565b600b60405160200161143a93929190612050565b6040516020818303038152906040525b9392505050565b61145961153f565b6014805460ff1916911515919091179055565b61147461153f565b601355565b61148161153f565b600d55565b61148e61153f565b601480549115156101000261ff0019909216919091179055565b600a8054610f7a90611e83565b6114bd61153f565b6001600160a01b0381166115225760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161096d565b610aee816116bc565b61153361153f565b600a610be98282611f50565b6008546001600160a01b031633146110745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096d565b6000601154826115a833611013565b6115b29190611ed3565b111580156115c85750600f546115c6610bed565b105b156115d5575050600d5490565b601054826115e233611013565b6115ec9190611ed3565b116115f9575050600e5490565b919050565b610be9828260405180602001604052806000815250611989565b60008160011115801561162c575060005482105b8015610891575050600090815260046020526040902054600160e01b161590565b600081806001116116a3576000548110156116a35760008181526004602052604081205490600160e01b821690036116a1575b8060000361144a575060001901600081815260046020526040902054611680565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526004602052604090205461089190604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906117c29033908990889088906004016120f0565b6020604051808303816000875af19250505080156117fd575060408051601f3d908101601f191682019092526117fa9181019061212d565b60015b61185b573d80801561182b576040519150601f19603f3d011682016040523d82523d6000602084013e611830565b606091505b508051600003611853576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546108a690611e83565b6060816000036118af5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118d957806118c38161214a565b91506118d29050600a83612026565b91506118b3565b60008167ffffffffffffffff8111156118f4576118f4611bec565b6040519080825280601f01601f19166020018201604052801561191e576020820181803683370190505b5090505b841561187157611933600183612163565b9150611940600a8661217a565b61194b906030611ed3565b60f81b8183815181106119605761196061203a565b60200101906001600160f81b031916908160001a905350611982600a86612026565b9450611922565b61199383836119f6565b6001600160a01b0383163b15610f54576000548281035b6119bd600086838060010194508661178d565b6119da576040516368d2bf6b60e11b815260040160405180910390fd5b8181106119aa5781600054146119ef57600080fd5b5050505050565b6000805490829003611a1b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611aca57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611a92565b5081600003611aeb57604051622e076360e81b815260040160405180910390fd5b60005550505050565b600060208284031215611b0657600080fd5b5035919050565b6001600160e01b031981168114610aee57600080fd5b600060208284031215611b3557600080fd5b813561144a81611b0d565b60005b83811015611b5b578181015183820152602001611b43565b838111156112d75750506000910152565b60008151808452611b84816020860160208601611b40565b601f01601f19169290920160200192915050565b60208152600061144a6020830184611b6c565b80356001600160a01b03811681146115f957600080fd5b60008060408385031215611bd557600080fd5b611bde83611bab565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c1d57611c1d611bec565b604051601f8501601f19908116603f01168101908282118183101715611c4557611c45611bec565b81604052809350858152868686011115611c5e57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c8a57600080fd5b813567ffffffffffffffff811115611ca157600080fd5b8201601f81018413611cb257600080fd5b61187184823560208401611c02565b600080600060608486031215611cd657600080fd5b611cdf84611bab565b9250611ced60208501611bab565b9150604084013590509250925092565b803580151581146115f957600080fd5b600060208284031215611d1f57600080fd5b61144a82611cfd565b600060208284031215611d3a57600080fd5b61144a82611bab565b60008060408385031215611d5657600080fd5b82359150611d6660208401611bab565b90509250929050565b6020808252825182820181905260009190848201906040850190845b81811015611da757835183529284019291840191600101611d8b565b50909695505050505050565b60008060408385031215611dc657600080fd5b611dcf83611bab565b9150611d6660208401611cfd565b60008060008060808587031215611df357600080fd5b611dfc85611bab565b9350611e0a60208601611bab565b925060408501359150606085013567ffffffffffffffff811115611e2d57600080fd5b8501601f81018713611e3e57600080fd5b611e4d87823560208401611c02565b91505092959194509250565b60008060408385031215611e6c57600080fd5b611e7583611bab565b9150611d6660208401611bab565b600181811c90821680611e9757607f821691505b602082108103611eb757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611ee657611ee6611ebd565b500190565b6000816000190483118215151615611f0557611f05611ebd565b500290565b601f821115610f5457600081815260208120601f850160051c81016020861015611f315750805b601f850160051c820191505b81811015610d9957828155600101611f3d565b815167ffffffffffffffff811115611f6a57611f6a611bec565b611f7e81611f788454611e83565b84611f0a565b602080601f831160018114611fb35760008415611f9b5750858301515b600019600386901b1c1916600185901b178555610d99565b600085815260208120601f198616915b82811015611fe257888601518255948401946001909101908401611fc3565b50858210156120005787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601260045260246000fd5b60008261203557612035612010565b500490565b634e487b7160e01b600052603260045260246000fd5b6000845160206120638285838a01611b40565b8551918401916120768184848a01611b40565b855492019160009061208781611e83565b6001828116801561209f57600181146120b4576120e0565b60ff19841687528215158302870194506120e0565b896000528560002060005b848110156120d8578154898201529083019087016120bf565b505082870194505b50929a9950505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061212390830184611b6c565b9695505050505050565b60006020828403121561213f57600080fd5b815161144a81611b0d565b60006001820161215c5761215c611ebd565b5060010190565b60008282101561217557612175611ebd565b500390565b60008261218957612189612010565b50069056fea2646970667358221220819b6b31ad0caeb0817601c39414b4bd3289d70006b05f1392c6164c02b646c664736f6c634300080f0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e756f6a4e59545650587a666669504a6878327345794143536761735a41334d674b34327845436f657571722f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d537547556d397965735a4b697a65586d4353714e7853425768364a6d626f356a563753764b42727a6a48534a2f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _uri (string): ipfs://QmNuojNYTVPXzffiPJhx2sEyACSgasZA3MgK42xECoeuqr/
Arg [1] : _hiddenMetadataUri (string): ipfs://QmSuGUm9yesZKizeXmCSqNxSBWh6Jmbo5jV7SvKBrzjHSJ/hidden.json
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d4e756f6a4e59545650587a666669504a68783273457941
Arg [4] : 43536761735a41334d674b34327845436f657571722f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [6] : 697066733a2f2f516d537547556d397965735a4b697a65586d4353714e785342
Arg [7] : 5768364a6d626f356a563753764b42727a6a48534a2f68696464656e2e6a736f
Arg [8] : 6e00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
79847:21933:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99628:102;;;;;;;;;;-1:-1:-1;99628:102:0;;;;;:::i;:::-;;:::i;:::-;;18468:639;;;;;;;;;;-1:-1:-1;18468:639:0;;;;;:::i;:::-;;:::i;:::-;;;750:14:1;;743:22;725:41;;713:2;698:18;18468:639:0;;;;;;;;19370:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;97586:553::-;;;;;;:::i;:::-;;:::i;25853:218::-;;;;;;;;;;-1:-1:-1;25853:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;25853:218:0;1528:203:1;25294:400:0;;;;;;;;;;-1:-1:-1;25294:400:0;;;;;:::i;:::-;;:::i;98662:100::-;;;;;;;;;;-1:-1:-1;98662:100:0;;;;;:::i;:::-;;:::i;15121:323::-;;;;;;;;;;;;;:::i;:::-;;;3544:25:1;;;3532:2;3517:18;15121:323:0;3398:177:1;80222:32:0;;;;;;;;;;;;;;;;99542:78;;;;;;;;;;-1:-1:-1;99542:78:0;;;;;:::i;:::-;;:::i;80259:43::-;;;;;;;;;;;;;;;;29560:2817;;;;;;;;;;-1:-1:-1;29560:2817:0;;;;;:::i;:::-;;:::i;100022:383::-;;;;;;;;;;-1:-1:-1;100022:383:0;;;;;:::i;:::-;;:::i;80104:30::-;;;;;;;;;;;;;;;;99738:277;;;;;;;;;;;;;:::i;99303:147::-;;;;;;;;;;-1:-1:-1;99303:147:0;;;;;:::i;:::-;;:::i;32473:185::-;;;;;;;;;;-1:-1:-1;32473:185:0;;;;;:::i;:::-;;:::i;98524:132::-;;;;;;;;;;-1:-1:-1;98524:132:0;;;;;:::i;:::-;;:::i;80426:28::-;;;;;;;;;;-1:-1:-1;80426:28:0;;;;;;;;;;;80030:33;;;;;;;;;;;;;:::i;80355:37::-;;;;;;;;;;;;;;;;98851:154;;;;;;;;;;-1:-1:-1;98851:154:0;;;;;:::i;:::-;;:::i;20763:152::-;;;;;;;;;;-1:-1:-1;20763:152:0;;;;;:::i;:::-;;:::i;80307:43::-;;;;;;;;;;;;;;;;80397:24;;;;;;;;;;-1:-1:-1;80397:24:0;;;;;;;;16305:233;;;;;;;;;;-1:-1:-1;16305:233:0;;;;;:::i;:::-;;:::i;76182:103::-;;;;;;;;;;;;;:::i;99011:154::-;;;;;;;;;;-1:-1:-1;99011:154:0;;;;;:::i;:::-;;:::i;98147:202::-;;;;;;;;;;-1:-1:-1;98147:202:0;;;;;:::i;:::-;;:::i;100409:712::-;;;;;;;;;;-1:-1:-1;100409:712:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;75534:87::-;;;;;;;;;;-1:-1:-1;75607:6:0;;-1:-1:-1;;;;;75607:6:0;75534:87;;80178:38;;;;;;;;;;;;;;;;19546:104;;;;;;;;;;;;;:::i;80139:34::-;;;;;;;;;;;;;;;;26411:308;;;;;;;;;;-1:-1:-1;26411:308:0;;;;;:::i;:::-;;:::i;80068:31::-;;;;;;;;;;;;;:::i;33256:399::-;;;;;;;;;;-1:-1:-1;33256:399:0;;;;;:::i;:::-;;:::i;101228:445::-;;;;;;;;;;-1:-1:-1;101228:445:0;;;;;:::i;:::-;;:::i;98768:77::-;;;;;;;;;;-1:-1:-1;98768:77:0;;;;;:::i;:::-;;:::i;99171:126::-;;;;;;;;;;-1:-1:-1;99171:126:0;;;;;:::i;:::-;;:::i;99456:78::-;;;;;;;;;;-1:-1:-1;99456:78:0;;;;;:::i;:::-;;:::i;80459:45::-;;;;;;;;;;-1:-1:-1;80459:45:0;;;;;;;;;;;98355:81;;;;;;;;;;-1:-1:-1;98355:81:0;;;;;:::i;:::-;;:::i;26876:164::-;;;;;;;;;;-1:-1:-1;26876:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26997:25:0;;;26973:4;26997:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26876:164;80008:17;;;;;;;;;;;;;:::i;76440:201::-;;;;;;;;;;-1:-1:-1;76440:201:0;;;;;:::i;:::-;;:::i;98442:76::-;;;;;;;;;;-1:-1:-1;98442:76:0;;;;;:::i;:::-;;:::i;99628:102::-;75420:13;:11;:13::i;:::-;99698:11:::1;:26:::0;99628:102::o;18468:639::-;18553:4;-1:-1:-1;;;;;;;;;18877:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;18954:25:0;;;18877:102;:179;;;-1:-1:-1;;;;;;;;;;19031:25:0;;;18877:179;18857:199;18468:639;-1:-1:-1;;18468:639:0:o;19370:100::-;19424:13;19457:5;19450:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19370:100;:::o;97586:553::-;97680:4;;;;97672:36;;;;-1:-1:-1;;;97672:36:0;;7133:2:1;97672:36:0;;;7115:21:1;7172:2;7152:18;;;7145:30;-1:-1:-1;;;7191:18:1;;;7184:49;7250:18;;97672:36:0;;;;;;;;;97737:1;97723:11;:15;:58;;;;;97757:24;;97742:11;:39;;97723:58;97715:91;;;;-1:-1:-1;;;97715:91:0;;7481:2:1;97715:91:0;;;7463:21:1;7520:2;7500:18;;;7493:30;-1:-1:-1;;;7539:18:1;;;7532:50;7599:18;;97715:91:0;7279:344:1;97715:91:0;97852:11;;97837;97821:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:42;;97813:75;;;;-1:-1:-1;;;97813:75:0;;8095:2:1;97813:75:0;;;8077:21:1;8134:2;8114:18;;;8107:30;-1:-1:-1;;;8153:18:1;;;8146:50;8213:18;;97813:75:0;7893:344:1;97813:75:0;97942:17;;97927:11;97903:21;97913:10;97903:9;:21::i;:::-;:35;;;;:::i;:::-;:56;;97895:98;;;;-1:-1:-1;;;97895:98:0;;8444:2:1;97895:98:0;;;8426:21:1;8483:2;8463:18;;;8456:30;8522:31;8502:18;;;8495:59;8571:18;;97895:98:0;8242:353:1;97895:98:0;98047:11;98021:23;98032:11;98021:10;:23::i;:::-;:37;;;;:::i;:::-;98008:9;:50;;98000:82;;;;-1:-1:-1;;;98000:82:0;;8975:2:1;98000:82:0;;;8957:21:1;9014:2;8994:18;;;8987:30;-1:-1:-1;;;9033:18:1;;;9026:49;9092:18;;98000:82:0;8773:343:1;98000:82:0;98097:36;74165:10;98121:11;98097:9;:36::i;:::-;97586:553;:::o;25853:218::-;25929:7;25954:16;25962:7;25954;:16::i;:::-;25949:64;;25979:34;;-1:-1:-1;;;25979:34:0;;;;;;;;;;;25949:64;-1:-1:-1;26033:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;26033:30:0;;25853:218::o;25294:400::-;25375:13;25391:16;25399:7;25391;:16::i;:::-;25375:32;-1:-1:-1;74165:10:0;-1:-1:-1;;;;;25424:28:0;;;25420:175;;25472:44;25489:5;74165:10;26876:164;:::i;25472:44::-;25467:128;;25544:35;;-1:-1:-1;;;25544:35:0;;;;;;;;;;;25467:128;25607:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;25607:35:0;-1:-1:-1;;;;;25607:35:0;;;;;;;;;25658:28;;25607:24;;25658:28;;;;;;;25364:330;25294:400;;:::o;98662:100::-;75420:13;:11;:13::i;:::-;98734:9:::1;:22;98746:10:::0;98734:9;:22:::1;:::i;:::-;;98662:100:::0;:::o;15121:323::-;101215:1;15395:12;15182:7;15379:13;:28;-1:-1:-1;;15379:46:0;;15121:323::o;99542:78::-;75420:13;:11;:13::i;:::-;99600:5:::1;:14:::0;99542:78::o;29560:2817::-;29694:27;29724;29743:7;29724:18;:27::i;:::-;29694:57;;29809:4;-1:-1:-1;;;;;29768:45:0;29784:19;-1:-1:-1;;;;;29768:45:0;;29764:86;;29822:28;;-1:-1:-1;;;29822:28:0;;;;;;;;;;;29764:86;29864:27;28674:24;;;:15;:24;;;;;28896:26;;74165:10;28299:30;;;-1:-1:-1;;;;;27992:28:0;;28277:20;;;28274:56;30050:180;;30143:43;30160:4;74165:10;26876:164;:::i;30143:43::-;30138:92;;30195:35;;-1:-1:-1;;;30195:35:0;;;;;;;;;;;30138:92;-1:-1:-1;;;;;30247:16:0;;30243:52;;30272:23;;-1:-1:-1;;;30272:23:0;;;;;;;;;;;30243:52;30444:15;30441:160;;;30584:1;30563:19;30556:30;30441:160;-1:-1:-1;;;;;30981:24:0;;;;;;;:18;:24;;;;;;30979:26;;-1:-1:-1;;30979:26:0;;;31050:22;;;;;;;;;31048:24;;-1:-1:-1;31048:24:0;;;24152:11;24127:23;24123:41;24110:63;-1:-1:-1;;;24110:63:0;31343:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;31638:47:0;;:52;;31634:627;;31743:1;31733:11;;31711:19;31866:30;;;:17;:30;;;;;;:35;;31862:384;;32004:13;;31989:11;:28;31985:242;;32151:30;;;;:17;:30;;;;;:52;;;31985:242;31692:569;31634:627;32308:7;32304:2;-1:-1:-1;;;;;32289:27:0;32298:4;-1:-1:-1;;;;;32289:27:0;;;;;;;;;;;32327:42;29683:2694;;;29560:2817;;;:::o;100022:383::-;100079:7;100142:24;;100127:11;100103:21;100113:10;100103:9;:21::i;:::-;:35;;;;:::i;:::-;:63;;:99;;;;;100185:17;;100170:13;:11;:13::i;:::-;:32;100103:99;100099:144;;;-1:-1:-1;;100224:5:0;;;100022:383::o;100099:144::-;100297:11;;100282;100258:21;100268:10;100258:9;:21::i;:::-;:35;;;;:::i;:::-;:50;;:81;;;;;100328:11;;100312:13;:11;:13::i;:::-;:27;100258:81;100254:123;;;-1:-1:-1;;100360:5:0;;;100022:383::o;100254:123::-;-1:-1:-1;;100394:5:0;;;100022:383::o;99738:277::-;75420:13;:11;:13::i;:::-;99783:7:::1;99804:42;99889:3;99860:26;:21;99884:2;99860:26;:::i;:::-;:32;;;;:::i;:::-;99796:101;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99782:115;;;99912:2;99904:11;;;::::0;::::1;;99923:7;99944;75607:6:::0;;-1:-1:-1;;;;;75607:6:0;;75534:87;99944:7:::1;-1:-1:-1::0;;;;;99936:21:0::1;99965;99936:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99922:69;;;100006:2;99998:11;;;::::0;::::1;99303:147:::0;75420:13;:11;:13::i;:::-;99390:25:::1;:54:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;99390:54:0;;::::1;::::0;;;::::1;::::0;;99303:147::o;32473:185::-;32611:39;32628:4;32634:2;32638:7;32611:39;;;;;;;;;;;;:16;:39::i;:::-;32473:185;;;:::o;98524:132::-;75420:13;:11;:13::i;:::-;98612:17:::1;:38;98632:18:::0;98612:17;:38:::1;:::i;80030:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;98851:154::-;75420:13;:11;:13::i;:::-;98947:24:::1;:52:::0;98851:154::o;20763:152::-;20835:7;20878:27;20897:7;20878:18;:27::i;16305:233::-;16377:7;-1:-1:-1;;;;;16401:19:0;;16397:60;;16429:28;;-1:-1:-1;;;16429:28:0;;;;;;;;;;;16397:60;-1:-1:-1;;;;;;16475:25:0;;;;;:18;:25;;;;;;10464:13;16475:55;;16305:233::o;76182:103::-;75420:13;:11;:13::i;:::-;76247:30:::1;76274:1;76247:18;:30::i;:::-;76182:103::o:0;99011:154::-;75420:13;:11;:13::i;:::-;99107:24:::1;:52:::0;99011:154::o;98147:202::-;75420:13;:11;:13::i;:::-;98267:11:::1;;98252;98236:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:42;;98228:75;;;::::0;-1:-1:-1;;;98228:75:0;;8095:2:1;98228:75:0::1;::::0;::::1;8077:21:1::0;8134:2;8114:18;;;8107:30;-1:-1:-1;;;8153:18:1;;;8146:50;8213:18;;98228:75:0::1;7893:344:1::0;98228:75:0::1;98310:33;98320:9;98331:11;98310:9;:33::i;100409:712::-:0;100470:16;100516:18;100551:16;100561:5;100551:9;:16::i;:::-;100537:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;100537:31:0;;100516:52;;100580:11;100594:14;14863:7;14890:13;;14808:103;100594:14;100580:28;;100619:19;100649:25;100690:9;100685:403;100705:3;100701:1;:7;100685:403;;;100730:31;100764:15;100777:1;100764:12;:15::i;:::-;100730:49;;100798:9;:16;;;100794:65;;;100835:8;;;100794:65;100877:14;;-1:-1:-1;;;;;100877:28:0;;100873:103;;100946:14;;;-1:-1:-1;100873:103:0;101015:5;-1:-1:-1;;;;;100994:26:0;:17;-1:-1:-1;;;;;100994:26:0;;100990:87;;101060:1;101041;101043:13;;;;;;101041:16;;;;;;;;:::i;:::-;;;;;;:20;;;;;100990:87;100715:373;100685:403;100710:3;;100685:403;;;-1:-1:-1;101105:1:0;;100409:712;-1:-1:-1;;;;;100409:712:0:o;19546:104::-;19602:13;19635:7;19628:14;;;;;:::i;26411:308::-;74165:10;-1:-1:-1;;;;;26510:31:0;;;26506:61;;26550:17;;-1:-1:-1;;;26550:17:0;;;;;;;;;;;26506:61;74165:10;26580:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26580:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26580:60:0;;;;;;;;;;26656:55;;725:41:1;;;26580:49:0;;74165:10;26656:55;;698:18:1;26656:55:0;;;;;;;26411:308;;:::o;80068:31::-;;;;;;;:::i;33256:399::-;33423:31;33436:4;33442:2;33446:7;33423:12;:31::i;:::-;-1:-1:-1;;;;;33469:14:0;;;:19;33465:183;;33508:56;33539:4;33545:2;33549:7;33558:5;33508:30;:56::i;:::-;33503:145;;33592:40;;-1:-1:-1;;;33592:40:0;;;;;;;;;;;33503:145;33256:399;;;;:::o;101228:445::-;101302:13;101332:17;101340:8;101332:7;:17::i;:::-;101324:77;;;;-1:-1:-1;;;101324:77:0;;12126:2:1;101324:77:0;;;12108:21:1;12165:2;12145:18;;;12138:30;12204:34;12184:18;;;12177:62;-1:-1:-1;;;12255:18:1;;;12248:45;12310:19;;101324:77:0;11924:411:1;101324:77:0;101414:8;;;;;;;:17;;101426:5;101414:17;101410:64;;101449:17;101442:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101228:445;;;:::o;101410:64::-;101482:28;101513:10;:8;:10::i;:::-;101482:41;;101568:1;101543:14;101537:28;:32;:130;;;;;;;;;;;;;;;;;101605:14;101621:19;:8;:17;:19::i;:::-;101642:9;101588:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;101537:130;101530:137;101228:445;-1:-1:-1;;;101228:445:0:o;98768:77::-;75420:13;:11;:13::i;:::-;98827:4:::1;:12:::0;;-1:-1:-1;;98827:12:0::1;::::0;::::1;;::::0;;;::::1;::::0;;98768:77::o;99171:126::-;75420:13;:11;:13::i;:::-;99253:17:::1;:38:::0;99171:126::o;99456:78::-;75420:13;:11;:13::i;:::-;99514:5:::1;:14:::0;99456:78::o;98355:81::-;75420:13;:11;:13::i;:::-;98413:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;98413:17:0;;::::1;::::0;;;::::1;::::0;;98355:81::o;80008:17::-;;;;;;;:::i;76440:201::-;75420:13;:11;:13::i;:::-;-1:-1:-1;;;;;76529:22:0;::::1;76521:73;;;::::0;-1:-1:-1;;;76521:73:0;;13777:2:1;76521:73:0::1;::::0;::::1;13759:21:1::0;13816:2;13796:18;;;13789:30;13855:34;13835:18;;;13828:62;-1:-1:-1;;;13906:18:1;;;13899:36;13952:19;;76521:73:0::1;13575:402:1::0;76521:73:0::1;76605:28;76624:8;76605:18;:28::i;98442:76::-:0;75420:13;:11;:13::i;:::-;98502:3:::1;:10;98508:4:::0;98502:3;:10:::1;:::i;75699:132::-:0;75607:6;;-1:-1:-1;;;;;75607:6:0;74165:10;75763:23;75755:68;;;;-1:-1:-1;;;75755:68:0;;14184:2:1;75755:68:0;;;14166:21:1;;;14203:18;;;14196:30;14262:34;14242:18;;;14235:62;14314:18;;75755:68:0;13982:356:1;97255:323:0;97320:13;97387:24;;97372:11;97348:21;97358:10;97348:9;:21::i;:::-;:35;;;;:::i;:::-;:63;;:100;;;;;97431:17;;97415:13;:11;:13::i;:::-;:33;97348:100;97344:137;;;-1:-1:-1;;97468:5:0;;;97255:323::o;97344:137::-;97530:11;;97515;97491:21;97501:10;97491:9;:21::i;:::-;:35;;;;:::i;:::-;:50;97487:86;;-1:-1:-1;;97560:5:0;;;97255:323::o;97487:86::-;97255:323;;;:::o;42896:112::-;42973:27;42983:2;42987:8;42973:27;;;;;;;;;;;;:9;:27::i;27298:282::-;27363:4;27419:7;101215:1;27400:26;;:66;;;;;27453:13;;27443:7;:23;27400:66;:153;;;;-1:-1:-1;;27504:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;27504:44:0;:49;;27298:282::o;21918:1275::-;21985:7;22020;;101215:1;22069:23;22065:1061;;22122:13;;22115:4;:20;22111:1015;;;22160:14;22177:23;;;:17;:23;;;;;;;-1:-1:-1;;;22266:24:0;;:29;;22262:845;;22931:113;22938:6;22948:1;22938:11;22931:113;;-1:-1:-1;;;23009:6:0;22991:25;;;;:17;:25;;;;;;22931:113;;22262:845;22137:989;22111:1015;23154:31;;-1:-1:-1;;;23154:31:0;;;;;;;;;;;76801:191;76894:6;;;-1:-1:-1;;;;;76911:17:0;;;-1:-1:-1;;;;;;76911:17:0;;;;;;;76944:40;;76894:6;;;76911:17;76894:6;;76944:40;;76875:16;;76944:40;76864:128;76801:191;:::o;21366:161::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21494:24:0;;;;:17;:24;;;;;;21475:44;;-1:-1:-1;;;;;;;;;;;;;23402:41:0;;;;11123:3;23488:33;;;23454:68;;-1:-1:-1;;;23454:68:0;-1:-1:-1;;;23552:24:0;;:29;;-1:-1:-1;;;23533:48:0;;;;11644:3;23621:28;;;;-1:-1:-1;;;23592:58:0;-1:-1:-1;23292:366:0;35739:716;35923:88;;-1:-1:-1;;;35923:88:0;;35902:4;;-1:-1:-1;;;;;35923:45:0;;;;;:88;;74165:10;;35990:4;;35996:7;;36005:5;;35923:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35923:88:0;;;;;;;;-1:-1:-1;;35923:88:0;;;;;;;;;;;;:::i;:::-;;;35919:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36206:6;:13;36223:1;36206:18;36202:235;;36252:40;;-1:-1:-1;;;36252:40:0;;;;;;;;;;;36202:235;36395:6;36389:13;36380:6;36376:2;36372:15;36365:38;35919:529;-1:-1:-1;;;;;;36082:64:0;-1:-1:-1;;;36082:64:0;;-1:-1:-1;35919:529:0;35739:716;;;;;;:::o;101679:98::-;101739:13;101768:3;101761:10;;;;;:::i;60685:723::-;60741:13;60962:5;60971:1;60962:10;60958:53;;-1:-1:-1;;60989:10:0;;;;;;;;;;;;-1:-1:-1;;;60989:10:0;;;;;60685:723::o;60958:53::-;61036:5;61021:12;61077:78;61084:9;;61077:78;;61110:8;;;;:::i;:::-;;-1:-1:-1;61133:10:0;;-1:-1:-1;61141:2:0;61133:10;;:::i;:::-;;;61077:78;;;61165:19;61197:6;61187:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61187:17:0;;61165:39;;61215:154;61222:10;;61215:154;;61249:11;61259:1;61249:11;;:::i;:::-;;-1:-1:-1;61318:10:0;61326:2;61318:5;:10;:::i;:::-;61305:24;;:2;:24;:::i;:::-;61292:39;;61275:6;61282;61275:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;61275:56:0;;;;;;;;-1:-1:-1;61346:11:0;61355:2;61346:11;;:::i;:::-;;;61215:154;;42123:689;42254:19;42260:2;42264:8;42254:5;:19::i;:::-;-1:-1:-1;;;;;42315:14:0;;;:19;42311:483;;42355:11;42369:13;42417:14;;;42450:233;42481:62;42520:1;42524:2;42528:7;;;;;;42537:5;42481:30;:62::i;:::-;42476:167;;42579:40;;-1:-1:-1;;;42579:40:0;;;;;;;;;;;42476:167;42678:3;42670:5;:11;42450:233;;42765:3;42748:13;;:20;42744:34;;42770:8;;;42744:34;42336:458;;42123:689;;;:::o;36917:2454::-;36990:20;37013:13;;;37041;;;37037:44;;37063:18;;-1:-1:-1;;;37063:18:0;;;;;;;;;;;37037:44;-1:-1:-1;;;;;37569:22:0;;;;;;:18;:22;;;;10602:2;37569:22;;;:71;;37607:32;37595:45;;37569:71;;;37883:31;;;:17;:31;;;;;-1:-1:-1;24583:15:0;;24557:24;24553:46;24152:11;24127:23;24123:41;24120:52;24110:63;;37883:173;;38118:23;;;;37883:31;;37569:22;;38617:25;37569:22;;38470:335;38885:1;38871:12;38867:20;38825:346;38926:3;38917:7;38914:16;38825:346;;39144:7;39134:8;39131:1;39104:25;39101:1;39098;39093:59;38979:1;38966:15;38825:346;;;38829:77;39204:8;39216:1;39204:13;39200:45;;39226:19;;-1:-1:-1;;;39226:19:0;;;;;;;;;;;39200:45;39262:13;:19;-1:-1:-1;32473:185:0;;;:::o;14:180:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;199:131::-;-1:-1:-1;;;;;;273:32:1;;263:43;;253:71;;320:1;317;310:12;335:245;393:6;446:2;434:9;425:7;421:23;417:32;414:52;;;462:1;459;452:12;414:52;501:9;488:23;520:30;544:5;520:30;:::i;777:258::-;849:1;859:113;873:6;870:1;867:13;859:113;;;949:11;;;943:18;930:11;;;923:39;895:2;888:10;859:113;;;990:6;987:1;984:13;981:48;;;-1:-1:-1;;1025:1:1;1007:16;;1000:27;777:258::o;1040:::-;1082:3;1120:5;1114:12;1147:6;1142:3;1135:19;1163:63;1219:6;1212:4;1207:3;1203:14;1196:4;1189:5;1185:16;1163:63;:::i;:::-;1280:2;1259:15;-1:-1:-1;;1255:29:1;1246:39;;;;1287:4;1242:50;;1040:258;-1:-1:-1;;1040:258:1:o;1303:220::-;1452:2;1441:9;1434:21;1415:4;1472:45;1513:2;1502:9;1498:18;1490:6;1472:45;:::i;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1914:254;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:127::-;2234:10;2229:3;2225:20;2222:1;2215:31;2265:4;2262:1;2255:15;2289:4;2286:1;2279:15;2305:632;2370:5;2400:18;2441:2;2433:6;2430:14;2427:40;;;2447:18;;:::i;:::-;2522:2;2516:9;2490:2;2576:15;;-1:-1:-1;;2572:24:1;;;2598:2;2568:33;2564:42;2552:55;;;2622:18;;;2642:22;;;2619:46;2616:72;;;2668:18;;:::i;:::-;2708:10;2704:2;2697:22;2737:6;2728:15;;2767:6;2759;2752:22;2807:3;2798:6;2793:3;2789:16;2786:25;2783:45;;;2824:1;2821;2814:12;2783:45;2874:6;2869:3;2862:4;2854:6;2850:17;2837:44;2929:1;2922:4;2913:6;2905;2901:19;2897:30;2890:41;;;;2305:632;;;;;:::o;2942:451::-;3011:6;3064:2;3052:9;3043:7;3039:23;3035:32;3032:52;;;3080:1;3077;3070:12;3032:52;3120:9;3107:23;3153:18;3145:6;3142:30;3139:50;;;3185:1;3182;3175:12;3139:50;3208:22;;3261:4;3253:13;;3249:27;-1:-1:-1;3239:55:1;;3290:1;3287;3280:12;3239:55;3313:74;3379:7;3374:2;3361:16;3356:2;3352;3348:11;3313:74;:::i;3580:328::-;3657:6;3665;3673;3726:2;3714:9;3705:7;3701:23;3697:32;3694:52;;;3742:1;3739;3732:12;3694:52;3765:29;3784:9;3765:29;:::i;:::-;3755:39;;3813:38;3847:2;3836:9;3832:18;3813:38;:::i;:::-;3803:48;;3898:2;3887:9;3883:18;3870:32;3860:42;;3580:328;;;;;:::o;3913:160::-;3978:20;;4034:13;;4027:21;4017:32;;4007:60;;4063:1;4060;4053:12;4078:180;4134:6;4187:2;4175:9;4166:7;4162:23;4158:32;4155:52;;;4203:1;4200;4193:12;4155:52;4226:26;4242:9;4226:26;:::i;4263:186::-;4322:6;4375:2;4363:9;4354:7;4350:23;4346:32;4343:52;;;4391:1;4388;4381:12;4343:52;4414:29;4433:9;4414:29;:::i;4454:254::-;4522:6;4530;4583:2;4571:9;4562:7;4558:23;4554:32;4551:52;;;4599:1;4596;4589:12;4551:52;4635:9;4622:23;4612:33;;4664:38;4698:2;4687:9;4683:18;4664:38;:::i;:::-;4654:48;;4454:254;;;;;:::o;4713:632::-;4884:2;4936:21;;;5006:13;;4909:18;;;5028:22;;;4855:4;;4884:2;5107:15;;;;5081:2;5066:18;;;4855:4;5150:169;5164:6;5161:1;5158:13;5150:169;;;5225:13;;5213:26;;5294:15;;;;5259:12;;;;5186:1;5179:9;5150:169;;;-1:-1:-1;5336:3:1;;4713:632;-1:-1:-1;;;;;;4713:632:1:o;5350:254::-;5415:6;5423;5476:2;5464:9;5455:7;5451:23;5447:32;5444:52;;;5492:1;5489;5482:12;5444:52;5515:29;5534:9;5515:29;:::i;:::-;5505:39;;5563:35;5594:2;5583:9;5579:18;5563:35;:::i;5609:667::-;5704:6;5712;5720;5728;5781:3;5769:9;5760:7;5756:23;5752:33;5749:53;;;5798:1;5795;5788:12;5749:53;5821:29;5840:9;5821:29;:::i;:::-;5811:39;;5869:38;5903:2;5892:9;5888:18;5869:38;:::i;:::-;5859:48;;5954:2;5943:9;5939:18;5926:32;5916:42;;6009:2;5998:9;5994:18;5981:32;6036:18;6028:6;6025:30;6022:50;;;6068:1;6065;6058:12;6022:50;6091:22;;6144:4;6136:13;;6132:27;-1:-1:-1;6122:55:1;;6173:1;6170;6163:12;6122:55;6196:74;6262:7;6257:2;6244:16;6239:2;6235;6231:11;6196:74;:::i;:::-;6186:84;;;5609:667;;;;;;;:::o;6281:260::-;6349:6;6357;6410:2;6398:9;6389:7;6385:23;6381:32;6378:52;;;6426:1;6423;6416:12;6378:52;6449:29;6468:9;6449:29;:::i;:::-;6439:39;;6497:38;6531:2;6520:9;6516:18;6497:38;:::i;6546:380::-;6625:1;6621:12;;;;6668;;;6689:61;;6743:4;6735:6;6731:17;6721:27;;6689:61;6796:2;6788:6;6785:14;6765:18;6762:38;6759:161;;6842:10;6837:3;6833:20;6830:1;6823:31;6877:4;6874:1;6867:15;6905:4;6902:1;6895:15;6759:161;;6546:380;;;:::o;7628:127::-;7689:10;7684:3;7680:20;7677:1;7670:31;7720:4;7717:1;7710:15;7744:4;7741:1;7734:15;7760:128;7800:3;7831:1;7827:6;7824:1;7821:13;7818:39;;;7837:18;;:::i;:::-;-1:-1:-1;7873:9:1;;7760:128::o;8600:168::-;8640:7;8706:1;8702;8698:6;8694:14;8691:1;8688:21;8683:1;8676:9;8669:17;8665:45;8662:71;;;8713:18;;:::i;:::-;-1:-1:-1;8753:9:1;;8600:168::o;9247:545::-;9349:2;9344:3;9341:11;9338:448;;;9385:1;9410:5;9406:2;9399:17;9455:4;9451:2;9441:19;9525:2;9513:10;9509:19;9506:1;9502:27;9496:4;9492:38;9561:4;9549:10;9546:20;9543:47;;;-1:-1:-1;9584:4:1;9543:47;9639:2;9634:3;9630:12;9627:1;9623:20;9617:4;9613:31;9603:41;;9694:82;9712:2;9705:5;9702:13;9694:82;;;9757:17;;;9738:1;9727:13;9694:82;;9968:1352;10094:3;10088:10;10121:18;10113:6;10110:30;10107:56;;;10143:18;;:::i;:::-;10172:97;10262:6;10222:38;10254:4;10248:11;10222:38;:::i;:::-;10216:4;10172:97;:::i;:::-;10324:4;;10388:2;10377:14;;10405:1;10400:663;;;;11107:1;11124:6;11121:89;;;-1:-1:-1;11176:19:1;;;11170:26;11121:89;-1:-1:-1;;9925:1:1;9921:11;;;9917:24;9913:29;9903:40;9949:1;9945:11;;;9900:57;11223:81;;10370:944;;10400:663;9194:1;9187:14;;;9231:4;9218:18;;-1:-1:-1;;10436:20:1;;;10554:236;10568:7;10565:1;10562:14;10554:236;;;10657:19;;;10651:26;10636:42;;10749:27;;;;10717:1;10705:14;;;;10584:19;;10554:236;;;10558:3;10818:6;10809:7;10806:19;10803:201;;;10879:19;;;10873:26;-1:-1:-1;;10962:1:1;10958:14;;;10974:3;10954:24;10950:37;10946:42;10931:58;10916:74;;10803:201;-1:-1:-1;;;;;11050:1:1;11034:14;;;11030:22;11017:36;;-1:-1:-1;9968:1352:1:o;11325:127::-;11386:10;11381:3;11377:20;11374:1;11367:31;11417:4;11414:1;11407:15;11441:4;11438:1;11431:15;11457:120;11497:1;11523;11513:35;;11528:18;;:::i;:::-;-1:-1:-1;11562:9:1;;11457:120::o;11792:127::-;11853:10;11848:3;11844:20;11841:1;11834:31;11884:4;11881:1;11874:15;11908:4;11905:1;11898:15;12340:1230;12564:3;12602:6;12596:13;12628:4;12641:51;12685:6;12680:3;12675:2;12667:6;12663:15;12641:51;:::i;:::-;12755:13;;12714:16;;;;12777:55;12755:13;12714:16;12799:15;;;12777:55;:::i;:::-;12921:13;;12854:20;;;12894:1;;12959:36;12921:13;12959:36;:::i;:::-;13014:1;13031:18;;;13058:141;;;;13213:1;13208:337;;;;13024:521;;13058:141;-1:-1:-1;;13093:24:1;;13079:39;;13170:16;;13163:24;13149:39;;13138:51;;;-1:-1:-1;13058:141:1;;13208:337;13239:6;13236:1;13229:17;13287:2;13284:1;13274:16;13312:1;13326:169;13340:8;13337:1;13334:15;13326:169;;;13422:14;;13407:13;;;13400:37;13465:16;;;;13357:10;;13326:169;;;13330:3;;13526:8;13519:5;13515:20;13508:27;;13024:521;-1:-1:-1;13561:3:1;;12340:1230;-1:-1:-1;;;;;;;;;;12340:1230:1:o;14343:489::-;-1:-1:-1;;;;;14612:15:1;;;14594:34;;14664:15;;14659:2;14644:18;;14637:43;14711:2;14696:18;;14689:34;;;14759:3;14754:2;14739:18;;14732:31;;;14537:4;;14780:46;;14806:19;;14798:6;14780:46;:::i;:::-;14772:54;14343:489;-1:-1:-1;;;;;;14343:489:1:o;14837:249::-;14906:6;14959:2;14947:9;14938:7;14934:23;14930:32;14927:52;;;14975:1;14972;14965:12;14927:52;15007:9;15001:16;15026:30;15050:5;15026:30;:::i;15091:135::-;15130:3;15151:17;;;15148:43;;15171:18;;:::i;:::-;-1:-1:-1;15218:1:1;15207:13;;15091:135::o;15231:125::-;15271:4;15299:1;15296;15293:8;15290:34;;;15304:18;;:::i;:::-;-1:-1:-1;15341:9:1;;15231:125::o;15361:112::-;15393:1;15419;15409:35;;15424:18;;:::i;:::-;-1:-1:-1;15458:9:1;;15361:112::o
Swarm Source
ipfs://819b6b31ad0caeb0817601c39414b4bd3289d70006b05f1392c6164c02b646c6
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.