Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
6,969 URCS
Holders
3,103
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 URCSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
UnderCoversNFTs
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-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: @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: erc721a/contracts/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/contracts/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 (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the 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 (to == address(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 (to == address(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(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. 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)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. 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: contracts/UnderCoversNft.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /* UnderCovers NFT.sol Total Supply = 6969 tokens, Free Mint = first 2000, 1 NFT per wallet Public Mint = remining 4969, 5 NFT per wallet CONTRACT SPECIAL 1.owner cannot edit mint limit per wallet in contract 2.75 % of fund directly goes to community wallet onces contract owner withdrawls the funds */ contract UnderCoversNFTs is Ownable, ERC721A { uint256 constant public MAX_SUPPLY = 6969; uint256 public TEAM_MINT_MAX = 50; uint256 public publicPrice = 0.005 ether; uint256 constant public PUBLIC_MINT_LIMIT_TXN = 5; uint256 constant public PUBLIC_MINT_LIMIT = 5; uint256 public TOTAL_SUPPLY_TEAM; string public revealedURI; string public hiddenURI = "ipfs://QmaHP13mEKxcKVqE77GPm4ZBarK9wmgX8TfQEC2CJHKFi1"; // OpenSea CONTRACT_URI - https://docs.opensea.io/docs/contract-level-metadata string public CONTRACT_URI = "ipfs://QmaHP13mEKxcKVqE77GPm4ZBarK9wmgX8TfQEC2CJHKFi1"; bool public paused = false; bool public revealed = false; bool public freeSale = true; bool public publicSale = false; address constant internal FOUNDER_ADDRESS = 0xDa09b3AE5987659F1dCb5D0F4593310616d4700c; address public teamWallet = 0xD4938E1393561E02fdf4df3CC7fDbCf3D3954dDe; mapping(address => bool) public userMintedFree; mapping(address => uint256) public numUserMints; constructor() ERC721A("UnderCoversNFTs", "URCS") { } /* * Private Function * */ function _startTokenId() internal view virtual override returns (uint256) { return 1; } function refundOverpay(uint256 price) private { if (msg.value > price) { (bool succ, ) = payable(msg.sender).call{ value: (msg.value - price) }(""); require(succ, "Transfer failed"); } else if (msg.value < price) { revert("Not enough ETH sent"); } } /* * Public Function * */ function teamMint(uint256 quantity) public payable mintCompliance(quantity) { require(msg.sender == teamWallet, "Team minting only"); require(TOTAL_SUPPLY_TEAM + quantity <= TEAM_MINT_MAX, "No team mints left"); require(totalSupply() >= 2000, "Team mints after free"); TOTAL_SUPPLY_TEAM += quantity; _safeMint(msg.sender, quantity); } function freeMint(uint256 quantity) external payable mintCompliance(quantity) { require(freeSale, "Free sale inactive"); require(msg.value == 0, "This phase is free"); require(quantity == 1, "Only 1 free"); uint256 newSupply = totalSupply() + quantity; require(newSupply <= 2000, "Not enough free supply"); require(!userMintedFree[msg.sender], "User max free limit"); userMintedFree[msg.sender] = true; if(newSupply == 2000) { freeSale = false; publicSale = true; } _safeMint(msg.sender, quantity); } function publicMint(uint256 quantity) external payable mintCompliance(quantity) { require(publicSale, "Public sale inactive"); require(quantity <= PUBLIC_MINT_LIMIT_TXN, "Quantity too high"); uint256 price = publicPrice; uint256 currMints = numUserMints[msg.sender]; require(currMints + quantity <= PUBLIC_MINT_LIMIT, "User max mint limit"); refundOverpay(price * quantity); numUserMints[msg.sender] = (currMints + quantity); _safeMint(msg.sender, quantity); } /* * View Function * */ function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= MAX_SUPPLY) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { // Note: You don't REALLY need this require statement since nothing should be querying for non-existing tokens after reveal. // That said, it's a public view method so gas efficiency shouldn't come into play. require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); if (revealed) { return string(abi.encodePacked(revealedURI, Strings.toString(_tokenId), ".json")); } else { return hiddenURI; } } // https://docs.opensea.io/docs/contract-level-metadata // https://ethereum.stackexchange.com/questions/110924/how-to-properly-implement-a-contracturi-for-on-chain-nfts function contractURI() public view returns (string memory) { return CONTRACT_URI; } /* * Owner Function * */ function setTeamMintMax(uint256 _teamMintMax) public onlyOwner { TEAM_MINT_MAX = _teamMintMax; } function setPublicPrice(uint256 _publicPrice) public onlyOwner { publicPrice = _publicPrice; } function setBaseURI(string memory _baseUri) public onlyOwner { revealedURI = _baseUri; } // Note: This method can be hidden/removed if this is a constant. function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenURI = _hiddenMetadataUri; } function revealCollection(bool _revealed, string memory _baseUri) public onlyOwner { revealed = _revealed; revealedURI = _baseUri; } // https://docs.opensea.io/docs/contract-level-metadata function setContractURI(string memory _contractURI) public onlyOwner { CONTRACT_URI = _contractURI; } // Note: Another option is to inherit Pausable without implementing the logic yourself. // https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/Pausable.sol function setPaused(bool _state) public onlyOwner { paused = _state; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setPublicEnabled(bool _state) public onlyOwner { publicSale = _state; freeSale = !_state; } function setFreeEnabled(bool _state) public onlyOwner { freeSale = _state; publicSale = !_state; } function setTeamWalletAddress(address _teamWallet) public onlyOwner { teamWallet = _teamWallet; } function withdraw() external payable onlyOwner { // Get the current funds to calculate initial percentages uint256 currBalance = address(this).balance; (bool succ, ) = payable(FOUNDER_ADDRESS).call{ value: (currBalance * 2500) / 10000 }(""); require(succ, "Founder transfer failed"); // Withdraw the ENTIRE remaining balance to the team wallet (succ, ) = payable(teamWallet).call{ value: address(this).balance }(""); require(succ, "Team (remaining) transfer failed"); } // Owner-only mint functionality to "Airdrop" mints to specific users // Note: These will likely end up hidden on OpenSea function mintToUser(uint256 quantity, address receiver) public onlyOwner mintCompliance(quantity) { _safeMint(receiver, quantity); } /* * Modifier * */ modifier mintCompliance(uint256 quantity) { require(!paused, "Contract is paused"); require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough mints left"); require(tx.origin == msg.sender, "No contract minting"); _; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"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":"CONTRACT_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_MINT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY_TEAM","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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintToUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numUserMints","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"},{"internalType":"string","name":"_baseUri","type":"string"}],"name":"revealCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setFreeEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_teamMintMax","type":"uint256"}],"name":"setTeamMintMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_teamWallet","type":"address"}],"name":"setTeamWalletAddress","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":"quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"userMintedFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60326009556611c37937e08000600a5560e0604052603560808181529062002c1760a03980516200003991600d916020909101906200018e565b5060405180606001604052806035815260200162002c176035913980516200006a91600e916020909101906200018e565b50600f80546001600160c01b03191677d4938e1393561e02fdf4df3cc7fdbcf3d3954dde00010000179055348015620000a257600080fd5b506040518060400160405280600f81526020016e556e646572436f766572734e46547360881b815250604051806040016040528060048152602001635552435360e01b81525062000102620000fc6200013a60201b60201c565b6200013e565b8151620001179060039060208501906200018e565b5080516200012d9060049060208401906200018e565b5050600180555062000271565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200019c9062000234565b90600052602060002090601f016020900481019282620001c057600085556200020b565b82601f10620001db57805160ff19168380011785556200020b565b828001600101855582156200020b579182015b828111156200020b578251825591602001919060010190620001ee565b50620002199291506200021d565b5090565b5b808211156200021957600081556001016200021e565b600181811c908216806200024957607f821691505b602082108114156200026b57634e487b7160e01b600052602260045260246000fd5b50919050565b61299680620002816000396000f3fe6080604052600436106102e45760003560e01c806364f640761161019057806395d89b41116100dc578063c627525511610095578063e8a3d4851161006f578063e8a3d48514610869578063e985e9c51461087e578063f2fde38b146108c7578063f7e8d6ea146108e757600080fd5b8063c627525514610809578063c87b56dd14610829578063e0a808531461084957600080fd5b806395d89b411461077e578063a22cb46514610793578063a4b41a15146107b3578063a945bf80146107d3578063b88d4fde146107e9578063bceae77b1461046357600080fd5b80637af3a1af116101495780638cc54e7f116101235780638cc54e7f1461070b5780638da5cb5b146107205780639007bd721461073e578063938e3d7b1461075e57600080fd5b80637af3a1af146106b85780637c928fe9146106d857806388dedc14146106eb57600080fd5b806364f64076146105fa5780636b39fca41461062a57806370a0823114610640578063715018a614610660578063763ea95f146106755780637aeb72421461068b57600080fd5b806332cb6b0c1161024f578063518302271161020857806359927044116101e257806359927044146105785780635c975abb146105a05780635ed3e25e146105ba5780636352211e146105da57600080fd5b8063518302271461052457806355f804b31461054357806356b4f6731461056357600080fd5b806332cb6b0c1461047857806333bc1c5c1461048e5780633ccfd60b146104af57806342842e0e146104b7578063438b6300146104d75780634fdd43cb1461050457600080fd5b806318160ddd116102a157806318160ddd146103da57806323b872dd146103fd5780632c4b23341461041d5780632db115441461043d5780632fbba115146104505780632fecf20b1461046357600080fd5b806301ffc9a7146102e957806306fdde031461031e578063081812fc14610340578063095ea7b3146103785780630f15ad8d1461039a57806316c38b3c146103ba575b600080fd5b3480156102f557600080fd5b506103096103043660046124fb565b6108fc565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033361094e565b604051610315919061272a565b34801561034c57600080fd5b5061036061035b36600461256a565b6109e0565b6040516001600160a01b039091168152602001610315565b34801561038457600080fd5b50610398610393366004612468565b610a24565b005b3480156103a657600080fd5b506103986103b536600461256a565b610af7565b3480156103c657600080fd5b506103986103d5366004612492565b610b2f565b3480156103e657600080fd5b506103ef610b6c565b604051908152602001610315565b34801561040957600080fd5b50610398610418366004612386565b610b7a565b34801561042957600080fd5b50610398610438366004612338565b610b8a565b61039861044b36600461256a565b610be2565b61039861045e36600461256a565b610d91565b34801561046f57600080fd5b506103ef600581565b34801561048457600080fd5b506103ef611b3981565b34801561049a57600080fd5b50600f54610309906301000000900460ff1681565b610398610f2a565b3480156104c357600080fd5b506103986104d2366004612386565b6110c3565b3480156104e357600080fd5b506104f76104f2366004612338565b6110de565b60405161031591906126e6565b34801561051057600080fd5b5061039861051f366004612535565b6111bf565b34801561053057600080fd5b50600f5461030990610100900460ff1681565b34801561054f57600080fd5b5061039861055e366004612535565b6111fc565b34801561056f57600080fd5b50610333611239565b34801561058457600080fd5b50600f546103609064010000000090046001600160a01b031681565b3480156105ac57600080fd5b50600f546103099060ff1681565b3480156105c657600080fd5b506103986105d53660046124ad565b6112c7565b3480156105e657600080fd5b506103606105f536600461256a565b611317565b34801561060657600080fd5b50610309610615366004612338565b60106020526000908152604090205460ff1681565b34801561063657600080fd5b506103ef60095481565b34801561064c57600080fd5b506103ef61065b366004612338565b611322565b34801561066c57600080fd5b50610398611371565b34801561068157600080fd5b506103ef600b5481565b34801561069757600080fd5b506103ef6106a6366004612338565b60116020526000908152604090205481565b3480156106c457600080fd5b506103986106d3366004612492565b6113a7565b6103986106e636600461256a565b611400565b3480156106f757600080fd5b50610398610706366004612492565b611640565b34801561071757600080fd5b5061033361169a565b34801561072c57600080fd5b506000546001600160a01b0316610360565b34801561074a57600080fd5b50610398610759366004612583565b6116a7565b34801561076a57600080fd5b50610398610779366004612535565b611753565b34801561078a57600080fd5b50610333611790565b34801561079f57600080fd5b506103986107ae36600461243e565b61179f565b3480156107bf57600080fd5b50600f546103099062010000900460ff1681565b3480156107df57600080fd5b506103ef600a5481565b3480156107f557600080fd5b506103986108043660046123c2565b611835565b34801561081557600080fd5b5061039861082436600461256a565b611879565b34801561083557600080fd5b5061033361084436600461256a565b6118a8565b34801561085557600080fd5b50610398610864366004612492565b6119f0565b34801561087557600080fd5b50610333611a34565b34801561088a57600080fd5b50610309610899366004612353565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156108d357600080fd5b506103986108e2366004612338565b611a43565b3480156108f357600080fd5b50610333611ade565b60006301ffc9a760e01b6001600160e01b03198316148061092d57506380ac58cd60e01b6001600160e01b03198316145b806109485750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461095d90612888565b80601f016020809104026020016040519081016040528092919081815260200182805461098990612888565b80156109d65780601f106109ab576101008083540402835291602001916109d6565b820191906000526020600020905b8154815290600101906020018083116109b957829003601f168201915b5050505050905090565b60006109eb82611aeb565b610a08576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610a2f82611b20565b9050806001600160a01b0316836001600160a01b03161415610a645760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610a9b57610a7e8133610899565b610a9b576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b03163314610b2a5760405162461bcd60e51b8152600401610b219061276a565b60405180910390fd5b600955565b6000546001600160a01b03163314610b595760405162461bcd60e51b8152600401610b219061276a565b600f805460ff1916911515919091179055565b600254600154036000190190565b610b85838383611b90565b505050565b6000546001600160a01b03163314610bb45760405162461bcd60e51b8152600401610b219061276a565b600f80546001600160a01b0390921664010000000002640100000000600160c01b0319909216919091179055565b600f54819060ff1615610c075760405162461bcd60e51b8152600401610b219061279f565b611b3981610c13610b6c565b610c1d91906127fa565b1115610c3b5760405162461bcd60e51b8152600401610b21906127cb565b323314610c5a5760405162461bcd60e51b8152600401610b219061273d565b600f546301000000900460ff16610caa5760405162461bcd60e51b81526020600482015260146024820152735075626c69632073616c6520696e61637469766560601b6044820152606401610b21565b6005821115610cef5760405162461bcd60e51b81526020600482015260116024820152700a2eac2dce8d2e8f240e8dede40d0d2ced607b1b6044820152606401610b21565b600a54336000908152601160205260409020546005610d0e85836127fa565b1115610d525760405162461bcd60e51b8152602060048201526013602482015272155cd95c881b585e081b5a5b9d081b1a5b5a5d606a1b6044820152606401610b21565b610d64610d5f8584612826565b611d33565b610d6e84826127fa565b33600081815260116020526040902091909155610d8b9085611e12565b50505050565b600f54819060ff1615610db65760405162461bcd60e51b8152600401610b219061279f565b611b3981610dc2610b6c565b610dcc91906127fa565b1115610dea5760405162461bcd60e51b8152600401610b21906127cb565b323314610e095760405162461bcd60e51b8152600401610b219061273d565b600f5464010000000090046001600160a01b03163314610e5f5760405162461bcd60e51b81526020600482015260116024820152705465616d206d696e74696e67206f6e6c7960781b6044820152606401610b21565b60095482600b54610e7091906127fa565b1115610eb35760405162461bcd60e51b8152602060048201526012602482015271139bc81d19585b481b5a5b9d1cc81b19599d60721b6044820152606401610b21565b6107d0610ebe610b6c565b1015610f045760405162461bcd60e51b81526020600482015260156024820152745465616d206d696e7473206166746572206672656560581b6044820152606401610b21565b81600b6000828254610f1691906127fa565b90915550610f2690503383611e12565b5050565b6000546001600160a01b03163314610f545760405162461bcd60e51b8152600401610b219061276a565b47600073da09b3ae5987659f1dcb5d0f4593310616d4700c612710610f7b846109c4612826565b610f859190612812565b604051600081818185875af1925050503d8060008114610fc1576040519150601f19603f3d011682016040523d82523d6000602084013e610fc6565b606091505b50509050806110175760405162461bcd60e51b815260206004820152601760248201527f466f756e646572207472616e73666572206661696c65640000000000000000006044820152606401610b21565b600f546040516401000000009091046001600160a01b0316904790600081818185875af1925050503d806000811461106b576040519150601f19603f3d011682016040523d82523d6000602084013e611070565b606091505b50508091505080610f265760405162461bcd60e51b815260206004820181905260248201527f5465616d202872656d61696e696e6729207472616e73666572206661696c65646044820152606401610b21565b610b8583838360405180602001604052806000815250611835565b606060006110eb83611322565b905060008167ffffffffffffffff81111561110857611108612934565b604051908082528060200260200182016040528015611131578160200160208202803683370190505b509050600160005b838110801561114a5750611b398211155b156111b557600061115a83611317565b9050866001600160a01b0316816001600160a01b031614156111a257828483815181106111895761118961291e565b60209081029190910101528161119e816128c3565b9250505b826111ac816128c3565b93505050611139565b5090949350505050565b6000546001600160a01b031633146111e95760405162461bcd60e51b8152600401610b219061276a565b8051610f2690600d9060208401906121e2565b6000546001600160a01b031633146112265760405162461bcd60e51b8152600401610b219061276a565b8051610f2690600c9060208401906121e2565b600e805461124690612888565b80601f016020809104026020016040519081016040528092919081815260200182805461127290612888565b80156112bf5780601f10611294576101008083540402835291602001916112bf565b820191906000526020600020905b8154815290600101906020018083116112a257829003601f168201915b505050505081565b6000546001600160a01b031633146112f15760405162461bcd60e51b8152600401610b219061276a565b600f805461ff001916610100841515021790558051610b8590600c9060208401906121e2565b600061094882611b20565b60006001600160a01b03821661134b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b0316331461139b5760405162461bcd60e51b8152600401610b219061276a565b6113a56000611e2c565b565b6000546001600160a01b031633146113d15760405162461bcd60e51b8152600401610b219061276a565b600f805463ffff000019166301000000921580159390930262ff00001916176201000092909202919091179055565b600f54819060ff16156114255760405162461bcd60e51b8152600401610b219061279f565b611b3981611431610b6c565b61143b91906127fa565b11156114595760405162461bcd60e51b8152600401610b21906127cb565b3233146114785760405162461bcd60e51b8152600401610b219061273d565b600f5462010000900460ff166114c55760405162461bcd60e51b8152602060048201526012602482015271467265652073616c6520696e61637469766560701b6044820152606401610b21565b34156115085760405162461bcd60e51b815260206004820152601260248201527154686973207068617365206973206672656560701b6044820152606401610b21565b816001146115465760405162461bcd60e51b815260206004820152600b60248201526a4f6e6c792031206672656560a81b6044820152606401610b21565b600082611551610b6c565b61155b91906127fa565b90506107d08111156115a85760405162461bcd60e51b81526020600482015260166024820152754e6f7420656e6f756768206672656520737570706c7960501b6044820152606401610b21565b3360009081526010602052604090205460ff16156115fe5760405162461bcd60e51b8152602060048201526013602482015272155cd95c881b585e08199c9959481b1a5b5a5d606a1b6044820152606401610b21565b336000908152601060205260409020805460ff191660011790556107d081141561163657600f805463ffff0000191663010000001790555b610b853384611e12565b6000546001600160a01b0316331461166a5760405162461bcd60e51b8152600401610b219061276a565b600f805463ffff0000191662010000921580159390930263ff000000191617630100000092909202919091179055565b600d805461124690612888565b6000546001600160a01b031633146116d15760405162461bcd60e51b8152600401610b219061276a565b600f54829060ff16156116f65760405162461bcd60e51b8152600401610b219061279f565b611b3981611702610b6c565b61170c91906127fa565b111561172a5760405162461bcd60e51b8152600401610b21906127cb565b3233146117495760405162461bcd60e51b8152600401610b219061273d565b610b858284611e12565b6000546001600160a01b0316331461177d5760405162461bcd60e51b8152600401610b219061276a565b8051610f2690600e9060208401906121e2565b60606004805461095d90612888565b6001600160a01b0382163314156117c95760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611840848484611b90565b6001600160a01b0383163b15610d8b5761185c84848484611e7c565b610d8b576040516368d2bf6b60e11b815260040160405180910390fd5b6000546001600160a01b031633146118a35760405162461bcd60e51b8152600401610b219061276a565b600a55565b60606118b382611aeb565b6119175760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b21565b600f54610100900460ff161561195957600c61193283611f74565b6040516020016119439291906125ee565b6040516020818303038152906040529050919050565b600d805461196690612888565b80601f016020809104026020016040519081016040528092919081815260200182805461199290612888565b80156119df5780601f106119b4576101008083540402835291602001916119df565b820191906000526020600020905b8154815290600101906020018083116119c257829003601f168201915b50505050509050919050565b919050565b6000546001600160a01b03163314611a1a5760405162461bcd60e51b8152600401610b219061276a565b600f80549115156101000261ff0019909216919091179055565b6060600e805461095d90612888565b6000546001600160a01b03163314611a6d5760405162461bcd60e51b8152600401610b219061276a565b6001600160a01b038116611ad25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b21565b611adb81611e2c565b50565b600c805461124690612888565b600081600111158015611aff575060015482105b8015610948575050600090815260056020526040902054600160e01b161590565b60008180600111611b7757600154811015611b7757600081815260056020526040902054600160e01b8116611b75575b80611b6e575060001901600081815260056020526040902054611b50565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611b9b82611b20565b9050836001600160a01b0316816001600160a01b031614611bce5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611bec5750611bec8533610899565b80611c07575033611bfc846109e0565b6001600160a01b0316145b905080611c2757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611c4e57604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091529020600160e11b4260a01b861781179091558216611ceb5760018301600081815260056020526040902054611ce9576001548114611ce95760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b80341115611dcc57600033611d488334612845565b604051600081818185875af1925050503d8060008114611d84576040519150601f19603f3d011682016040523d82523d6000602084013e611d89565b606091505b5050905080610f265760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610b21565b80341015611adb5760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b6044820152606401610b21565b610f26828260405180602001604052806000815250612072565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611eb19033908990889088906004016126a9565b602060405180830381600087803b158015611ecb57600080fd5b505af1925050508015611efb575060408051601f3d908101601f19168201909252611ef891810190612518565b60015b611f56573d808015611f29576040519150601f19603f3d011682016040523d82523d6000602084013e611f2e565b606091505b508051611f4e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081611f985750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fc25780611fac816128c3565b9150611fbb9050600a83612812565b9150611f9c565b60008167ffffffffffffffff811115611fdd57611fdd612934565b6040519080825280601f01601f191660200182016040528015612007576020820181803683370190505b5090505b8415611f6c5761201c600183612845565b9150612029600a866128de565b6120349060306127fa565b60f81b8183815181106120495761204961291e565b60200101906001600160f81b031916908160001a90535061206b600a86612812565b945061200b565b6001546001600160a01b03841661209b57604051622e076360e81b815260040160405180910390fd5b826120b95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b1561218e575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121576000878480600101955087611e7c565b612174576040516368d2bf6b60e11b815260040160405180910390fd5b80821061210c57826001541461218957600080fd5b6121d3565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061218f575b50600155610d8b600085838684565b8280546121ee90612888565b90600052602060002090601f0160209004810192826122105760008555612256565b82601f1061222957805160ff1916838001178555612256565b82800160010185558215612256579182015b8281111561225657825182559160200191906001019061223b565b50612262929150612266565b5090565b5b808211156122625760008155600101612267565b600067ffffffffffffffff8084111561229657612296612934565b604051601f8501601f19908116603f011681019082821181831017156122be576122be612934565b816040528093508581528686860111156122d757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146119eb57600080fd5b803580151581146119eb57600080fd5b600082601f83011261232957600080fd5b611b6e8383356020850161227b565b60006020828403121561234a57600080fd5b611b6e826122f1565b6000806040838503121561236657600080fd5b61236f836122f1565b915061237d602084016122f1565b90509250929050565b60008060006060848603121561239b57600080fd5b6123a4846122f1565b92506123b2602085016122f1565b9150604084013590509250925092565b600080600080608085870312156123d857600080fd5b6123e1856122f1565b93506123ef602086016122f1565b925060408501359150606085013567ffffffffffffffff81111561241257600080fd5b8501601f8101871361242357600080fd5b6124328782356020840161227b565b91505092959194509250565b6000806040838503121561245157600080fd5b61245a836122f1565b915061237d60208401612308565b6000806040838503121561247b57600080fd5b612484836122f1565b946020939093013593505050565b6000602082840312156124a457600080fd5b611b6e82612308565b600080604083850312156124c057600080fd5b6124c983612308565b9150602083013567ffffffffffffffff8111156124e557600080fd5b6124f185828601612318565b9150509250929050565b60006020828403121561250d57600080fd5b8135611b6e8161294a565b60006020828403121561252a57600080fd5b8151611b6e8161294a565b60006020828403121561254757600080fd5b813567ffffffffffffffff81111561255e57600080fd5b611f6c84828501612318565b60006020828403121561257c57600080fd5b5035919050565b6000806040838503121561259657600080fd5b8235915061237d602084016122f1565b600081518084526125be81602086016020860161285c565b601f01601f19169290920160200192915050565b600081516125e481856020860161285c565b9290920192915050565b600080845481600182811c91508083168061260a57607f831692505b602080841082141561262a57634e487b7160e01b86526022600452602486fd5b81801561263e576001811461264f5761267c565b60ff1986168952848901965061267c565b60008b81526020902060005b868110156126745781548b82015290850190830161265b565b505084890196505b5050505050506126a061268f82866125d2565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126dc908301846125a6565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561271e57835183529284019291840191600101612702565b50909695505050505050565b602081526000611b6e60208301846125a6565b6020808252601390820152724e6f20636f6e7472616374206d696e74696e6760681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526012908201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604082015260600190565b602080825260159082015274139bdd08195b9bdd59da081b5a5b9d1cc81b19599d605a1b604082015260600190565b6000821982111561280d5761280d6128f2565b500190565b60008261282157612821612908565b500490565b6000816000190483118215151615612840576128406128f2565b500290565b600082821015612857576128576128f2565b500390565b60005b8381101561287757818101518382015260200161285f565b83811115610d8b5750506000910152565b600181811c9082168061289c57607f821691505b602082108114156128bd57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128d7576128d76128f2565b5060010190565b6000826128ed576128ed612908565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611adb57600080fdfea26469706673582212205388acf0853b30c23afaeb4420a4d1386e84253070899f9a71e4779e21bb6af464736f6c63430008070033697066733a2f2f516d61485031336d454b78634b567145373747506d345a4261724b39776d675838546651454332434a484b466931
Deployed Bytecode
0x6080604052600436106102e45760003560e01c806364f640761161019057806395d89b41116100dc578063c627525511610095578063e8a3d4851161006f578063e8a3d48514610869578063e985e9c51461087e578063f2fde38b146108c7578063f7e8d6ea146108e757600080fd5b8063c627525514610809578063c87b56dd14610829578063e0a808531461084957600080fd5b806395d89b411461077e578063a22cb46514610793578063a4b41a15146107b3578063a945bf80146107d3578063b88d4fde146107e9578063bceae77b1461046357600080fd5b80637af3a1af116101495780638cc54e7f116101235780638cc54e7f1461070b5780638da5cb5b146107205780639007bd721461073e578063938e3d7b1461075e57600080fd5b80637af3a1af146106b85780637c928fe9146106d857806388dedc14146106eb57600080fd5b806364f64076146105fa5780636b39fca41461062a57806370a0823114610640578063715018a614610660578063763ea95f146106755780637aeb72421461068b57600080fd5b806332cb6b0c1161024f578063518302271161020857806359927044116101e257806359927044146105785780635c975abb146105a05780635ed3e25e146105ba5780636352211e146105da57600080fd5b8063518302271461052457806355f804b31461054357806356b4f6731461056357600080fd5b806332cb6b0c1461047857806333bc1c5c1461048e5780633ccfd60b146104af57806342842e0e146104b7578063438b6300146104d75780634fdd43cb1461050457600080fd5b806318160ddd116102a157806318160ddd146103da57806323b872dd146103fd5780632c4b23341461041d5780632db115441461043d5780632fbba115146104505780632fecf20b1461046357600080fd5b806301ffc9a7146102e957806306fdde031461031e578063081812fc14610340578063095ea7b3146103785780630f15ad8d1461039a57806316c38b3c146103ba575b600080fd5b3480156102f557600080fd5b506103096103043660046124fb565b6108fc565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033361094e565b604051610315919061272a565b34801561034c57600080fd5b5061036061035b36600461256a565b6109e0565b6040516001600160a01b039091168152602001610315565b34801561038457600080fd5b50610398610393366004612468565b610a24565b005b3480156103a657600080fd5b506103986103b536600461256a565b610af7565b3480156103c657600080fd5b506103986103d5366004612492565b610b2f565b3480156103e657600080fd5b506103ef610b6c565b604051908152602001610315565b34801561040957600080fd5b50610398610418366004612386565b610b7a565b34801561042957600080fd5b50610398610438366004612338565b610b8a565b61039861044b36600461256a565b610be2565b61039861045e36600461256a565b610d91565b34801561046f57600080fd5b506103ef600581565b34801561048457600080fd5b506103ef611b3981565b34801561049a57600080fd5b50600f54610309906301000000900460ff1681565b610398610f2a565b3480156104c357600080fd5b506103986104d2366004612386565b6110c3565b3480156104e357600080fd5b506104f76104f2366004612338565b6110de565b60405161031591906126e6565b34801561051057600080fd5b5061039861051f366004612535565b6111bf565b34801561053057600080fd5b50600f5461030990610100900460ff1681565b34801561054f57600080fd5b5061039861055e366004612535565b6111fc565b34801561056f57600080fd5b50610333611239565b34801561058457600080fd5b50600f546103609064010000000090046001600160a01b031681565b3480156105ac57600080fd5b50600f546103099060ff1681565b3480156105c657600080fd5b506103986105d53660046124ad565b6112c7565b3480156105e657600080fd5b506103606105f536600461256a565b611317565b34801561060657600080fd5b50610309610615366004612338565b60106020526000908152604090205460ff1681565b34801561063657600080fd5b506103ef60095481565b34801561064c57600080fd5b506103ef61065b366004612338565b611322565b34801561066c57600080fd5b50610398611371565b34801561068157600080fd5b506103ef600b5481565b34801561069757600080fd5b506103ef6106a6366004612338565b60116020526000908152604090205481565b3480156106c457600080fd5b506103986106d3366004612492565b6113a7565b6103986106e636600461256a565b611400565b3480156106f757600080fd5b50610398610706366004612492565b611640565b34801561071757600080fd5b5061033361169a565b34801561072c57600080fd5b506000546001600160a01b0316610360565b34801561074a57600080fd5b50610398610759366004612583565b6116a7565b34801561076a57600080fd5b50610398610779366004612535565b611753565b34801561078a57600080fd5b50610333611790565b34801561079f57600080fd5b506103986107ae36600461243e565b61179f565b3480156107bf57600080fd5b50600f546103099062010000900460ff1681565b3480156107df57600080fd5b506103ef600a5481565b3480156107f557600080fd5b506103986108043660046123c2565b611835565b34801561081557600080fd5b5061039861082436600461256a565b611879565b34801561083557600080fd5b5061033361084436600461256a565b6118a8565b34801561085557600080fd5b50610398610864366004612492565b6119f0565b34801561087557600080fd5b50610333611a34565b34801561088a57600080fd5b50610309610899366004612353565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156108d357600080fd5b506103986108e2366004612338565b611a43565b3480156108f357600080fd5b50610333611ade565b60006301ffc9a760e01b6001600160e01b03198316148061092d57506380ac58cd60e01b6001600160e01b03198316145b806109485750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461095d90612888565b80601f016020809104026020016040519081016040528092919081815260200182805461098990612888565b80156109d65780601f106109ab576101008083540402835291602001916109d6565b820191906000526020600020905b8154815290600101906020018083116109b957829003601f168201915b5050505050905090565b60006109eb82611aeb565b610a08576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610a2f82611b20565b9050806001600160a01b0316836001600160a01b03161415610a645760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610a9b57610a7e8133610899565b610a9b576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b03163314610b2a5760405162461bcd60e51b8152600401610b219061276a565b60405180910390fd5b600955565b6000546001600160a01b03163314610b595760405162461bcd60e51b8152600401610b219061276a565b600f805460ff1916911515919091179055565b600254600154036000190190565b610b85838383611b90565b505050565b6000546001600160a01b03163314610bb45760405162461bcd60e51b8152600401610b219061276a565b600f80546001600160a01b0390921664010000000002640100000000600160c01b0319909216919091179055565b600f54819060ff1615610c075760405162461bcd60e51b8152600401610b219061279f565b611b3981610c13610b6c565b610c1d91906127fa565b1115610c3b5760405162461bcd60e51b8152600401610b21906127cb565b323314610c5a5760405162461bcd60e51b8152600401610b219061273d565b600f546301000000900460ff16610caa5760405162461bcd60e51b81526020600482015260146024820152735075626c69632073616c6520696e61637469766560601b6044820152606401610b21565b6005821115610cef5760405162461bcd60e51b81526020600482015260116024820152700a2eac2dce8d2e8f240e8dede40d0d2ced607b1b6044820152606401610b21565b600a54336000908152601160205260409020546005610d0e85836127fa565b1115610d525760405162461bcd60e51b8152602060048201526013602482015272155cd95c881b585e081b5a5b9d081b1a5b5a5d606a1b6044820152606401610b21565b610d64610d5f8584612826565b611d33565b610d6e84826127fa565b33600081815260116020526040902091909155610d8b9085611e12565b50505050565b600f54819060ff1615610db65760405162461bcd60e51b8152600401610b219061279f565b611b3981610dc2610b6c565b610dcc91906127fa565b1115610dea5760405162461bcd60e51b8152600401610b21906127cb565b323314610e095760405162461bcd60e51b8152600401610b219061273d565b600f5464010000000090046001600160a01b03163314610e5f5760405162461bcd60e51b81526020600482015260116024820152705465616d206d696e74696e67206f6e6c7960781b6044820152606401610b21565b60095482600b54610e7091906127fa565b1115610eb35760405162461bcd60e51b8152602060048201526012602482015271139bc81d19585b481b5a5b9d1cc81b19599d60721b6044820152606401610b21565b6107d0610ebe610b6c565b1015610f045760405162461bcd60e51b81526020600482015260156024820152745465616d206d696e7473206166746572206672656560581b6044820152606401610b21565b81600b6000828254610f1691906127fa565b90915550610f2690503383611e12565b5050565b6000546001600160a01b03163314610f545760405162461bcd60e51b8152600401610b219061276a565b47600073da09b3ae5987659f1dcb5d0f4593310616d4700c612710610f7b846109c4612826565b610f859190612812565b604051600081818185875af1925050503d8060008114610fc1576040519150601f19603f3d011682016040523d82523d6000602084013e610fc6565b606091505b50509050806110175760405162461bcd60e51b815260206004820152601760248201527f466f756e646572207472616e73666572206661696c65640000000000000000006044820152606401610b21565b600f546040516401000000009091046001600160a01b0316904790600081818185875af1925050503d806000811461106b576040519150601f19603f3d011682016040523d82523d6000602084013e611070565b606091505b50508091505080610f265760405162461bcd60e51b815260206004820181905260248201527f5465616d202872656d61696e696e6729207472616e73666572206661696c65646044820152606401610b21565b610b8583838360405180602001604052806000815250611835565b606060006110eb83611322565b905060008167ffffffffffffffff81111561110857611108612934565b604051908082528060200260200182016040528015611131578160200160208202803683370190505b509050600160005b838110801561114a5750611b398211155b156111b557600061115a83611317565b9050866001600160a01b0316816001600160a01b031614156111a257828483815181106111895761118961291e565b60209081029190910101528161119e816128c3565b9250505b826111ac816128c3565b93505050611139565b5090949350505050565b6000546001600160a01b031633146111e95760405162461bcd60e51b8152600401610b219061276a565b8051610f2690600d9060208401906121e2565b6000546001600160a01b031633146112265760405162461bcd60e51b8152600401610b219061276a565b8051610f2690600c9060208401906121e2565b600e805461124690612888565b80601f016020809104026020016040519081016040528092919081815260200182805461127290612888565b80156112bf5780601f10611294576101008083540402835291602001916112bf565b820191906000526020600020905b8154815290600101906020018083116112a257829003601f168201915b505050505081565b6000546001600160a01b031633146112f15760405162461bcd60e51b8152600401610b219061276a565b600f805461ff001916610100841515021790558051610b8590600c9060208401906121e2565b600061094882611b20565b60006001600160a01b03821661134b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b0316331461139b5760405162461bcd60e51b8152600401610b219061276a565b6113a56000611e2c565b565b6000546001600160a01b031633146113d15760405162461bcd60e51b8152600401610b219061276a565b600f805463ffff000019166301000000921580159390930262ff00001916176201000092909202919091179055565b600f54819060ff16156114255760405162461bcd60e51b8152600401610b219061279f565b611b3981611431610b6c565b61143b91906127fa565b11156114595760405162461bcd60e51b8152600401610b21906127cb565b3233146114785760405162461bcd60e51b8152600401610b219061273d565b600f5462010000900460ff166114c55760405162461bcd60e51b8152602060048201526012602482015271467265652073616c6520696e61637469766560701b6044820152606401610b21565b34156115085760405162461bcd60e51b815260206004820152601260248201527154686973207068617365206973206672656560701b6044820152606401610b21565b816001146115465760405162461bcd60e51b815260206004820152600b60248201526a4f6e6c792031206672656560a81b6044820152606401610b21565b600082611551610b6c565b61155b91906127fa565b90506107d08111156115a85760405162461bcd60e51b81526020600482015260166024820152754e6f7420656e6f756768206672656520737570706c7960501b6044820152606401610b21565b3360009081526010602052604090205460ff16156115fe5760405162461bcd60e51b8152602060048201526013602482015272155cd95c881b585e08199c9959481b1a5b5a5d606a1b6044820152606401610b21565b336000908152601060205260409020805460ff191660011790556107d081141561163657600f805463ffff0000191663010000001790555b610b853384611e12565b6000546001600160a01b0316331461166a5760405162461bcd60e51b8152600401610b219061276a565b600f805463ffff0000191662010000921580159390930263ff000000191617630100000092909202919091179055565b600d805461124690612888565b6000546001600160a01b031633146116d15760405162461bcd60e51b8152600401610b219061276a565b600f54829060ff16156116f65760405162461bcd60e51b8152600401610b219061279f565b611b3981611702610b6c565b61170c91906127fa565b111561172a5760405162461bcd60e51b8152600401610b21906127cb565b3233146117495760405162461bcd60e51b8152600401610b219061273d565b610b858284611e12565b6000546001600160a01b0316331461177d5760405162461bcd60e51b8152600401610b219061276a565b8051610f2690600e9060208401906121e2565b60606004805461095d90612888565b6001600160a01b0382163314156117c95760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611840848484611b90565b6001600160a01b0383163b15610d8b5761185c84848484611e7c565b610d8b576040516368d2bf6b60e11b815260040160405180910390fd5b6000546001600160a01b031633146118a35760405162461bcd60e51b8152600401610b219061276a565b600a55565b60606118b382611aeb565b6119175760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b21565b600f54610100900460ff161561195957600c61193283611f74565b6040516020016119439291906125ee565b6040516020818303038152906040529050919050565b600d805461196690612888565b80601f016020809104026020016040519081016040528092919081815260200182805461199290612888565b80156119df5780601f106119b4576101008083540402835291602001916119df565b820191906000526020600020905b8154815290600101906020018083116119c257829003601f168201915b50505050509050919050565b919050565b6000546001600160a01b03163314611a1a5760405162461bcd60e51b8152600401610b219061276a565b600f80549115156101000261ff0019909216919091179055565b6060600e805461095d90612888565b6000546001600160a01b03163314611a6d5760405162461bcd60e51b8152600401610b219061276a565b6001600160a01b038116611ad25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b21565b611adb81611e2c565b50565b600c805461124690612888565b600081600111158015611aff575060015482105b8015610948575050600090815260056020526040902054600160e01b161590565b60008180600111611b7757600154811015611b7757600081815260056020526040902054600160e01b8116611b75575b80611b6e575060001901600081815260056020526040902054611b50565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611b9b82611b20565b9050836001600160a01b0316816001600160a01b031614611bce5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611bec5750611bec8533610899565b80611c07575033611bfc846109e0565b6001600160a01b0316145b905080611c2757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611c4e57604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091529020600160e11b4260a01b861781179091558216611ceb5760018301600081815260056020526040902054611ce9576001548114611ce95760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b80341115611dcc57600033611d488334612845565b604051600081818185875af1925050503d8060008114611d84576040519150601f19603f3d011682016040523d82523d6000602084013e611d89565b606091505b5050905080610f265760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610b21565b80341015611adb5760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b6044820152606401610b21565b610f26828260405180602001604052806000815250612072565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611eb19033908990889088906004016126a9565b602060405180830381600087803b158015611ecb57600080fd5b505af1925050508015611efb575060408051601f3d908101601f19168201909252611ef891810190612518565b60015b611f56573d808015611f29576040519150601f19603f3d011682016040523d82523d6000602084013e611f2e565b606091505b508051611f4e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081611f985750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fc25780611fac816128c3565b9150611fbb9050600a83612812565b9150611f9c565b60008167ffffffffffffffff811115611fdd57611fdd612934565b6040519080825280601f01601f191660200182016040528015612007576020820181803683370190505b5090505b8415611f6c5761201c600183612845565b9150612029600a866128de565b6120349060306127fa565b60f81b8183815181106120495761204961291e565b60200101906001600160f81b031916908160001a90535061206b600a86612812565b945061200b565b6001546001600160a01b03841661209b57604051622e076360e81b815260040160405180910390fd5b826120b95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b1561218e575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121576000878480600101955087611e7c565b612174576040516368d2bf6b60e11b815260040160405180910390fd5b80821061210c57826001541461218957600080fd5b6121d3565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061218f575b50600155610d8b600085838684565b8280546121ee90612888565b90600052602060002090601f0160209004810192826122105760008555612256565b82601f1061222957805160ff1916838001178555612256565b82800160010185558215612256579182015b8281111561225657825182559160200191906001019061223b565b50612262929150612266565b5090565b5b808211156122625760008155600101612267565b600067ffffffffffffffff8084111561229657612296612934565b604051601f8501601f19908116603f011681019082821181831017156122be576122be612934565b816040528093508581528686860111156122d757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146119eb57600080fd5b803580151581146119eb57600080fd5b600082601f83011261232957600080fd5b611b6e8383356020850161227b565b60006020828403121561234a57600080fd5b611b6e826122f1565b6000806040838503121561236657600080fd5b61236f836122f1565b915061237d602084016122f1565b90509250929050565b60008060006060848603121561239b57600080fd5b6123a4846122f1565b92506123b2602085016122f1565b9150604084013590509250925092565b600080600080608085870312156123d857600080fd5b6123e1856122f1565b93506123ef602086016122f1565b925060408501359150606085013567ffffffffffffffff81111561241257600080fd5b8501601f8101871361242357600080fd5b6124328782356020840161227b565b91505092959194509250565b6000806040838503121561245157600080fd5b61245a836122f1565b915061237d60208401612308565b6000806040838503121561247b57600080fd5b612484836122f1565b946020939093013593505050565b6000602082840312156124a457600080fd5b611b6e82612308565b600080604083850312156124c057600080fd5b6124c983612308565b9150602083013567ffffffffffffffff8111156124e557600080fd5b6124f185828601612318565b9150509250929050565b60006020828403121561250d57600080fd5b8135611b6e8161294a565b60006020828403121561252a57600080fd5b8151611b6e8161294a565b60006020828403121561254757600080fd5b813567ffffffffffffffff81111561255e57600080fd5b611f6c84828501612318565b60006020828403121561257c57600080fd5b5035919050565b6000806040838503121561259657600080fd5b8235915061237d602084016122f1565b600081518084526125be81602086016020860161285c565b601f01601f19169290920160200192915050565b600081516125e481856020860161285c565b9290920192915050565b600080845481600182811c91508083168061260a57607f831692505b602080841082141561262a57634e487b7160e01b86526022600452602486fd5b81801561263e576001811461264f5761267c565b60ff1986168952848901965061267c565b60008b81526020902060005b868110156126745781548b82015290850190830161265b565b505084890196505b5050505050506126a061268f82866125d2565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126dc908301846125a6565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561271e57835183529284019291840191600101612702565b50909695505050505050565b602081526000611b6e60208301846125a6565b6020808252601390820152724e6f20636f6e7472616374206d696e74696e6760681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526012908201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604082015260600190565b602080825260159082015274139bdd08195b9bdd59da081b5a5b9d1cc81b19599d605a1b604082015260600190565b6000821982111561280d5761280d6128f2565b500190565b60008261282157612821612908565b500490565b6000816000190483118215151615612840576128406128f2565b500290565b600082821015612857576128576128f2565b500390565b60005b8381101561287757818101518382015260200161285f565b83811115610d8b5750506000910152565b600181811c9082168061289c57607f821691505b602082108114156128bd57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128d7576128d76128f2565b5060010190565b6000826128ed576128ed612908565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611adb57600080fdfea26469706673582212205388acf0853b30c23afaeb4420a4d1386e84253070899f9a71e4779e21bb6af464736f6c63430008070033
Deployed Bytecode Sourcemap
44318:8049:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18620:615;;;;;;;;;;-1:-1:-1;18620:615:0;;;;;:::i;:::-;;:::i;:::-;;;8641:14:1;;8634:22;8616:41;;8604:2;8589:18;18620:615:0;;;;;;;;23633:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25701:204::-;;;;;;;;;;-1:-1:-1;25701:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7302:32:1;;;7284:51;;7272:2;7257:18;25701:204:0;7138:203:1;25161:474:0;;;;;;;;;;-1:-1:-1;25161:474:0;;;;;:::i;:::-;;:::i;:::-;;49505:110;;;;;;;;;;-1:-1:-1;49505:110:0;;;;;:::i;:::-;;:::i;50609:83::-;;;;;;;;;;-1:-1:-1;50609:83:0;;;;;:::i;:::-;;:::i;17674:315::-;;;;;;;;;;;;;:::i;:::-;;;16491:25:1;;;16479:2;16464:18;17674:315:0;16345:177:1;26587:170:0;;;;;;;;;;-1:-1:-1;26587:170:0;;;;;:::i;:::-;;:::i;51053:111::-;;;;;;;;;;-1:-1:-1;51053:111:0;;;;;:::i;:::-;;:::i;47220:571::-;;;;;;:::i;:::-;;:::i;46163:388::-;;;;;;:::i;:::-;;:::i;44509:49::-;;;;;;;;;;;;44557:1;44509:49;;44370:41;;;;;;;;;;;;44407:4;44370:41;;45069:30;;;;;;;;;;-1:-1:-1;45069:30:0;;;;;;;;;;;51172:585;;;:::i;26828:185::-;;;;;;;;;;-1:-1:-1;26828:185:0;;;;;:::i;:::-;;:::i;47852:689::-;;;;;;;;;;-1:-1:-1;47852:689:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49920:130::-;;;;;;;;;;-1:-1:-1;49920:130:0;;;;;:::i;:::-;;:::i;44998:28::-;;;;;;;;;;-1:-1:-1;44998:28:0;;;;;;;;;;;49739:102;;;;;;;;;;-1:-1:-1;49739:102:0;;;;;:::i;:::-;;:::i;44872:84::-;;;;;;;;;;;;;:::i;45201:70::-;;;;;;;;;;-1:-1:-1;45201:70:0;;;;;;;-1:-1:-1;;;;;45201:70:0;;;44965:26;;;;;;;;;;-1:-1:-1;44965:26:0;;;;;;;;50058:155;;;;;;;;;;-1:-1:-1;50058:155:0;;;;;:::i;:::-;;:::i;23422:144::-;;;;;;;;;;-1:-1:-1;23422:144:0;;;;;:::i;:::-;;:::i;45280:46::-;;;;;;;;;;-1:-1:-1;45280:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;44418:33;;;;;;;;;;;;;;;;19299:224;;;;;;;;;;-1:-1:-1;19299:224:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;44619:32::-;;;;;;;;;;;;;;;;45333:47;;;;;;;;;;-1:-1:-1;45333:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;50795:123;;;;;;;;;;-1:-1:-1;50795:123:0;;;;;:::i;:::-;;:::i;46563:649::-;;;;;;:::i;:::-;;:::i;50924:121::-;;;;;;;;;;-1:-1:-1;50924:121:0;;;;;:::i;:::-;;:::i;44694:81::-;;;;;;;;;;;;;:::i;4079:87::-;;;;;;;;;;-1:-1:-1;4125:7:0;4152:6;-1:-1:-1;;;;;4152:6:0;4079:87;;51901:146;;;;;;;;;;-1:-1:-1;51901:146:0;;;;;:::i;:::-;;:::i;50282:115::-;;;;;;;;;;-1:-1:-1;50282:115:0;;;;;:::i;:::-;;:::i;23802:104::-;;;;;;;;;;;;;:::i;25977:308::-;;;;;;;;;;-1:-1:-1;25977:308:0;;;;;:::i;:::-;;:::i;45035:27::-;;;;;;;;;;-1:-1:-1;45035:27:0;;;;;;;;;;;44460:40;;;;;;;;;;;;;;;;27084:396;;;;;;;;;;-1:-1:-1;27084:396:0;;;;;:::i;:::-;;:::i;49623:108::-;;;;;;;;;;-1:-1:-1;49623:108:0;;;;;:::i;:::-;;:::i;48549:608::-;;;;;;;;;;-1:-1:-1;48549:608:0;;;;;:::i;:::-;;:::i;50700:87::-;;;;;;;;;;-1:-1:-1;50700:87:0;;;;;:::i;:::-;;:::i;49344:97::-;;;;;;;;;;;;;:::i;26356:164::-;;;;;;;;;;-1:-1:-1;26356:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26477:25:0;;;26453:4;26477:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26356:164;4988:201;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;44660:25::-;;;;;;;;;;;;;:::i;18620:615::-;18705:4;-1:-1:-1;;;;;;;;;19005:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;19082:25:0;;;19005:102;:179;;;-1:-1:-1;;;;;;;;;;19159:25:0;;;19005:179;18985:199;18620:615;-1:-1:-1;;18620:615:0:o;23633:100::-;23687:13;23720:5;23713:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23633:100;:::o;25701:204::-;25769:7;25794:16;25802:7;25794;:16::i;:::-;25789:64;;25819:34;;-1:-1:-1;;;25819:34:0;;;;;;;;;;;25789:64;-1:-1:-1;25873:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25873:24:0;;25701:204::o;25161:474::-;25234:13;25266:27;25285:7;25266:18;:27::i;:::-;25234:61;;25316:5;-1:-1:-1;;;;;25310:11:0;:2;-1:-1:-1;;;;;25310:11:0;;25306:48;;;25330:24;;-1:-1:-1;;;25330:24:0;;;;;;;;;;;25306:48;41804:10;-1:-1:-1;;;;;25371:28:0;;;25367:175;;25419:44;25436:5;41804:10;26356:164;:::i;25419:44::-;25414:128;;25491:35;;-1:-1:-1;;;25491:35:0;;;;;;;;;;;25414:128;25554:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;25554:29:0;-1:-1:-1;;;;;25554:29:0;;;;;;;;;25599:28;;25554:24;;25599:28;;;;;;;25223:412;25161:474;;:::o;49505:110::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;;;;;;;;;49579:13:::1;:28:::0;49505:110::o;50609:83::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50669:6:::1;:15:::0;;-1:-1:-1;;50669:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50609:83::o;17674:315::-;17940:12;;45724:1;17924:13;:28;-1:-1:-1;;17924:46:0;;17674:315::o;26587:170::-;26721:28;26731:4;26737:2;26741:7;26721:9;:28::i;:::-;26587:170;;;:::o;51053:111::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;51132:10:::1;:24:::0;;-1:-1:-1;;;;;51132:24:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;51132:24:0;;::::1;::::0;;;::::1;::::0;;51053:111::o;47220:571::-;52166:6;;47290:8;;52166:6;;52165:7;52157:38;;;;-1:-1:-1;;;52157:38:0;;;;;;;:::i;:::-;44407:4;52230:8;52214:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;52206:72;;;;-1:-1:-1;;;52206:72:0;;;;;;;:::i;:::-;52297:9;52310:10;52297:23;52289:55;;;;-1:-1:-1;;;52289:55:0;;;;;;;:::i;:::-;47319:10:::1;::::0;;;::::1;;;47311:43;;;::::0;-1:-1:-1;;;47311:43:0;;14804:2:1;47311:43:0::1;::::0;::::1;14786:21:1::0;14843:2;14823:18;;;14816:30;-1:-1:-1;;;14862:18:1;;;14855:50;14922:18;;47311:43:0::1;14602:344:1::0;47311:43:0::1;44557:1;47373:8;:33;;47365:63;;;::::0;-1:-1:-1;;;47365:63:0;;15153:2:1;47365:63:0::1;::::0;::::1;15135:21:1::0;15192:2;15172:18;;;15165:30;-1:-1:-1;;;15211:18:1;;;15204:47;15268:18;;47365:63:0::1;14951:341:1::0;47365:63:0::1;47457:11;::::0;47512:10:::1;47441:13;47499:24:::0;;;:12:::1;:24;::::0;;;;;44609:1:::1;47560:20;47572:8:::0;47499:24;47560:20:::1;:::i;:::-;:41;;47552:73;;;::::0;-1:-1:-1;;;47552:73:0;;11581:2:1;47552:73:0::1;::::0;::::1;11563:21:1::0;11620:2;11600:18;;;11593:30;-1:-1:-1;;;11639:18:1;;;11632:49;11698:18;;47552:73:0::1;11379:343:1::0;47552:73:0::1;47646:31;47660:16;47668:8:::0;47660:5;:16:::1;:::i;:::-;47646:13;:31::i;:::-;47718:20;47730:8:::0;47718:9;:20:::1;:::i;:::-;47703:10;47690:24;::::0;;;:12:::1;:24;::::0;;;;:49;;;;47752:31:::1;::::0;47774:8;47752:9:::1;:31::i;:::-;47300:491;;47220:571:::0;;:::o;46163:388::-;52166:6;;46229:8;;52166:6;;52165:7;52157:38;;;;-1:-1:-1;;;52157:38:0;;;;;;;:::i;:::-;44407:4;52230:8;52214:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;52206:72;;;;-1:-1:-1;;;52206:72:0;;;;;;;:::i;:::-;52297:9;52310:10;52297:23;52289:55;;;;-1:-1:-1;;;52289:55:0;;;;;;;:::i;:::-;46272:10:::1;::::0;;;::::1;-1:-1:-1::0;;;;;46272:10:0::1;46258;:24;46250:54;;;::::0;-1:-1:-1;;;46250:54:0;;10537:2:1;46250:54:0::1;::::0;::::1;10519:21:1::0;10576:2;10556:18;;;10549:30;-1:-1:-1;;;10595:18:1;;;10588:47;10652:18;;46250:54:0::1;10335:341:1::0;46250:54:0::1;46355:13;;46343:8;46323:17;;:28;;;;:::i;:::-;:45;;46315:76;;;::::0;-1:-1:-1;;;46315:76:0;;13762:2:1;46315:76:0::1;::::0;::::1;13744:21:1::0;13801:2;13781:18;;;13774:30;-1:-1:-1;;;13820:18:1;;;13813:48;13878:18;;46315:76:0::1;13560:342:1::0;46315:76:0::1;46427:4;46410:13;:11;:13::i;:::-;:21;;46402:55;;;::::0;-1:-1:-1;;;46402:55:0;;11231:2:1;46402:55:0::1;::::0;::::1;11213:21:1::0;11270:2;11250:18;;;11243:30;-1:-1:-1;;;11289:18:1;;;11282:51;11350:18;;46402:55:0::1;11029:345:1::0;46402:55:0::1;46491:8;46470:17;;:29;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;46512:31:0::1;::::0;-1:-1:-1;46522:10:0::1;46534:8:::0;46512:9:::1;:31::i;:::-;46163:388:::0;;:::o;51172:585::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;51319:21:::1;51297:19;45152:42;51443:5;51421:18;51319:21:::0;51435:4:::1;51421:18;:::i;:::-;51420:28;;;;:::i;:::-;51369:94;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51353:110;;;51482:4;51474:40;;;::::0;-1:-1:-1;;;51474:40:0;;9434:2:1;51474:40:0::1;::::0;::::1;9416:21:1::0;9473:2;9453:18;;;9446:30;9512:25;9492:18;;;9485:53;9555:18;;51474:40:0::1;9232:347:1::0;51474:40:0::1;51615:10;::::0;51607:82:::1;::::0;51615:10;;;::::1;-1:-1:-1::0;;;;;51615:10:0::1;::::0;51653:21:::1;::::0;51607:82:::1;::::0;;;51653:21;51615:10;51607:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51596:93;;;;;51708:4;51700:49;;;::::0;-1:-1:-1;;;51700:49:0;;11929:2:1;51700:49:0::1;::::0;::::1;11911:21:1::0;;;11948:18;;;11941:30;12007:34;11987:18;;;11980:62;12059:18;;51700:49:0::1;11727:356:1::0;26828:185:0;26966:39;26983:4;26989:2;26993:7;26966:39;;;;;;;;;;;;:16;:39::i;47852:689::-;47912:16;47946:23;47972:17;47982:6;47972:9;:17::i;:::-;47946:43;;48000:30;48047:15;48033:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48033:30:0;-1:-1:-1;48000:63:0;-1:-1:-1;48099:1:0;48074:22;48151:350;48176:15;48158;:33;:65;;;;;44407:4;48195:14;:28;;48158:65;48151:350;;;48240:25;48268:23;48276:14;48268:7;:23::i;:::-;48240:51;;48333:6;-1:-1:-1;;;;;48312:27:0;:17;-1:-1:-1;;;;;48312:27:0;;48308:153;;;48393:14;48360:13;48374:15;48360:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;48428:17;;;;:::i;:::-;;;;48308:153;48473:16;;;;:::i;:::-;;;;48225:276;48151:350;;;-1:-1:-1;48520:13:0;;47852:689;-1:-1:-1;;;;47852:689:0:o;49920:130::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50012:30;;::::1;::::0;:9:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;49739:102::-:0;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49811:22;;::::1;::::0;:11:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;44872:84::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50058:155::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50152:8:::1;:20:::0;;-1:-1:-1;;50152:20:0::1;;::::0;::::1;;;;::::0;;50183:22;;::::1;::::0;:11:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;23422:144::-:0;23486:7;23529:27;23548:7;23529:18;:27::i;19299:224::-;19363:7;-1:-1:-1;;;;;19387:19:0;;19383:60;;19415:28;;-1:-1:-1;;;19415:28:0;;;;;;;;;;;19383:60;-1:-1:-1;;;;;;19461:25:0;;;;;:18;:25;;;;;;14638:13;19461:54;;19299:224::o;4730:103::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;50795:123::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50862:10:::1;:19:::0;;-1:-1:-1;;50892:18:0;50862:19;;::::1;::::0;::::1;::::0;;;::::1;-1:-1:-1::0;;50892:18:0;;;;;;::::1;::::0;;;::::1;::::0;;50795:123::o;46563:649::-;52166:6;;46631:8;;52166:6;;52165:7;52157:38;;;;-1:-1:-1;;;52157:38:0;;;;;;;:::i;:::-;44407:4;52230:8;52214:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;52206:72;;;;-1:-1:-1;;;52206:72:0;;;;;;;:::i;:::-;52297:9;52310:10;52297:23;52289:55;;;;-1:-1:-1;;;52289:55:0;;;;;;;:::i;:::-;46660:8:::1;::::0;;;::::1;;;46652:39;;;::::0;-1:-1:-1;;;46652:39:0;;12290:2:1;46652:39:0::1;::::0;::::1;12272:21:1::0;12329:2;12309:18;;;12302:30;-1:-1:-1;;;12348:18:1;;;12341:48;12406:18;;46652:39:0::1;12088:342:1::0;46652:39:0::1;46710:9;:14:::0;46702:45:::1;;;::::0;-1:-1:-1;;;46702:45:0;;14109:2:1;46702:45:0::1;::::0;::::1;14091:21:1::0;14148:2;14128:18;;;14121:30;-1:-1:-1;;;14167:18:1;;;14160:48;14225:18;;46702:45:0::1;13907:342:1::0;46702:45:0::1;46766:8;46778:1;46766:13;46758:37;;;::::0;-1:-1:-1;;;46758:37:0;;9094:2:1;46758:37:0::1;::::0;::::1;9076:21:1::0;9133:2;9113:18;;;9106:30;-1:-1:-1;;;9152:18:1;;;9145:41;9203:18;;46758:37:0::1;8892:335:1::0;46758:37:0::1;46808:17;46844:8;46828:13;:11;:13::i;:::-;:24;;;;:::i;:::-;46808:44;;46894:4;46881:9;:17;;46873:52;;;::::0;-1:-1:-1;;;46873:52:0;;15846:2:1;46873:52:0::1;::::0;::::1;15828:21:1::0;15885:2;15865:18;;;15858:30;-1:-1:-1;;;15904:18:1;;;15897:52;15966:18;;46873:52:0::1;15644:346:1::0;46873:52:0::1;46962:10;46947:26;::::0;;;:14:::1;:26;::::0;;;;;::::1;;46946:27;46938:59;;;::::0;-1:-1:-1;;;46938:59:0;;12998:2:1;46938:59:0::1;::::0;::::1;12980:21:1::0;13037:2;13017:18;;;13010:30;-1:-1:-1;;;13056:18:1;;;13049:49;13115:18;;46938:59:0::1;12796:343:1::0;46938:59:0::1;47033:10;47018:26;::::0;;;:14:::1;:26;::::0;;;;:33;;-1:-1:-1;;47018:33:0::1;47047:4;47018:33;::::0;;47080:4:::1;47067:17:::0;::::1;47064:97;;;47101:8;:16:::0;;-1:-1:-1;;47132:17:0;;::::1;::::0;;47064:97:::1;47173:31;47183:10;47195:8;47173:9;:31::i;50924:121::-:0;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50989:8:::1;:17:::0;;-1:-1:-1;;51017:20:0;50989:17;;::::1;::::0;::::1;::::0;;;::::1;-1:-1:-1::0;;51017:20:0;;;;;;::::1;::::0;;;::::1;::::0;;50924:121::o;44694:81::-;;;;;;;:::i;51901:146::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;52166:6:::1;::::0;51989:8;;52166:6:::1;;52165:7;52157:38;;;;-1:-1:-1::0;;;52157:38:0::1;;;;;;;:::i;:::-;44407:4;52230:8;52214:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;52206:72;;;;-1:-1:-1::0;;;52206:72:0::1;;;;;;;:::i;:::-;52297:9;52310:10;52297:23;52289:55;;;;-1:-1:-1::0;;;52289:55:0::1;;;;;;;:::i;:::-;52010:29:::2;52020:8;52030;52010:9;:29::i;50282:115::-:0;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50362:27;;::::1;::::0;:12:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;23802:104::-:0;23858:13;23891:7;23884:14;;;;;:::i;25977:308::-;-1:-1:-1;;;;;26076:31:0;;41804:10;26076:31;26072:61;;;26116:17;;-1:-1:-1;;;26116:17:0;;;;;;;;;;;26072:61;41804:10;26146:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26146:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26146:60:0;;;;;;;;;;26222:55;;8616:41:1;;;26146:49:0;;41804:10;26222:55;;8589:18:1;26222:55:0;;;;;;;25977:308;;:::o;27084:396::-;27251:28;27261:4;27267:2;27271:7;27251:9;:28::i;:::-;-1:-1:-1;;;;;27294:14:0;;;:19;27290:183;;27333:56;27364:4;27370:2;27374:7;27383:5;27333:30;:56::i;:::-;27328:145;;27417:40;;-1:-1:-1;;;27417:40:0;;;;;;;;;;;49623:108;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49697:11:::1;:26:::0;49623:108::o;48549:608::-;48615:13;48880:17;48888:8;48880:7;:17::i;:::-;48872:77;;;;-1:-1:-1;;;48872:77:0;;13346:2:1;48872:77:0;;;13328:21:1;13385:2;13365:18;;;13358:30;13424:34;13404:18;;;13397:62;-1:-1:-1;;;13475:18:1;;;13468:45;13530:19;;48872:77:0;13144:411:1;48872:77:0;48974:8;;;;;;;48970:180;;;49030:11;49043:26;49060:8;49043:16;:26::i;:::-;49013:66;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48999:81;;48549:608;;;:::o;48970:180::-;49129:9;49122:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48549:608;;;:::o;48970:180::-;48549:608;;;:::o;50700:87::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50762:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;50762:17:0;;::::1;::::0;;;::::1;::::0;;50700:87::o;49344:97::-;49388:13;49421:12;49414:19;;;;;:::i;4988:201::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;41804:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;9786:2:1;5069:73:0::1;::::0;::::1;9768:21:1::0;9825:2;9805:18;;;9798:30;9864:34;9844:18;;;9837:62;-1:-1:-1;;;9915:18:1;;;9908:36;9961:19;;5069:73:0::1;9584:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;44660:25::-;;;;;;;:::i;27735:273::-;27792:4;27848:7;45724:1;27829:26;;:66;;;;;27882:13;;27872:7;:23;27829:66;:152;;;;-1:-1:-1;;27933:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;27933:43:0;:48;;27735:273::o;20937:1129::-;21004:7;21039;;45724:1;21088:23;21084:915;;21141:13;;21134:4;:20;21130:869;;;21179:14;21196:23;;;:17;:23;;;;;;-1:-1:-1;;;21285:23:0;;21281:699;;21804:113;21811:11;21804:113;;-1:-1:-1;;;21882:6:0;21864:25;;;;:17;:25;;;;;;21804:113;;;21950:6;20937:1129;-1:-1:-1;;;20937:1129:0:o;21281:699::-;21156:843;21130:869;22027:31;;-1:-1:-1;;;22027:31:0;;;;;;;;;;;32974:2515;33089:27;33119;33138:7;33119:18;:27::i;:::-;33089:57;;33204:4;-1:-1:-1;;;;;33163:45:0;33179:19;-1:-1:-1;;;;;33163:45:0;;33159:86;;33217:28;;-1:-1:-1;;;33217:28:0;;;;;;;;;;;33159:86;33258:22;41804:10;-1:-1:-1;;;;;33284:27:0;;;;:87;;-1:-1:-1;33328:43:0;33345:4;41804:10;26356:164;:::i;33328:43::-;33284:147;;;-1:-1:-1;41804:10:0;33388:20;33400:7;33388:11;:20::i;:::-;-1:-1:-1;;;;;33388:43:0;;33284:147;33258:174;;33450:17;33445:66;;33476:35;;-1:-1:-1;;;33476:35:0;;;;;;;;;;;33445:66;-1:-1:-1;;;;;33526:16:0;;33522:52;;33551:23;;-1:-1:-1;;;33551:23:0;;;;;;;;;;;33522:52;33703:24;;;;:15;:24;;;;;;;;33696:31;;-1:-1:-1;;;;;;33696:31:0;;;-1:-1:-1;;;;;34095:24:0;;;;;:18;:24;;;;;34093:26;;-1:-1:-1;;34093:26:0;;;34164:22;;;;;;;34162:24;;-1:-1:-1;34162:24:0;;;34457:26;;;:17;:26;;;;;-1:-1:-1;;;34545:15:0;15292:3;34545:41;34503:84;;:128;;34457:174;;;34751:46;;34747:626;;34855:1;34845:11;;34823:19;34978:30;;;:17;:30;;;;;;34974:384;;35116:13;;35101:11;:28;35097:242;;35263:30;;;;:17;:30;;;;;:52;;;35097:242;34804:569;34747:626;35420:7;35416:2;-1:-1:-1;;;;;35401:27:0;35410:4;-1:-1:-1;;;;;35401:27:0;;;;;;;;;;;33078:2411;;32974:2515;;;:::o;45741:359::-;45814:5;45802:9;:17;45798:295;;;45837:9;45860:10;45903:17;45915:5;45903:9;:17;:::i;:::-;45852:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45836:104;;;45963:4;45955:32;;;;-1:-1:-1;;;45955:32:0;;10193:2:1;45955:32:0;;;10175:21:1;10232:2;10212:18;;;10205:30;-1:-1:-1;;;10251:18:1;;;10244:45;10306:18;;45955:32:0;9991:339:1;45798:295:0;46030:5;46018:9;:17;46014:79;;;46052:29;;-1:-1:-1;;;46052:29:0;;14456:2:1;46052:29:0;;;14438:21:1;14495:2;14475:18;;;14468:30;-1:-1:-1;;;14514:18:1;;;14507:49;14573:18;;46052:29:0;14254:343:1;28092:104:0;28161:27;28171:2;28175:8;28161:27;;;;;;;;;;;;:9;:27::i;5349:191::-;5423:16;5442:6;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;5492:40;;5442:6;;;;;;;5492:40;;5423:16;5492:40;5412:128;5349:191;:::o;39186:716::-;39370:88;;-1:-1:-1;;;39370:88:0;;39349:4;;-1:-1:-1;;;;;39370:45:0;;;;;:88;;41804:10;;39437:4;;39443:7;;39452:5;;39370:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39370:88:0;;;;;;;;-1:-1:-1;;39370:88:0;;;;;;;;;;;;:::i;:::-;;;39366:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39653:13:0;;39649:235;;39699:40;;-1:-1:-1;;;39699:40:0;;;;;;;;;;;39649:235;39842:6;39836:13;39827:6;39823:2;39819:15;39812:38;39366:529;-1:-1:-1;;;;;;39529:64:0;-1:-1:-1;;;39529:64:0;;-1:-1:-1;39366:529:0;39186:716;;;;;;:::o;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;28569:2236;28715:13;;-1:-1:-1;;;;;28743:16:0;;28739:48;;28768:19;;-1:-1:-1;;;28768:19:0;;;;;;;;;;;28739:48;28802:13;28798:44;;28824:18;;-1:-1:-1;;;28824:18:0;;;;;;;;;;;28798:44;-1:-1:-1;;;;;29391:22:0;;;;;;:18;:22;;;;14775:2;29391:22;;;:70;;29429:31;29417:44;;29391:70;;;29704:31;;;:17;:31;;;;;29797:15;15292:3;29797:41;29755:84;;-1:-1:-1;29875:13:0;;15555:3;29860:56;29755:162;29704:213;;:31;;29998:23;;;;30042:14;:19;30038:635;;30082:313;30113:38;;30138:12;;-1:-1:-1;;;;;30113:38:0;;;30130:1;;30113:38;;30130:1;;30113:38;30179:69;30218:1;30222:2;30226:14;;;;;;30242:5;30179:30;:69::i;:::-;30174:174;;30284:40;;-1:-1:-1;;;30284:40:0;;;;;;;;;;;30174:174;30390:3;30375:12;:18;30082:313;;30476:12;30459:13;;:29;30455:43;;30490:8;;;30455:43;30038:635;;;30539:119;30570:40;;30595:14;;;;;-1:-1:-1;;;;;30570:40:0;;;30587:1;;30570:40;;30587:1;;30570:40;30653:3;30638:12;:18;30539:119;;30038:635;-1:-1:-1;30687:13:0;:28;30737:60;30766:1;30770:2;30774:12;30788:8;30737:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;828:160;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:221;1036:5;1089:3;1082:4;1074:6;1070:17;1066:27;1056:55;;1107:1;1104;1097:12;1056:55;1129:79;1204:3;1195:6;1182:20;1175:4;1167:6;1163:17;1129:79;:::i;1219:186::-;1278:6;1331:2;1319:9;1310:7;1306:23;1302:32;1299:52;;;1347:1;1344;1337:12;1299:52;1370:29;1389:9;1370:29;:::i;1410:260::-;1478:6;1486;1539:2;1527:9;1518:7;1514:23;1510:32;1507:52;;;1555:1;1552;1545:12;1507:52;1578:29;1597:9;1578:29;:::i;:::-;1568:39;;1626:38;1660:2;1649:9;1645:18;1626:38;:::i;:::-;1616:48;;1410:260;;;;;:::o;1675:328::-;1752:6;1760;1768;1821:2;1809:9;1800:7;1796:23;1792:32;1789:52;;;1837:1;1834;1827:12;1789:52;1860:29;1879:9;1860:29;:::i;:::-;1850:39;;1908:38;1942:2;1931:9;1927:18;1908:38;:::i;:::-;1898:48;;1993:2;1982:9;1978:18;1965:32;1955:42;;1675:328;;;;;:::o;2008:666::-;2103:6;2111;2119;2127;2180:3;2168:9;2159:7;2155:23;2151:33;2148:53;;;2197:1;2194;2187:12;2148:53;2220:29;2239:9;2220:29;:::i;:::-;2210:39;;2268:38;2302:2;2291:9;2287:18;2268:38;:::i;:::-;2258:48;;2353:2;2342:9;2338:18;2325:32;2315:42;;2408:2;2397:9;2393:18;2380:32;2435:18;2427:6;2424:30;2421:50;;;2467:1;2464;2457:12;2421:50;2490:22;;2543:4;2535:13;;2531:27;-1:-1:-1;2521:55:1;;2572:1;2569;2562:12;2521:55;2595:73;2660:7;2655:2;2642:16;2637:2;2633;2629:11;2595:73;:::i;:::-;2585:83;;;2008:666;;;;;;;:::o;2679:254::-;2744:6;2752;2805:2;2793:9;2784:7;2780:23;2776:32;2773:52;;;2821:1;2818;2811:12;2773:52;2844:29;2863:9;2844:29;:::i;:::-;2834:39;;2892:35;2923:2;2912:9;2908:18;2892:35;:::i;2938:254::-;3006:6;3014;3067:2;3055:9;3046:7;3042:23;3038:32;3035:52;;;3083:1;3080;3073:12;3035:52;3106:29;3125:9;3106:29;:::i;:::-;3096:39;3182:2;3167:18;;;;3154:32;;-1:-1:-1;;;2938:254:1:o;3197:180::-;3253:6;3306:2;3294:9;3285:7;3281:23;3277:32;3274:52;;;3322:1;3319;3312:12;3274:52;3345:26;3361:9;3345:26;:::i;3382:390::-;3457:6;3465;3518:2;3506:9;3497:7;3493:23;3489:32;3486:52;;;3534:1;3531;3524:12;3486:52;3557:26;3573:9;3557:26;:::i;:::-;3547:36;;3634:2;3623:9;3619:18;3606:32;3661:18;3653:6;3650:30;3647:50;;;3693:1;3690;3683:12;3647:50;3716;3758:7;3749:6;3738:9;3734:22;3716:50;:::i;:::-;3706:60;;;3382:390;;;;;:::o;3777:245::-;3835:6;3888:2;3876:9;3867:7;3863:23;3859:32;3856:52;;;3904:1;3901;3894:12;3856:52;3943:9;3930:23;3962:30;3986:5;3962:30;:::i;4027:249::-;4096:6;4149:2;4137:9;4128:7;4124:23;4120:32;4117:52;;;4165:1;4162;4155:12;4117:52;4197:9;4191:16;4216:30;4240:5;4216:30;:::i;4281:322::-;4350:6;4403:2;4391:9;4382:7;4378:23;4374:32;4371:52;;;4419:1;4416;4409:12;4371:52;4459:9;4446:23;4492:18;4484:6;4481:30;4478:50;;;4524:1;4521;4514:12;4478:50;4547;4589:7;4580:6;4569:9;4565:22;4547:50;:::i;4608:180::-;4667:6;4720:2;4708:9;4699:7;4695:23;4691:32;4688:52;;;4736:1;4733;4726:12;4688:52;-1:-1:-1;4759:23:1;;4608:180;-1:-1:-1;4608:180:1:o;4793:254::-;4861:6;4869;4922:2;4910:9;4901:7;4897:23;4893:32;4890:52;;;4938:1;4935;4928:12;4890:52;4974:9;4961:23;4951:33;;5003:38;5037:2;5026:9;5022:18;5003:38;:::i;5052:257::-;5093:3;5131:5;5125:12;5158:6;5153:3;5146:19;5174:63;5230:6;5223:4;5218:3;5214:14;5207:4;5200:5;5196:16;5174:63;:::i;:::-;5291:2;5270:15;-1:-1:-1;;5266:29:1;5257:39;;;;5298:4;5253:50;;5052:257;-1:-1:-1;;5052:257:1:o;5314:185::-;5356:3;5394:5;5388:12;5409:52;5454:6;5449:3;5442:4;5435:5;5431:16;5409:52;:::i;:::-;5477:16;;;;;5314:185;-1:-1:-1;;5314:185:1:o;5622:1301::-;5899:3;5928:1;5961:6;5955:13;5991:3;6013:1;6041:9;6037:2;6033:18;6023:28;;6101:2;6090:9;6086:18;6123;6113:61;;6167:4;6159:6;6155:17;6145:27;;6113:61;6193:2;6241;6233:6;6230:14;6210:18;6207:38;6204:165;;;-1:-1:-1;;;6268:33:1;;6324:4;6321:1;6314:15;6354:4;6275:3;6342:17;6204:165;6385:18;6412:104;;;;6530:1;6525:320;;;;6378:467;;6412:104;-1:-1:-1;;6445:24:1;;6433:37;;6490:16;;;;-1:-1:-1;6412:104:1;;6525:320;16600:1;16593:14;;;16637:4;16624:18;;6620:1;6634:165;6648:6;6645:1;6642:13;6634:165;;;6726:14;;6713:11;;;6706:35;6769:16;;;;6663:10;;6634:165;;;6638:3;;6828:6;6823:3;6819:16;6812:23;;6378:467;;;;;;;6861:56;6886:30;6912:3;6904:6;6886:30;:::i;:::-;-1:-1:-1;;;5564:20:1;;5609:1;5600:11;;5504:113;6861:56;6854:63;5622:1301;-1:-1:-1;;;;;5622:1301:1:o;7346:488::-;-1:-1:-1;;;;;7615:15:1;;;7597:34;;7667:15;;7662:2;7647:18;;7640:43;7714:2;7699:18;;7692:34;;;7762:3;7757:2;7742:18;;7735:31;;;7540:4;;7783:45;;7808:19;;7800:6;7783:45;:::i;:::-;7775:53;7346:488;-1:-1:-1;;;;;;7346:488:1:o;7839:632::-;8010:2;8062:21;;;8132:13;;8035:18;;;8154:22;;;7981:4;;8010:2;8233:15;;;;8207:2;8192:18;;;7981:4;8276:169;8290:6;8287:1;8284:13;8276:169;;;8351:13;;8339:26;;8420:15;;;;8385:12;;;;8312:1;8305:9;8276:169;;;-1:-1:-1;8462:3:1;;7839:632;-1:-1:-1;;;;;;7839:632:1:o;8668:219::-;8817:2;8806:9;8799:21;8780:4;8837:44;8877:2;8866:9;8862:18;8854:6;8837:44;:::i;10681:343::-;10883:2;10865:21;;;10922:2;10902:18;;;10895:30;-1:-1:-1;;;10956:2:1;10941:18;;10934:49;11015:2;11000:18;;10681:343::o;12435:356::-;12637:2;12619:21;;;12656:18;;;12649:30;12715:34;12710:2;12695:18;;12688:62;12782:2;12767:18;;12435:356::o;15297:342::-;15499:2;15481:21;;;15538:2;15518:18;;;15511:30;-1:-1:-1;;;15572:2:1;15557:18;;15550:48;15630:2;15615:18;;15297:342::o;15995:345::-;16197:2;16179:21;;;16236:2;16216:18;;;16209:30;-1:-1:-1;;;16270:2:1;16255:18;;16248:51;16331:2;16316:18;;15995:345::o;16653:128::-;16693:3;16724:1;16720:6;16717:1;16714:13;16711:39;;;16730:18;;:::i;:::-;-1:-1:-1;16766:9:1;;16653:128::o;16786:120::-;16826:1;16852;16842:35;;16857:18;;:::i;:::-;-1:-1:-1;16891:9:1;;16786:120::o;16911:168::-;16951:7;17017:1;17013;17009:6;17005:14;17002:1;16999:21;16994:1;16987:9;16980:17;16976:45;16973:71;;;17024:18;;:::i;:::-;-1:-1:-1;17064:9:1;;16911:168::o;17084:125::-;17124:4;17152:1;17149;17146:8;17143:34;;;17157:18;;:::i;:::-;-1:-1:-1;17194:9:1;;17084:125::o;17214:258::-;17286:1;17296:113;17310:6;17307:1;17304:13;17296:113;;;17386:11;;;17380:18;17367:11;;;17360:39;17332:2;17325:10;17296:113;;;17427:6;17424:1;17421:13;17418:48;;;-1:-1:-1;;17462:1:1;17444:16;;17437:27;17214:258::o;17477:380::-;17556:1;17552:12;;;;17599;;;17620:61;;17674:4;17666:6;17662:17;17652:27;;17620:61;17727:2;17719:6;17716:14;17696:18;17693:38;17690:161;;;17773:10;17768:3;17764:20;17761:1;17754:31;17808:4;17805:1;17798:15;17836:4;17833:1;17826:15;17690:161;;17477:380;;;:::o;17862:135::-;17901:3;-1:-1:-1;;17922:17:1;;17919:43;;;17942:18;;:::i;:::-;-1:-1:-1;17989:1:1;17978:13;;17862:135::o;18002:112::-;18034:1;18060;18050:35;;18065:18;;:::i;:::-;-1:-1:-1;18099:9:1;;18002:112::o;18119:127::-;18180:10;18175:3;18171:20;18168:1;18161:31;18211:4;18208:1;18201:15;18235:4;18232:1;18225:15;18251:127;18312:10;18307:3;18303:20;18300:1;18293:31;18343:4;18340:1;18333:15;18367:4;18364:1;18357:15;18383:127;18444:10;18439:3;18435:20;18432:1;18425:31;18475:4;18472:1;18465:15;18499:4;18496:1;18489:15;18515:127;18576:10;18571:3;18567:20;18564:1;18557:31;18607:4;18604:1;18597:15;18631:4;18628:1;18621:15;18647:131;-1:-1:-1;;;;;;18721:32:1;;18711:43;;18701:71;;18768:1;18765;18758:12
Swarm Source
ipfs://5388acf0853b30c23afaeb4420a4d1386e84253070899f9a71e4779e21bb6af4
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.