Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
5,000 SLIME
Holders
641
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 SLIMELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Slime
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-31 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @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); } } // File: IERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ 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(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * 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(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 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`. * * 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 calldata data ) external; /** * @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 ) external; /** * @dev Transfers `tokenId` token 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); } // File: ERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // 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 tokenId of the next token 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` 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 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @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 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 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 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 returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ 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: 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. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (_addressToUint256(owner) == 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 auxillary 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 auxillary 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 { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * 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 ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * 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; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ 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, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, 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. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @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. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); address approvedAddress = _tokenApprovals[tokenId]; bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (_addressToUint256(to) == 0) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // 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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // 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 `_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)); address approvedAddress = _tokenApprovals[tokenId]; if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // 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] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // 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++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool 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)) } } } } /** * @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 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 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. 48 is the ASCII index of '0'. 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: @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 v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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: elftown.sol pragma solidity ^0.8.4; error AddressNotAllowlistVerified(); contract Slime is Ownable, ERC721A { uint256 public immutable maxPerAddressDuringMint; uint256 public immutable collectionSize; uint256 public immutable freeMintSize; uint256 public immutable amountForDevs; struct SaleConfig { uint32 publicSaleStartTime; uint64 publicPriceWei; } SaleConfig public saleConfig; // metadata URI string private _baseTokenURI; constructor( uint256 maxBatchSize_, uint256 collectionSize_, uint256 amountForDevs_, uint256 freeMintSize_ ) ERC721A("Slime", "SLIME") { require( maxBatchSize_ < collectionSize_, "MaxBarchSize should be smaller than collectionSize" ); maxPerAddressDuringMint = maxBatchSize_; collectionSize = collectionSize_; freeMintSize = freeMintSize_; amountForDevs = amountForDevs_; } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } function devMint(uint256 quantity) external onlyOwner { require( quantity <= amountForDevs, "Too many already minted before dev mint" ); require( totalSupply() + quantity <= collectionSize, "Reached max supply" ); _safeMint(msg.sender, quantity); } // Public Mint // ***************************************************************************** // Public Functions function mint(uint256 quantity) external payable callerIsUser { require(isPublicSaleOn(), "Public sale has not begun yet"); require( totalSupply() + quantity <= collectionSize, "Reached max supply" ); require( numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint, "Reached max quantity that one wallet can mint" ); uint256 priceWei = 0; if ((totalSupply() + quantity > freeMintSize)){ if(totalSupply() + quantity - freeMintSize > quantity){ priceWei = quantity * saleConfig.publicPriceWei; } else{ priceWei = (totalSupply() + quantity - freeMintSize) * saleConfig.publicPriceWei; } } _safeMint(msg.sender, quantity); refundIfOver(priceWei); } function isPublicSaleOn() public view returns (bool) { require( saleConfig.publicSaleStartTime != 0, "Public Sale Time TBD..." ); return block.timestamp >= saleConfig.publicSaleStartTime; } // Owner Controls // Public Views // ***************************************************************************** function numberMinted(address minter) public view returns (uint256) { return _numberMinted(minter); } // Contract Controls (onlyOwner) // ***************************************************************************** function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function withdrawMoney() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function setupNonAuctionSaleInfo( uint64 publicPriceWei, uint32 publicSaleStartTime ) public onlyOwner { saleConfig = SaleConfig( publicSaleStartTime, publicPriceWei ); } // Internal Functions // ***************************************************************************** function refundIfOver(uint256 price) internal { require(msg.value >= price, "Need to send more ETH."); if (msg.value > price) { payable(msg.sender).transfer(msg.value - price); } } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"amountForDevs_","type":"uint256"},{"internalType":"uint256","name":"freeMintSize_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"amountForDevs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"},{"internalType":"uint64","name":"publicPriceWei","type":"uint64"}],"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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"publicPriceWei","type":"uint64"},{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"}],"name":"setupNonAuctionSaleInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101006040523480156200001257600080fd5b5060405162001f6538038062001f65833981016040819052620000359162000242565b60405180604001604052806005815260200164536c696d6560d81b81525060405180604001604052806005815260200164534c494d4560d81b8152506200008b620000856200014860201b60201c565b6200014c565b8151620000a09060039060208501906200019c565b508051620000b69060049060208401906200019c565b50600060015550508284106200012d5760405162461bcd60e51b815260206004820152603260248201527f4d6178426172636853697a652073686f756c6420626520736d616c6c6572207460448201527168616e20636f6c6c656374696f6e53697a6560701b606482015260840160405180910390fd5b60809390935260a09190915260c09190915260e052620002b5565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001aa9062000278565b90600052602060002090601f016020900481019282620001ce576000855562000219565b82601f10620001e957805160ff191683800117855562000219565b8280016001018555821562000219579182015b8281111562000219578251825591602001919060010190620001fc565b50620002279291506200022b565b5090565b5b808211156200022757600081556001016200022c565b6000806000806080858703121562000258578384fd5b505082516020840151604085015160609095015191969095509092509050565b600181811c908216806200028d57607f821691505b60208210811415620002af57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e051611c4562000320600039600081816105ed015261084f01526000818161047301528181610c6101528181610ca10152610d25015260008181610322015281816108cf0152610b4a0152600081816103cb0152610bc60152611c456000f3fe6080604052600436106101c25760003560e01c80638bc35c2f116100f7578063ac44600211610095578063dc33e68111610064578063dc33e68114610552578063e985e9c514610572578063f2fde38b146105bb578063fbe1aa51146105db57600080fd5b8063ac446002146104dd578063b88d4fde146104f2578063c6ded24a14610512578063c87b56dd1461053257600080fd5b8063943578af116100d1578063943578af1461046157806395d89b4114610495578063a0712d68146104aa578063a22cb465146104bd57600080fd5b80638bc35c2f146103b95780638da5cb5b146103ed57806390aa0b0f1461040b57600080fd5b80633f5e47411161016457806355f804b31161013e57806355f804b3146103445780636352211e1461036457806370a0823114610384578063715018a6146103a457600080fd5b80633f5e4741146102db57806342842e0e146102f057806345c0f5331461031057600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd1461029b578063375a069a146102bb57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e236600461193a565b61060f565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610661565b6040516101f39190611ad0565b34801561022a57600080fd5b5061023e6102393660046119df565b6106f3565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611911565b610737565b005b34801561028457600080fd5b50600254600154035b6040519081526020016101f3565b3480156102a757600080fd5b506102766102b63660046117c7565b61080a565b3480156102c757600080fd5b506102766102d63660046119df565b61081a565b3480156102e757600080fd5b506101e7610956565b3480156102fc57600080fd5b5061027661030b3660046117c7565b6109be565b34801561031c57600080fd5b5061028d7f000000000000000000000000000000000000000000000000000000000000000081565b34801561035057600080fd5b5061027661035f366004611972565b6109d9565b34801561037057600080fd5b5061023e61037f3660046119df565b610a0f565b34801561039057600080fd5b5061028d61039f36600461177b565b610a1a565b3480156103b057600080fd5b50610276610a60565b3480156103c557600080fd5b5061028d7f000000000000000000000000000000000000000000000000000000000000000081565b3480156103f957600080fd5b506000546001600160a01b031661023e565b34801561041757600080fd5b5060095461043c9063ffffffff811690640100000000900467ffffffffffffffff1682565b6040805163ffffffff909316835267ffffffffffffffff9091166020830152016101f3565b34801561046d57600080fd5b5061028d7f000000000000000000000000000000000000000000000000000000000000000081565b3480156104a157600080fd5b50610211610a96565b6102766104b83660046119df565b610aa5565b3480156104c957600080fd5b506102766104d83660046118d7565b610d8a565b3480156104e957600080fd5b50610276610e20565b3480156104fe57600080fd5b5061027661050d366004611802565b610ed5565b34801561051e57600080fd5b5061027661052d3660046119f7565b610f1f565b34801561053e57600080fd5b5061021161054d3660046119df565b610f98565b34801561055e57600080fd5b5061028d61056d36600461177b565b61101d565b34801561057e57600080fd5b506101e761058d366004611795565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156105c757600080fd5b506102766105d636600461177b565b611048565b3480156105e757600080fd5b5061028d7f000000000000000000000000000000000000000000000000000000000000000081565b60006301ffc9a760e01b6001600160e01b03198316148061064057506380ac58cd60e01b6001600160e01b03198316145b8061065b5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461067090611b92565b80601f016020809104026020016040519081016040528092919081815260200182805461069c90611b92565b80156106e95780601f106106be576101008083540402835291602001916106e9565b820191906000526020600020905b8154815290600101906020018083116106cc57829003601f168201915b5050505050905090565b60006106fe826110e0565b61071b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061074282611108565b9050806001600160a01b0316836001600160a01b031614156107775760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107ae57610791813361058d565b6107ae576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610815838383611169565b505050565b6000546001600160a01b0316331461084d5760405162461bcd60e51b815260040161084490611ae3565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008111156108cd5760405162461bcd60e51b815260206004820152602760248201527f546f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b6064820152608401610844565b7f0000000000000000000000000000000000000000000000000000000000000000816108fc6002546001540390565b6109069190611b18565b11156109495760405162461bcd60e51b815260206004820152601260248201527152656163686564206d617820737570706c7960701b6044820152606401610844565b6109533382611319565b50565b60095460009063ffffffff166109ae5760405162461bcd60e51b815260206004820152601760248201527f5075626c69632053616c652054696d65205442442e2e2e0000000000000000006044820152606401610844565b5060095463ffffffff1642101590565b61081583838360405180602001604052806000815250610ed5565b6000546001600160a01b03163314610a035760405162461bcd60e51b815260040161084490611ae3565b610815600a83836116c6565b600061065b82611108565b600081610a3a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610a8a5760405162461bcd60e51b815260040161084490611ae3565b610a946000611333565b565b60606004805461067090611b92565b323314610af45760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610844565b610afc610956565b610b485760405162461bcd60e51b815260206004820152601d60248201527f5075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610844565b7f000000000000000000000000000000000000000000000000000000000000000081610b776002546001540390565b610b819190611b18565b1115610bc45760405162461bcd60e51b815260206004820152601260248201527152656163686564206d617820737570706c7960701b6044820152606401610844565b7f000000000000000000000000000000000000000000000000000000000000000081610bef3361101d565b610bf99190611b18565b1115610c5d5760405162461bcd60e51b815260206004820152602d60248201527f52656163686564206d6178207175616e746974792074686174206f6e6520776160448201526c1b1b195d0818d85b881b5a5b9d609a1b6064820152608401610844565b60007f000000000000000000000000000000000000000000000000000000000000000082610c8e6002546001540390565b610c989190611b18565b1115610d7357817f000000000000000000000000000000000000000000000000000000000000000083610cce6002546001540390565b610cd89190611b18565b610ce29190611b4f565b1115610d0e57600954610d0790640100000000900467ffffffffffffffff1683611b30565b9050610d73565b600954640100000000900467ffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000083610d526002546001540390565b610d5c9190611b18565b610d669190611b4f565b610d709190611b30565b90505b610d7d3383611319565b610d8681611383565b5050565b6001600160a01b038216331415610db45760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610e4a5760405162461bcd60e51b815260040161084490611ae3565b604051600090339047908381818185875af1925050503d8060008114610e8c576040519150601f19603f3d011682016040523d82523d6000602084013e610e91565b606091505b50509050806109535760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610844565b610ee0848484611169565b6001600160a01b0383163b15610f1957610efc8484848461140a565b610f19576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b03163314610f495760405162461bcd60e51b815260040161084490611ae3565b6040805180820190915263ffffffff90911680825267ffffffffffffffff9092166020909101819052600980546401000000009092026bffffffffffffffffffffffff19909216909217179055565b6060610fa3826110e0565b610fc057604051630a14c4b560e41b815260040160405180910390fd5b6000610fca611501565b9050805160001415610feb5760405180602001604052806000815250611016565b80610ff584611510565b604051602001611006929190611a64565b6040516020818303038152906040525b9392505050565b6001600160a01b0381166000908152600660205260408082205467ffffffffffffffff911c1661065b565b6000546001600160a01b031633146110725760405162461bcd60e51b815260040161084490611ae3565b6001600160a01b0381166110d75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610844565b61095381611333565b60006001548210801561065b575050600090815260056020526040902054600160e01b161590565b60008160015481101561115057600081815260056020526040902054600160e01b811661114e575b80611016575060001901600081815260056020526040902054611130565b505b604051636f96cda160e11b815260040160405180910390fd5b600061117482611108565b9050836001600160a01b0316816001600160a01b0316146111a75760405162a1148160e81b815260040160405180910390fd5b6000828152600760205260408120546001600160a01b03908116919086163314806111d757506111d7863361058d565b806111ea57506001600160a01b03821633145b90508061120a57604051632ce44b5f60e11b815260040160405180910390fd5b8461122857604051633a954ecd60e21b815260040160405180910390fd5b811561124b57600084815260076020526040902080546001600160a01b03191690555b6001600160a01b03868116600090815260066020908152604080832080546000190190559288168252828220805460010190558682526005905220600160e11b4260a01b8717811790915583166112d057600184016000818152600560205260409020546112ce5760015481146112ce5760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610d8682826040518060200160405280600081525061155f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b803410156113cc5760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610844565b8034111561095357336108fc6113e28334611b4f565b6040518115909202916000818181858888f19350505050158015610d86573d6000803e3d6000fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061143f903390899088908890600401611a93565b602060405180830381600087803b15801561145957600080fd5b505af1925050508015611489575060408051601f3d908101601f1916820190925261148691810190611956565b60015b6114e4573d8080156114b7576040519150601f19603f3d011682016040523d82523d6000602084013e6114bc565b606091505b5080516114dc576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600a805461067090611b92565b604080516080810191829052607f0190826030600a8206018353600a90045b801561154d57600183039250600a81066030018353600a900461152f565b50819003601f19909101908152919050565b6001548361157f57604051622e076360e81b815260040160405180910390fd5b8261159d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b15611672575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461163b600087848060010195508761140a565b611658576040516368d2bf6b60e11b815260040160405180910390fd5b8082106115f057826001541461166d57600080fd5b6116b7565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611673575b50600155610f19600085838684565b8280546116d290611b92565b90600052602060002090601f0160209004810192826116f4576000855561173a565b82601f1061170d5782800160ff1982351617855561173a565b8280016001018555821561173a579182015b8281111561173a57823582559160200191906001019061171f565b5061174692915061174a565b5090565b5b80821115611746576000815560010161174b565b80356001600160a01b038116811461177657600080fd5b919050565b60006020828403121561178c578081fd5b6110168261175f565b600080604083850312156117a7578081fd5b6117b08361175f565b91506117be6020840161175f565b90509250929050565b6000806000606084860312156117db578081fd5b6117e48461175f565b92506117f26020850161175f565b9150604084013590509250925092565b60008060008060808587031215611817578081fd5b6118208561175f565b935061182e6020860161175f565b925060408501359150606085013567ffffffffffffffff80821115611851578283fd5b818701915087601f830112611864578283fd5b81358181111561187657611876611be3565b604051601f8201601f19908116603f0116810190838211818310171561189e5761189e611be3565b816040528281528a60208487010111156118b6578586fd5b82602086016020830137918201602001949094529598949750929550505050565b600080604083850312156118e9578182fd5b6118f28361175f565b915060208301358015158114611906578182fd5b809150509250929050565b60008060408385031215611923578182fd5b61192c8361175f565b946020939093013593505050565b60006020828403121561194b578081fd5b813561101681611bf9565b600060208284031215611967578081fd5b815161101681611bf9565b60008060208385031215611984578182fd5b823567ffffffffffffffff8082111561199b578384fd5b818501915085601f8301126119ae578384fd5b8135818111156119bc578485fd5b8660208285010111156119cd578485fd5b60209290920196919550909350505050565b6000602082840312156119f0578081fd5b5035919050565b60008060408385031215611a09578182fd5b823567ffffffffffffffff81168114611a20578283fd5b9150602083013563ffffffff81168114611906578182fd5b60008151808452611a50816020860160208601611b66565b601f01601f19169290920160200192915050565b60008351611a76818460208801611b66565b835190830190611a8a818360208801611b66565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ac690830184611a38565b9695505050505050565b6020815260006110166020830184611a38565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611b2b57611b2b611bcd565b500190565b6000816000190483118215151615611b4a57611b4a611bcd565b500290565b600082821015611b6157611b61611bcd565b500390565b60005b83811015611b81578181015183820152602001611b69565b83811115610f195750506000910152565b600181811c90821680611ba657607f821691505b60208210811415611bc757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461095357600080fdfea2646970667358221220bde9d0959f9a7ec70b617991ff1d8c09f11139a715030079b43ea181299ab29564736f6c63430008040033000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000001388000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000005dc
Deployed Bytecode
0x6080604052600436106101c25760003560e01c80638bc35c2f116100f7578063ac44600211610095578063dc33e68111610064578063dc33e68114610552578063e985e9c514610572578063f2fde38b146105bb578063fbe1aa51146105db57600080fd5b8063ac446002146104dd578063b88d4fde146104f2578063c6ded24a14610512578063c87b56dd1461053257600080fd5b8063943578af116100d1578063943578af1461046157806395d89b4114610495578063a0712d68146104aa578063a22cb465146104bd57600080fd5b80638bc35c2f146103b95780638da5cb5b146103ed57806390aa0b0f1461040b57600080fd5b80633f5e47411161016457806355f804b31161013e57806355f804b3146103445780636352211e1461036457806370a0823114610384578063715018a6146103a457600080fd5b80633f5e4741146102db57806342842e0e146102f057806345c0f5331461031057600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd1461029b578063375a069a146102bb57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e236600461193a565b61060f565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610661565b6040516101f39190611ad0565b34801561022a57600080fd5b5061023e6102393660046119df565b6106f3565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611911565b610737565b005b34801561028457600080fd5b50600254600154035b6040519081526020016101f3565b3480156102a757600080fd5b506102766102b63660046117c7565b61080a565b3480156102c757600080fd5b506102766102d63660046119df565b61081a565b3480156102e757600080fd5b506101e7610956565b3480156102fc57600080fd5b5061027661030b3660046117c7565b6109be565b34801561031c57600080fd5b5061028d7f000000000000000000000000000000000000000000000000000000000000138881565b34801561035057600080fd5b5061027661035f366004611972565b6109d9565b34801561037057600080fd5b5061023e61037f3660046119df565b610a0f565b34801561039057600080fd5b5061028d61039f36600461177b565b610a1a565b3480156103b057600080fd5b50610276610a60565b3480156103c557600080fd5b5061028d7f000000000000000000000000000000000000000000000000000000000000000a81565b3480156103f957600080fd5b506000546001600160a01b031661023e565b34801561041757600080fd5b5060095461043c9063ffffffff811690640100000000900467ffffffffffffffff1682565b6040805163ffffffff909316835267ffffffffffffffff9091166020830152016101f3565b34801561046d57600080fd5b5061028d7f00000000000000000000000000000000000000000000000000000000000005dc81565b3480156104a157600080fd5b50610211610a96565b6102766104b83660046119df565b610aa5565b3480156104c957600080fd5b506102766104d83660046118d7565b610d8a565b3480156104e957600080fd5b50610276610e20565b3480156104fe57600080fd5b5061027661050d366004611802565b610ed5565b34801561051e57600080fd5b5061027661052d3660046119f7565b610f1f565b34801561053e57600080fd5b5061021161054d3660046119df565b610f98565b34801561055e57600080fd5b5061028d61056d36600461177b565b61101d565b34801561057e57600080fd5b506101e761058d366004611795565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156105c757600080fd5b506102766105d636600461177b565b611048565b3480156105e757600080fd5b5061028d7f000000000000000000000000000000000000000000000000000000000000003281565b60006301ffc9a760e01b6001600160e01b03198316148061064057506380ac58cd60e01b6001600160e01b03198316145b8061065b5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461067090611b92565b80601f016020809104026020016040519081016040528092919081815260200182805461069c90611b92565b80156106e95780601f106106be576101008083540402835291602001916106e9565b820191906000526020600020905b8154815290600101906020018083116106cc57829003601f168201915b5050505050905090565b60006106fe826110e0565b61071b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061074282611108565b9050806001600160a01b0316836001600160a01b031614156107775760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107ae57610791813361058d565b6107ae576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610815838383611169565b505050565b6000546001600160a01b0316331461084d5760405162461bcd60e51b815260040161084490611ae3565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000328111156108cd5760405162461bcd60e51b815260206004820152602760248201527f546f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b6064820152608401610844565b7f0000000000000000000000000000000000000000000000000000000000001388816108fc6002546001540390565b6109069190611b18565b11156109495760405162461bcd60e51b815260206004820152601260248201527152656163686564206d617820737570706c7960701b6044820152606401610844565b6109533382611319565b50565b60095460009063ffffffff166109ae5760405162461bcd60e51b815260206004820152601760248201527f5075626c69632053616c652054696d65205442442e2e2e0000000000000000006044820152606401610844565b5060095463ffffffff1642101590565b61081583838360405180602001604052806000815250610ed5565b6000546001600160a01b03163314610a035760405162461bcd60e51b815260040161084490611ae3565b610815600a83836116c6565b600061065b82611108565b600081610a3a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610a8a5760405162461bcd60e51b815260040161084490611ae3565b610a946000611333565b565b60606004805461067090611b92565b323314610af45760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610844565b610afc610956565b610b485760405162461bcd60e51b815260206004820152601d60248201527f5075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610844565b7f000000000000000000000000000000000000000000000000000000000000138881610b776002546001540390565b610b819190611b18565b1115610bc45760405162461bcd60e51b815260206004820152601260248201527152656163686564206d617820737570706c7960701b6044820152606401610844565b7f000000000000000000000000000000000000000000000000000000000000000a81610bef3361101d565b610bf99190611b18565b1115610c5d5760405162461bcd60e51b815260206004820152602d60248201527f52656163686564206d6178207175616e746974792074686174206f6e6520776160448201526c1b1b195d0818d85b881b5a5b9d609a1b6064820152608401610844565b60007f00000000000000000000000000000000000000000000000000000000000005dc82610c8e6002546001540390565b610c989190611b18565b1115610d7357817f00000000000000000000000000000000000000000000000000000000000005dc83610cce6002546001540390565b610cd89190611b18565b610ce29190611b4f565b1115610d0e57600954610d0790640100000000900467ffffffffffffffff1683611b30565b9050610d73565b600954640100000000900467ffffffffffffffff167f00000000000000000000000000000000000000000000000000000000000005dc83610d526002546001540390565b610d5c9190611b18565b610d669190611b4f565b610d709190611b30565b90505b610d7d3383611319565b610d8681611383565b5050565b6001600160a01b038216331415610db45760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610e4a5760405162461bcd60e51b815260040161084490611ae3565b604051600090339047908381818185875af1925050503d8060008114610e8c576040519150601f19603f3d011682016040523d82523d6000602084013e610e91565b606091505b50509050806109535760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610844565b610ee0848484611169565b6001600160a01b0383163b15610f1957610efc8484848461140a565b610f19576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b03163314610f495760405162461bcd60e51b815260040161084490611ae3565b6040805180820190915263ffffffff90911680825267ffffffffffffffff9092166020909101819052600980546401000000009092026bffffffffffffffffffffffff19909216909217179055565b6060610fa3826110e0565b610fc057604051630a14c4b560e41b815260040160405180910390fd5b6000610fca611501565b9050805160001415610feb5760405180602001604052806000815250611016565b80610ff584611510565b604051602001611006929190611a64565b6040516020818303038152906040525b9392505050565b6001600160a01b0381166000908152600660205260408082205467ffffffffffffffff911c1661065b565b6000546001600160a01b031633146110725760405162461bcd60e51b815260040161084490611ae3565b6001600160a01b0381166110d75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610844565b61095381611333565b60006001548210801561065b575050600090815260056020526040902054600160e01b161590565b60008160015481101561115057600081815260056020526040902054600160e01b811661114e575b80611016575060001901600081815260056020526040902054611130565b505b604051636f96cda160e11b815260040160405180910390fd5b600061117482611108565b9050836001600160a01b0316816001600160a01b0316146111a75760405162a1148160e81b815260040160405180910390fd5b6000828152600760205260408120546001600160a01b03908116919086163314806111d757506111d7863361058d565b806111ea57506001600160a01b03821633145b90508061120a57604051632ce44b5f60e11b815260040160405180910390fd5b8461122857604051633a954ecd60e21b815260040160405180910390fd5b811561124b57600084815260076020526040902080546001600160a01b03191690555b6001600160a01b03868116600090815260066020908152604080832080546000190190559288168252828220805460010190558682526005905220600160e11b4260a01b8717811790915583166112d057600184016000818152600560205260409020546112ce5760015481146112ce5760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610d8682826040518060200160405280600081525061155f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b803410156113cc5760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610844565b8034111561095357336108fc6113e28334611b4f565b6040518115909202916000818181858888f19350505050158015610d86573d6000803e3d6000fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061143f903390899088908890600401611a93565b602060405180830381600087803b15801561145957600080fd5b505af1925050508015611489575060408051601f3d908101601f1916820190925261148691810190611956565b60015b6114e4573d8080156114b7576040519150601f19603f3d011682016040523d82523d6000602084013e6114bc565b606091505b5080516114dc576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600a805461067090611b92565b604080516080810191829052607f0190826030600a8206018353600a90045b801561154d57600183039250600a81066030018353600a900461152f565b50819003601f19909101908152919050565b6001548361157f57604051622e076360e81b815260040160405180910390fd5b8261159d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b15611672575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461163b600087848060010195508761140a565b611658576040516368d2bf6b60e11b815260040160405180910390fd5b8082106115f057826001541461166d57600080fd5b6116b7565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611673575b50600155610f19600085838684565b8280546116d290611b92565b90600052602060002090601f0160209004810192826116f4576000855561173a565b82601f1061170d5782800160ff1982351617855561173a565b8280016001018555821561173a579182015b8281111561173a57823582559160200191906001019061171f565b5061174692915061174a565b5090565b5b80821115611746576000815560010161174b565b80356001600160a01b038116811461177657600080fd5b919050565b60006020828403121561178c578081fd5b6110168261175f565b600080604083850312156117a7578081fd5b6117b08361175f565b91506117be6020840161175f565b90509250929050565b6000806000606084860312156117db578081fd5b6117e48461175f565b92506117f26020850161175f565b9150604084013590509250925092565b60008060008060808587031215611817578081fd5b6118208561175f565b935061182e6020860161175f565b925060408501359150606085013567ffffffffffffffff80821115611851578283fd5b818701915087601f830112611864578283fd5b81358181111561187657611876611be3565b604051601f8201601f19908116603f0116810190838211818310171561189e5761189e611be3565b816040528281528a60208487010111156118b6578586fd5b82602086016020830137918201602001949094529598949750929550505050565b600080604083850312156118e9578182fd5b6118f28361175f565b915060208301358015158114611906578182fd5b809150509250929050565b60008060408385031215611923578182fd5b61192c8361175f565b946020939093013593505050565b60006020828403121561194b578081fd5b813561101681611bf9565b600060208284031215611967578081fd5b815161101681611bf9565b60008060208385031215611984578182fd5b823567ffffffffffffffff8082111561199b578384fd5b818501915085601f8301126119ae578384fd5b8135818111156119bc578485fd5b8660208285010111156119cd578485fd5b60209290920196919550909350505050565b6000602082840312156119f0578081fd5b5035919050565b60008060408385031215611a09578182fd5b823567ffffffffffffffff81168114611a20578283fd5b9150602083013563ffffffff81168114611906578182fd5b60008151808452611a50816020860160208601611b66565b601f01601f19169290920160200192915050565b60008351611a76818460208801611b66565b835190830190611a8a818360208801611b66565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ac690830184611a38565b9695505050505050565b6020815260006110166020830184611a38565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611b2b57611b2b611bcd565b500190565b6000816000190483118215151615611b4a57611b4a611bcd565b500290565b600082821015611b6157611b61611bcd565b500390565b60005b83811015611b81578181015183820152602001611b69565b83811115610f195750506000910152565b600181811c90821680611ba657607f821691505b60208210811415611bc757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461095357600080fdfea2646970667358221220bde9d0959f9a7ec70b617991ff1d8c09f11139a715030079b43ea181299ab29564736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000001388000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000005dc
-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 10
Arg [1] : collectionSize_ (uint256): 5000
Arg [2] : amountForDevs_ (uint256): 50
Arg [3] : freeMintSize_ (uint256): 1500
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001388
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [3] : 00000000000000000000000000000000000000000000000000000000000005dc
Deployed Bytecode Sourcemap
44228:4138:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15153:615;;;;;;;;;;-1:-1:-1;15153:615:0;;;;;:::i;:::-;;:::i;:::-;;;6510:14:1;;6503:22;6485:41;;6473:2;6458:18;15153:615:0;;;;;;;;20176:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22244:204::-;;;;;;;;;;-1:-1:-1;22244:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5808:32:1;;;5790:51;;5778:2;5763:18;22244:204:0;5745:102:1;21704:474:0;;;;;;;;;;-1:-1:-1;21704:474:0;;;;;:::i;:::-;;:::i;:::-;;14207:315;;;;;;;;;;-1:-1:-1;14473:12:0;;14457:13;;:28;14207:315;;;10609:25:1;;;10597:2;10582:18;14207:315:0;10564:76:1;23130:170:0;;;;;;;;;;-1:-1:-1;23130:170:0;;;;;:::i;:::-;;:::i;45300:350::-;;;;;;;;;;-1:-1:-1;45300:350:0;;;;;:::i;:::-;;:::i;46714:249::-;;;;;;;;;;;;;:::i;23371:185::-;;;;;;;;;;-1:-1:-1;23371:185:0;;;;;:::i;:::-;;:::i;44325:39::-;;;;;;;;;;;;;;;47350:106;;;;;;;;;;-1:-1:-1;47350:106:0;;;;;:::i;:::-;;:::i;19965:144::-;;;;;;;;;;-1:-1:-1;19965:144:0;;;;;:::i;:::-;;:::i;15832:234::-;;;;;;;;;;-1:-1:-1;15832:234:0;;;;;:::i;:::-;;:::i;43310:103::-;;;;;;;;;;;;;:::i;44270:48::-;;;;;;;;;;;;;;;42659:87;;;;;;;;;;-1:-1:-1;42705:7:0;42732:6;-1:-1:-1;;;;;42732:6:0;42659:87;;44569:28;;;;;;;;;;-1:-1:-1;44569:28:0;;;;;;;;;;;;;;;;;;;10845:10:1;10833:23;;;10815:42;;10905:18;10893:31;;;10888:2;10873:18;;10866:59;10788:18;44569:28:0;10770:161:1;44371:37:0;;;;;;;;;;;;;;;20345:104;;;;;;;;;;;;;:::i;45787:919::-;;;;;;:::i;:::-;;:::i;22520:308::-;;;;;;;;;;-1:-1:-1;22520:308:0;;;;;:::i;:::-;;:::i;47464:178::-;;;;;;;;;;;;;:::i;23627:396::-;;;;;;;;;;-1:-1:-1;23627:396:0;;;;;:::i;:::-;;:::i;47650:242::-;;;;;;;;;;-1:-1:-1;47650:242:0;;;;;:::i;:::-;;:::i;20520:318::-;;;;;;;;;;-1:-1:-1;20520:318:0;;;;;:::i;:::-;;:::i;47103:115::-;;;;;;;;;;-1:-1:-1;47103:115:0;;;;;:::i;:::-;;:::i;22899:164::-;;;;;;;;;;-1:-1:-1;22899:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23020:25:0;;;22996:4;23020:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22899:164;43568:201;;;;;;;;;;-1:-1:-1;43568:201:0;;;;;:::i;:::-;;:::i;44415:38::-;;;;;;;;;;;;;;;15153:615;15238:4;-1:-1:-1;;;;;;;;;15538:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;15615:25:0;;;15538:102;:179;;;-1:-1:-1;;;;;;;;;;15692:25:0;;;15538:179;15518:199;15153:615;-1:-1:-1;;15153:615:0:o;20176:100::-;20230:13;20263:5;20256:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20176:100;:::o;22244:204::-;22312:7;22337:16;22345:7;22337;:16::i;:::-;22332:64;;22362:34;;-1:-1:-1;;;22362:34:0;;;;;;;;;;;22332:64;-1:-1:-1;22416:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22416:24:0;;22244:204::o;21704:474::-;21777:13;21809:27;21828:7;21809:18;:27::i;:::-;21777:61;;21859:5;-1:-1:-1;;;;;21853:11:0;:2;-1:-1:-1;;;;;21853:11:0;;21849:48;;;21873:24;;-1:-1:-1;;;21873:24:0;;;;;;;;;;;21849:48;38632:10;-1:-1:-1;;;;;21914:28:0;;;21910:175;;21962:44;21979:5;38632:10;22899:164;:::i;21962:44::-;21957:128;;22034:35;;-1:-1:-1;;;22034:35:0;;;;;;;;;;;21957:128;22097:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;22097:29:0;-1:-1:-1;;;;;22097:29:0;;;;;;;;;22142:28;;22097:24;;22142:28;;;;;;;21704:474;;;:::o;23130:170::-;23264:28;23274:4;23280:2;23284:7;23264:9;:28::i;:::-;23130:170;;;:::o;45300:350::-;42705:7;42732:6;-1:-1:-1;;;;;42732:6:0;38632:10;42879:23;42871:68;;;;-1:-1:-1;;;42871:68:0;;;;;;;:::i;:::-;;;;;;;;;45399:13:::1;45387:8;:25;;45365:114;;;::::0;-1:-1:-1;;;45365:114:0;;9561:2:1;45365:114:0::1;::::0;::::1;9543:21:1::0;9600:2;9580:18;;;9573:30;9639:34;9619:18;;;9612:62;-1:-1:-1;;;9690:18:1;;;9683:37;9737:19;;45365:114:0::1;9533:229:1::0;45365:114:0::1;45540:14;45528:8;45512:13;14473:12:::0;;14457:13;;:28;;14207:315;45512:13:::1;:24;;;;:::i;:::-;:42;;45490:110;;;::::0;-1:-1:-1;;;45490:110:0;;7728:2:1;45490:110:0::1;::::0;::::1;7710:21:1::0;7767:2;7747:18;;;7740:30;-1:-1:-1;;;7786:18:1;;;7779:48;7844:18;;45490:110:0::1;7700:168:1::0;45490:110:0::1;45611:31;45621:10;45633:8;45611:9;:31::i;:::-;45300:350:::0;:::o;46714:249::-;46800:10;:30;46761:4;;46800:30;;46778:108;;;;-1:-1:-1;;;46778:108:0;;8848:2:1;46778:108:0;;;8830:21:1;8887:2;8867:18;;;8860:30;8926:25;8906:18;;;8899:53;8969:18;;46778:108:0;8820:173:1;46778:108:0;-1:-1:-1;46925:10:0;:30;;;46906:15;:49;;;46714:249::o;23371:185::-;23509:39;23526:4;23532:2;23536:7;23509:39;;;;;;;;;;;;:16;:39::i;47350:106::-;42705:7;42732:6;-1:-1:-1;;;;;42732:6:0;38632:10;42879:23;42871:68;;;;-1:-1:-1;;;42871:68:0;;;;;;;:::i;:::-;47425:23:::1;:13;47441:7:::0;;47425:23:::1;:::i;19965:144::-:0;20029:7;20072:27;20091:7;20072:18;:27::i;15832:234::-;15896:7;15938:5;15916:70;;15958:28;;-1:-1:-1;;;15958:28:0;;;;;;;;;;;15916:70;-1:-1:-1;;;;;;16004:25:0;;;;;:18;:25;;;;;;11177:13;16004:54;;15832:234::o;43310:103::-;42705:7;42732:6;-1:-1:-1;;;;;42732:6:0;38632:10;42879:23;42871:68;;;;-1:-1:-1;;;42871:68:0;;;;;;;:::i;:::-;43375:30:::1;43402:1;43375:18;:30::i;:::-;43310:103::o:0;20345:104::-;20401:13;20434:7;20427:14;;;;;:::i;45787:919::-;45214:9;45227:10;45214:23;45206:66;;;;-1:-1:-1;;;45206:66:0;;8489:2:1;45206:66:0;;;8471:21:1;8528:2;8508:18;;;8501:30;8567:32;8547:18;;;8540:60;8617:18;;45206:66:0;8461:180:1;45206:66:0;45900:16:::1;:14;:16::i;:::-;45892:58;;;::::0;-1:-1:-1;;;45892:58:0;;6963:2:1;45892:58:0::1;::::0;::::1;6945:21:1::0;7002:2;6982:18;;;6975:30;7041:31;7021:18;;;7014:59;7090:18;;45892:58:0::1;6935:179:1::0;45892:58:0::1;46011:14;45999:8;45983:13;14473:12:::0;;14457:13;;:28;;14207:315;45983:13:::1;:24;;;;:::i;:::-;:42;;45961:110;;;::::0;-1:-1:-1;;;45961:110:0;;7728:2:1;45961:110:0::1;::::0;::::1;7710:21:1::0;7767:2;7747:18;;;7740:30;-1:-1:-1;;;7786:18:1;;;7779:48;7844:18;;45961:110:0::1;7700:168:1::0;45961:110:0::1;46143:23;46131:8;46104:24;46117:10;46104:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;46082:157;;;::::0;-1:-1:-1;;;46082:157:0;;8075:2:1;46082:157:0::1;::::0;::::1;8057:21:1::0;8114:2;8094:18;;;8087:30;8153:34;8133:18;;;8126:62;-1:-1:-1;;;8204:18:1;;;8197:43;8257:19;;46082:157:0::1;8047:235:1::0;46082:157:0::1;46250:16;46313:12;46302:8;46286:13;14473:12:::0;;14457:13;;:28;;14207:315;46286:13:::1;:24;;;;:::i;:::-;:39;46281:341;;;46387:8;46372:12;46361:8;46345:13;14473:12:::0;;14457:13;;:28;;14207:315;46345:13:::1;:24;;;;:::i;:::-;:39;;;;:::i;:::-;:50;46342:269;;;46437:10;:25:::0;46426:36:::1;::::0;46437:25;;::::1;;;46426:8:::0;:36:::1;:::i;:::-;46415:47;;46342:269;;;46570:10;:25:::0;;;::::1;;;46554:12;46543:8:::0;46527:13:::1;14473:12:::0;;14457:13;;:28;;14207:315;46527:13:::1;:24;;;;:::i;:::-;:39;;;;:::i;:::-;46526:69;;;;:::i;:::-;46515:80;;46342:269;46634:31;46644:10;46656:8;46634:9;:31::i;:::-;46676:22;46689:8;46676:12;:22::i;:::-;45283:1;45787:919:::0;:::o;22520:308::-;-1:-1:-1;;;;;22619:31:0;;38632:10;22619:31;22615:61;;;22659:17;;-1:-1:-1;;;22659:17:0;;;;;;;;;;;22615:61;38632:10;22689:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;22689:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;22689:60:0;;;;;;;;;;22765:55;;6485:41:1;;;22689:49:0;;38632:10;22765:55;;6458:18:1;22765:55:0;;;;;;;22520:308;;:::o;47464:178::-;42705:7;42732:6;-1:-1:-1;;;;;42732:6:0;38632:10;42879:23;42871:68;;;;-1:-1:-1;;;42871:68:0;;;;;;;:::i;:::-;47538:49:::1;::::0;47520:12:::1;::::0;47538:10:::1;::::0;47561:21:::1;::::0;47520:12;47538:49;47520:12;47538:49;47561:21;47538:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47519:68;;;47606:7;47598:36;;;::::0;-1:-1:-1;;;47598:36:0;;9969:2:1;47598:36:0::1;::::0;::::1;9951:21:1::0;10008:2;9988:18;;;9981:30;-1:-1:-1;;;10027:18:1;;;10020:46;10083:18;;47598:36:0::1;9941:166:1::0;23627:396:0;23794:28;23804:4;23810:2;23814:7;23794:9;:28::i;:::-;-1:-1:-1;;;;;23837:14:0;;;:19;23833:183;;23876:56;23907:4;23913:2;23917:7;23926:5;23876:30;:56::i;:::-;23871:145;;23960:40;;-1:-1:-1;;;23960:40:0;;;;;;;;;;;23871:145;23627:396;;;;:::o;47650:242::-;42705:7;42732:6;-1:-1:-1;;;;;42732:6:0;38632:10;42879:23;42871:68;;;;-1:-1:-1;;;42871:68:0;;;;;;;:::i;:::-;47800:84:::1;::::0;;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;::::1;;::::0;;::::1;::::0;;;47787:10:::1;:97:::0;;;;;::::1;-1:-1:-1::0;;47787:97:0;;;;;;::::1;::::0;;47650:242::o;20520:318::-;20593:13;20624:16;20632:7;20624;:16::i;:::-;20619:59;;20649:29;;-1:-1:-1;;;20649:29:0;;;;;;;;;;;20619:59;20691:21;20715:10;:8;:10::i;:::-;20691:34;;20749:7;20743:21;20768:1;20743:26;;:87;;;;;;;;;;;;;;;;;20796:7;20805:18;20815:7;20805:9;:18::i;:::-;20779:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20743:87;20736:94;20520:318;-1:-1:-1;;;20520:318:0:o;47103:115::-;-1:-1:-1;;;;;16237:25:0;;47162:7;16237:25;;;:18;:25;;11314:2;16237:25;;;;11177:13;16237:49;;16236:80;47189:21;16148:176;43568:201;42705:7;42732:6;-1:-1:-1;;;;;42732:6:0;38632:10;42879:23;42871:68;;;;-1:-1:-1;;;42871:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43657:22:0;::::1;43649:73;;;::::0;-1:-1:-1;;;43649:73:0;;7321:2:1;43649:73:0::1;::::0;::::1;7303:21:1::0;7360:2;7340:18;;;7333:30;7399:34;7379:18;;;7372:62;-1:-1:-1;;;7450:18:1;;;7443:36;7496:19;;43649:73:0::1;7293:228:1::0;43649:73:0::1;43733:28;43752:8;43733:18;:28::i;24278:273::-:0;24335:4;24425:13;;24415:7;:23;24372:152;;;;-1:-1:-1;;24476:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;24476:43:0;:48;;24278:273::o;17480:1129::-;17547:7;17582;17684:13;;17677:4;:20;17673:869;;;17722:14;17739:23;;;:17;:23;;;;;;-1:-1:-1;;;17828:23:0;;17824:699;;18347:113;18354:11;18347:113;;-1:-1:-1;;;18425:6:0;18407:25;;;;:17;:25;;;;;;18347:113;;17824:699;17673:869;;18570:31;;-1:-1:-1;;;18570:31:0;;;;;;;;;;;29537:2654;29652:27;29682;29701:7;29682:18;:27::i;:::-;29652:57;;29767:4;-1:-1:-1;;;;;29726:45:0;29742:19;-1:-1:-1;;;;;29726:45:0;;29722:86;;29780:28;;-1:-1:-1;;;29780:28:0;;;;;;;;;;;29722:86;29821:23;29847:24;;;:15;:24;;;;;;-1:-1:-1;;;;;29847:24:0;;;;29821:23;29910:27;;38632:10;29910:27;;:87;;-1:-1:-1;29954:43:0;29971:4;38632:10;22899:164;:::i;29954:43::-;29910:142;;;-1:-1:-1;;;;;;30014:38:0;;38632:10;30014:38;29910:142;29884:169;;30071:17;30066:66;;30097:35;;-1:-1:-1;;;30097:35:0;;;;;;;;;;;30066:66;30165:2;30143:62;;30182:23;;-1:-1:-1;;;30182:23:0;;;;;;;;;;;30143:62;30349:15;30331:39;30327:103;;30394:24;;;;:15;:24;;;;;30387:31;;-1:-1:-1;;;;;;30387:31:0;;;30327:103;-1:-1:-1;;;;;30797:24:0;;;;;;;:18;:24;;;;;;;;30795:26;;-1:-1:-1;;30795:26:0;;;30866:22;;;;;;;;30864:24;;-1:-1:-1;30864:24:0;;;31159:26;;;:17;:26;;;-1:-1:-1;;;31247:15:0;11831:3;31247:41;31205:84;;:128;;31159:174;;;31453:46;;31449:626;;31557:1;31547:11;;31525:19;31680:30;;;:17;:30;;;;;;31676:384;;31818:13;;31803:11;:28;31799:242;;31965:30;;;;:17;:30;;;;;:52;;;31799:242;31449:626;;32122:7;32118:2;-1:-1:-1;;;;;32103:27:0;32112:4;-1:-1:-1;;;;;32103:27:0;;;;;;;;;;;29537:2654;;;;;;:::o;24635:104::-;24704:27;24714:2;24718:8;24704:27;;;;;;;;;;;;:9;:27::i;43929:191::-;44003:16;44022:6;;-1:-1:-1;;;;;44039:17:0;;;-1:-1:-1;;;;;;44039:17:0;;;;;;44072:40;;44022:6;;;;;;;44072:40;;44003:16;44072:40;43929:191;;:::o;48016:225::-;48094:5;48081:9;:18;;48073:53;;;;-1:-1:-1;;;48073:53:0;;10314:2:1;48073:53:0;;;10296:21:1;10353:2;10333:18;;;10326:30;-1:-1:-1;;;10372:18:1;;;10365:52;10434:18;;48073:53:0;10286:172:1;48073:53:0;48153:5;48141:9;:17;48137:97;;;48183:10;48175:47;48204:17;48216:5;48204:9;:17;:::i;:::-;48175:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36014:716;36198:88;;-1:-1:-1;;;36198:88:0;;36177:4;;-1:-1:-1;;;;;36198:45:0;;;;;:88;;38632:10;;36265:4;;36271:7;;36280:5;;36198:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36198:88:0;;;;;;;;-1:-1:-1;;36198:88:0;;;;;;;;;;;;:::i;:::-;;;36194:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36481:13:0;;36477:235;;36527:40;;-1:-1:-1;;;36527:40:0;;;;;;;;;;;36477:235;36670:6;36664:13;36655:6;36651:2;36647:15;36640:38;36194:529;-1:-1:-1;;;;;;36357:64:0;-1:-1:-1;;;36357:64:0;;-1:-1:-1;36014:716:0;;;;;;:::o;48249:114::-;48309:13;48342;48335:20;;;;;:::i;38756:1943::-;39225:4;39219:11;;39232:3;39215:21;;39310:17;;;;40006:11;;;39885:5;40138:2;40152;40142:13;;40134:22;40006:11;40121:36;40193:2;40183:13;;39777:680;40212:4;39777:680;;;40386:1;40381:3;40377:11;40370:18;;40437:2;40431:4;40427:13;40423:2;40419:22;40414:3;40406:36;40307:2;40297:13;;39777:680;;;-1:-1:-1;40487:13:0;;;-1:-1:-1;;40602:12:0;;;40662:19;;;40602:12;38852:1840;-1:-1:-1;38852:1840:0:o;25112:2246::-;25258:13;;25304:2;25282:58;;25321:19;;-1:-1:-1;;;25321:19:0;;;;;;;;;;;25282:58;25355:13;25351:44;;25377:18;;-1:-1:-1;;;25377:18:0;;;;;;;;;;;25351:44;-1:-1:-1;;;;;25944:22:0;;;;;;:18;:22;;;;11314:2;25944:22;;;:70;;25982:31;25970:44;;25944:70;;;26257:31;;;:17;:31;;;;;26350:15;11831:3;26350:41;26308:84;;-1:-1:-1;26428:13:0;;12090:3;26413:56;26308:162;26257:213;;:31;;26551:23;;;;26595:14;:19;26591:635;;26635:313;26666:38;;26691:12;;-1:-1:-1;;;;;26666:38:0;;;26683:1;;26666:38;;26683:1;;26666:38;26732:69;26771:1;26775:2;26779:14;;;;;;26795:5;26732:30;:69::i;:::-;26727:174;;26837:40;;-1:-1:-1;;;26837:40:0;;;;;;;;;;;26727:174;26943:3;26928:12;:18;26635:313;;27029:12;27012:13;;:29;27008:43;;27043:8;;;27008:43;26591:635;;;27092:119;27123:40;;27148:14;;;;;-1:-1:-1;;;;;27123:40:0;;;27140:1;;27123:40;;27140:1;;27123:40;27206:3;27191:12;:18;27092:119;;26591:635;-1:-1:-1;27240:13:0;:28;27290:60;27319:1;27323:2;27327:12;27341:8;27290:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:1183::-;1106:6;1114;1122;1130;1183:3;1171:9;1162:7;1158:23;1154:33;1151:2;;;1205:6;1197;1190:22;1151:2;1233:29;1252:9;1233:29;:::i;:::-;1223:39;;1281:38;1315:2;1304:9;1300:18;1281:38;:::i;:::-;1271:48;;1366:2;1355:9;1351:18;1338:32;1328:42;;1421:2;1410:9;1406:18;1393:32;1444:18;1485:2;1477:6;1474:14;1471:2;;;1506:6;1498;1491:22;1471:2;1549:6;1538:9;1534:22;1524:32;;1594:7;1587:4;1583:2;1579:13;1575:27;1565:2;;1621:6;1613;1606:22;1565:2;1662;1649:16;1684:2;1680;1677:10;1674:2;;;1690:18;;:::i;:::-;1765:2;1759:9;1733:2;1819:13;;-1:-1:-1;;1815:22:1;;;1839:2;1811:31;1807:40;1795:53;;;1863:18;;;1883:22;;;1860:46;1857:2;;;1909:18;;:::i;:::-;1949:10;1945:2;1938:22;1984:2;1976:6;1969:18;2024:7;2019:2;2014;2010;2006:11;2002:20;1999:33;1996:2;;;2050:6;2042;2035:22;1996:2;2111;2106;2102;2098:11;2093:2;2085:6;2081:15;2068:46;2134:15;;;2151:2;2130:24;2123:40;;;;1141:1053;;;;-1:-1:-1;1141:1053:1;;-1:-1:-1;;;;1141:1053:1:o;2199:367::-;2264:6;2272;2325:2;2313:9;2304:7;2300:23;2296:32;2293:2;;;2346:6;2338;2331:22;2293:2;2374:29;2393:9;2374:29;:::i;:::-;2364:39;;2453:2;2442:9;2438:18;2425:32;2500:5;2493:13;2486:21;2479:5;2476:32;2466:2;;2527:6;2519;2512:22;2466:2;2555:5;2545:15;;;2283:283;;;;;:::o;2571:264::-;2639:6;2647;2700:2;2688:9;2679:7;2675:23;2671:32;2668:2;;;2721:6;2713;2706:22;2668:2;2749:29;2768:9;2749:29;:::i;:::-;2739:39;2825:2;2810:18;;;;2797:32;;-1:-1:-1;;;2658:177:1:o;2840:255::-;2898:6;2951:2;2939:9;2930:7;2926:23;2922:32;2919:2;;;2972:6;2964;2957:22;2919:2;3016:9;3003:23;3035:30;3059:5;3035:30;:::i;3100:259::-;3169:6;3222:2;3210:9;3201:7;3197:23;3193:32;3190:2;;;3243:6;3235;3228:22;3190:2;3280:9;3274:16;3299:30;3323:5;3299:30;:::i;3364:642::-;3435:6;3443;3496:2;3484:9;3475:7;3471:23;3467:32;3464:2;;;3517:6;3509;3502:22;3464:2;3562:9;3549:23;3591:18;3632:2;3624:6;3621:14;3618:2;;;3653:6;3645;3638:22;3618:2;3696:6;3685:9;3681:22;3671:32;;3741:7;3734:4;3730:2;3726:13;3722:27;3712:2;;3768:6;3760;3753:22;3712:2;3813;3800:16;3839:2;3831:6;3828:14;3825:2;;;3860:6;3852;3845:22;3825:2;3910:7;3905:2;3896:6;3892:2;3888:15;3884:24;3881:37;3878:2;;;3936:6;3928;3921:22;3878:2;3972;3964:11;;;;;3994:6;;-1:-1:-1;3454:552:1;;-1:-1:-1;;;;3454:552:1:o;4011:190::-;4070:6;4123:2;4111:9;4102:7;4098:23;4094:32;4091:2;;;4144:6;4136;4129:22;4091:2;-1:-1:-1;4172:23:1;;4081:120;-1:-1:-1;4081:120:1:o;4206:486::-;4272:6;4280;4333:2;4321:9;4312:7;4308:23;4304:32;4301:2;;;4354:6;4346;4339:22;4301:2;4398:9;4385:23;4448:18;4441:5;4437:30;4430:5;4427:41;4417:2;;4487:6;4479;4472:22;4417:2;4515:5;-1:-1:-1;4572:2:1;4557:18;;4544:32;4620:10;4607:24;;4595:37;;4585:2;;4651:6;4643;4636:22;4697:257;4738:3;4776:5;4770:12;4803:6;4798:3;4791:19;4819:63;4875:6;4868:4;4863:3;4859:14;4852:4;4845:5;4841:16;4819:63;:::i;:::-;4936:2;4915:15;-1:-1:-1;;4911:29:1;4902:39;;;;4943:4;4898:50;;4746:208;-1:-1:-1;;4746:208:1:o;4959:470::-;5138:3;5176:6;5170:13;5192:53;5238:6;5233:3;5226:4;5218:6;5214:17;5192:53;:::i;:::-;5308:13;;5267:16;;;;5330:57;5308:13;5267:16;5364:4;5352:17;;5330:57;:::i;:::-;5403:20;;5146:283;-1:-1:-1;;;;5146:283:1:o;5852:488::-;-1:-1:-1;;;;;6121:15:1;;;6103:34;;6173:15;;6168:2;6153:18;;6146:43;6220:2;6205:18;;6198:34;;;6268:3;6263:2;6248:18;;6241:31;;;6046:4;;6289:45;;6314:19;;6306:6;6289:45;:::i;:::-;6281:53;6055:285;-1:-1:-1;;;;;;6055:285:1:o;6537:219::-;6686:2;6675:9;6668:21;6649:4;6706:44;6746:2;6735:9;6731:18;6723:6;6706:44;:::i;8998:356::-;9200:2;9182:21;;;9219:18;;;9212:30;9278:34;9273:2;9258:18;;9251:62;9345:2;9330:18;;9172:182::o;10936:128::-;10976:3;11007:1;11003:6;11000:1;10997:13;10994:2;;;11013:18;;:::i;:::-;-1:-1:-1;11049:9:1;;10984:80::o;11069:168::-;11109:7;11175:1;11171;11167:6;11163:14;11160:1;11157:21;11152:1;11145:9;11138:17;11134:45;11131:2;;;11182:18;;:::i;:::-;-1:-1:-1;11222:9:1;;11121:116::o;11242:125::-;11282:4;11310:1;11307;11304:8;11301:2;;;11315:18;;:::i;:::-;-1:-1:-1;11352:9:1;;11291:76::o;11372:258::-;11444:1;11454:113;11468:6;11465:1;11462:13;11454:113;;;11544:11;;;11538:18;11525:11;;;11518:39;11490:2;11483:10;11454:113;;;11585:6;11582:1;11579:13;11576:2;;;-1:-1:-1;;11620:1:1;11602:16;;11595:27;11425:205::o;11635:380::-;11714:1;11710:12;;;;11757;;;11778:2;;11832:4;11824:6;11820:17;11810:27;;11778:2;11885;11877:6;11874:14;11854:18;11851:38;11848:2;;;11931:10;11926:3;11922:20;11919:1;11912:31;11966:4;11963:1;11956:15;11994:4;11991:1;11984:15;11848:2;;11690:325;;;:::o;12020:127::-;12081:10;12076:3;12072:20;12069:1;12062:31;12112:4;12109:1;12102:15;12136:4;12133:1;12126:15;12152:127;12213:10;12208:3;12204:20;12201:1;12194:31;12244:4;12241:1;12234:15;12268:4;12265:1;12258:15;12284:131;-1:-1:-1;;;;;;12358:32:1;;12348:43;;12338:2;;12405:1;12402;12395:12
Swarm Source
ipfs://bde9d0959f9a7ec70b617991ff1d8c09f11139a715030079b43ea181299ab295
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.