Overview
Max Total Supply
1,250 IMNFT
Holders
638
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 IMNFTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
IconicNFT721a
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-15 */ pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } 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; } } pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.13; contract IconicNFT721a is ERC721A, ReentrancyGuard, Ownable{ string public baseURI; bool public mintingActive = false; bool public burningActive = false; bool public allowlistActive = false; uint256 public mintPrice; uint64 public mintSize; uint64 public maxMintsPerAddress = 3; bytes32 public allowlistMerkleRoot = ''; address payable iconicAddress; address admin; constructor(string memory name_, string memory symbol_, string memory baseURI_, bytes32 merkleRoot_, address iconicAddress_, uint256 mintPrice_, uint64 mintSize_) ERC721A(name_, symbol_) { require(_msgSenderERC721A() != iconicAddress_, "Error"); admin = _msgSenderERC721A(); baseURI = baseURI_; allowlistMerkleRoot = merkleRoot_; iconicAddress = payable(iconicAddress_); mintPrice = mintPrice_; mintSize = mintSize_; } function setAllowListActive(bool active) public { require(_msgSenderERC721A() == admin, "Not Authorized"); allowlistActive = active; } function setMintingActive(bool active) public { require(_msgSenderERC721A() == admin, "Not Authorized"); mintingActive = active; } function setBurningActive(bool active) public { require(_msgSenderERC721A() == admin, "Not Authorized"); burningActive = active; } function setBaseTokenURI(string memory baseURI_) public { require(_msgSenderERC721A() == admin, "Not Authorized"); baseURI = baseURI_; } function setMintSize(uint64 mintSize_) public { require(_msgSenderERC721A() == admin, "Not Authorized"); mintSize= mintSize_; } function setMintPrice(uint256 mintPrice_) public { require(_msgSenderERC721A() == admin, "Not Authorized"); mintPrice = mintPrice_; } function setMaxMintsPerAddress(uint64 maxMintsPerAddress_) public { require(_msgSenderERC721A() == admin, "Not Authorized"); maxMintsPerAddress = maxMintsPerAddress_; } function setAllowList(bytes32 merkleRoot) public { require(_msgSenderERC721A() == admin, "Not Authorized"); allowlistMerkleRoot = merkleRoot; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "Token does not exist"); return string(abi.encodePacked(baseURI, Strings.toString(tokenId))); } function _startTokenId() internal pure override returns (uint256) { return 1; } function allowlistMint(bytes32[] calldata merkleProof, uint16 amount) external payable nonReentrant() { // @notice using Checks-Effects-Interactions require(allowlistActive, "Allow list minting not enabled"); require(msg.value == mintPrice * amount, "Incorrect amount of ether sent"); require(_totalMinted() + amount <= mintSize, "Can not mint that many"); uint64 mintCountBySender = _getAux(_msgSenderERC721A()) + amount; require(mintCountBySender <= maxMintsPerAddress, "Exceeds allowed mints"); require( MerkleProof.verify( merkleProof, allowlistMerkleRoot, keccak256(abi.encodePacked(_msgSenderERC721A())) ), "Address not in allowlist" ); iconicAddress.transfer(msg.value); _mint(_msgSenderERC721A(), amount); _setAux(_msgSenderERC721A(), mintCountBySender); } function mint(uint16 amount) external payable nonReentrant() { // @notice using Checks-Effects-Interactions require(mintingActive, "Minting not enabled"); require(msg.value == mintPrice * amount, "Incorrect amount of ether sent"); require(_totalMinted() + amount <= mintSize, "Can not mint that many"); uint64 mintCountBySender = _getAux(_msgSenderERC721A()) + amount; require(mintCountBySender <= maxMintsPerAddress, "Exceeds allowed mints"); require(balanceOf(_msgSenderERC721A()) + amount <= maxMintsPerAddress, "Exceeds maximum allowed mints"); iconicAddress.transfer(msg.value); _mint(_msgSenderERC721A(), amount); _setAux(_msgSenderERC721A(), mintCountBySender); } function burn(uint256 tokenId) public { require(burningActive, "Burning is not enabled"); _burn(tokenId, true); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"},{"internalType":"address","name":"iconicAddress_","type":"address"},{"internalType":"uint256","name":"mintPrice_","type":"uint256"},{"internalType":"uint64","name":"mintSize_","type":"uint64"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"allowlistActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowlistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint16","name":"amount","type":"uint16"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burningActive","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerAddress","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount","type":"uint16"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintSize","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"active","type":"bool"}],"name":"setAllowListActive","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":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"active","type":"bool"}],"name":"setBurningActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"maxMintsPerAddress_","type":"uint64"}],"name":"setMaxMintsPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintPrice_","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"mintSize_","type":"uint64"}],"name":"setMintSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"active","type":"bool"}],"name":"setMintingActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600b805462ffffff19169055600d8054600160401b600160801b031916680300000000000000001790556000600e553480156200004057600080fd5b50604051620027b3380380620027b3833981016040819052620000639162000287565b86866002620000738382620003f0565b506003620000828282620003f0565b506001600055505060016008556200009a3362000153565b6001600160a01b0383163303620000df5760405162461bcd60e51b815260206004820152600560248201526422b93937b960d91b604482015260640160405180910390fd5b601080546001600160a01b03191633179055600a620000ff8682620003f0565b50600e93909355600f80546001600160a01b0319166001600160a01b039390931692909217909155600c55600d80546001600160401b0319166001600160401b0390921691909117905550620004bc915050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001cd57600080fd5b81516001600160401b0380821115620001ea57620001ea620001a5565b604051601f8301601f19908116603f01168101908282118183101715620002155762000215620001a5565b816040528381526020925086838588010111156200023257600080fd5b600091505b8382101562000256578582018301518183018401529082019062000237565b600093810190920192909252949350505050565b80516001600160401b03811681146200028257600080fd5b919050565b600080600080600080600060e0888a031215620002a357600080fd5b87516001600160401b0380821115620002bb57600080fd5b620002c98b838c01620001bb565b985060208a0151915080821115620002e057600080fd5b620002ee8b838c01620001bb565b975060408a01519150808211156200030557600080fd5b50620003148a828b01620001bb565b60608a015160808b0151919750955090506001600160a01b03811681146200033b57600080fd5b60a089015190935091506200035360c089016200026a565b905092959891949750929550565b600181811c908216806200037657607f821691505b6020821081036200039757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003eb57600081815260208120601f850160051c81016020861015620003c65750805b601f850160051c820191505b81811015620003e757828155600101620003d2565b5050505b505050565b81516001600160401b038111156200040c576200040c620001a5565b62000424816200041d845462000361565b846200039d565b602080601f8311600181146200045c5760008415620004435750858301515b600019600386901b1c1916600185901b178555620003e7565b600085815260208120601f198616915b828110156200048d578886015182559484019460019091019084016200046c565b5085821015620004ac5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6122e780620004cc6000396000f3fe60806040526004361061020f5760003560e01c80636c0360eb11610118578063b88d4fde116100a0578063d04ef2851161006f578063d04ef285146105bf578063e0125126146105df578063e985e9c5146105ff578063f2fde38b1461061f578063f4a0a5281461063f57600080fd5b8063b88d4fde14610559578063c3e32a1e1461056c578063c87b56dd1461058c578063cca694f0146105ac57600080fd5b80638b076b9b116100e75780638b076b9b146104bf5780638da5cb5b146104df57806395d89b41146104fd578063a22cb46514610512578063ae6a80d51461053257600080fd5b80636c0360eb1461045557806370a082311461046a578063715018a61461048a57806384584d071461049f57600080fd5b8063293108e01161019b57806342842e0e1161016a57806342842e0e146103b457806342966c68146103c75780634a0ef768146103e75780636352211e1461041f5780636817c76c1461043f57600080fd5b8063293108e01461034457806330176e131461035a57806331f9c9191461037a5780633a73c58d1461039457600080fd5b8063145e4422116101e2578063145e4422146102b857806318160ddd146102d85780631c7c2598146102ff57806323b872dd1461031e57806323cf0a221461033157600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611b7d565b61065f565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106b1565b6040516102409190611bea565b34801561027757600080fd5b5061028b610286366004611bfd565b610743565b6040516001600160a01b039091168152602001610240565b6102b66102b1366004611c32565b610787565b005b3480156102c457600080fd5b506102b66102d3366004611c5c565b610827565b3480156102e457600080fd5b5060015460005403600019015b604051908152602001610240565b34801561030b57600080fd5b50600b5461023490610100900460ff1681565b6102b661032c366004611c85565b610895565b6102b661033f366004611cd3565b610a26565b34801561035057600080fd5b506102f1600e5481565b34801561036657600080fd5b506102b6610375366004611d79565b610d25565b34801561038657600080fd5b50600b546102349060ff1681565b3480156103a057600080fd5b506102b66103af366004611dd1565b610d68565b6102b66103c2366004611c85565b610db7565b3480156103d357600080fd5b506102b66103e2366004611bfd565b610dd7565b3480156103f357600080fd5b50600d54610407906001600160401b031681565b6040516001600160401b039091168152602001610240565b34801561042b57600080fd5b5061028b61043a366004611bfd565b610e35565b34801561044b57600080fd5b506102f1600c5481565b34801561046157600080fd5b5061025e610e40565b34801561047657600080fd5b506102f1610485366004611dec565b610ece565b34801561049657600080fd5b506102b6610f1c565b3480156104ab57600080fd5b506102b66104ba366004611bfd565b610f30565b3480156104cb57600080fd5b50600b546102349062010000900460ff1681565b3480156104eb57600080fd5b506009546001600160a01b031661028b565b34801561050957600080fd5b5061025e610f68565b34801561051e57600080fd5b506102b661052d366004611e07565b610f77565b34801561053e57600080fd5b50600d5461040790600160401b90046001600160401b031681565b6102b6610567366004611e3a565b610fe3565b34801561057857600080fd5b506102b6610587366004611dd1565b61102d565b34801561059857600080fd5b5061025e6105a7366004611bfd565b61107a565b6102b66105ba366004611eb5565b6110fa565b3480156105cb57600080fd5b506102b66105da366004611dd1565b61140b565b3480156105eb57600080fd5b506102b66105fa366004611c5c565b611451565b34801561060b57600080fd5b5061023461061a366004611f38565b6114a7565b34801561062b57600080fd5b506102b661063a366004611dec565b6114d5565b34801561064b57600080fd5b506102b661065a366004611bfd565b61154b565b60006301ffc9a760e01b6001600160e01b03198316148061069057506380ac58cd60e01b6001600160e01b03198316145b806106ab5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106c090611f62565b80601f01602080910402602001604051908101604052809291908181526020018280546106ec90611f62565b80156107395780601f1061070e57610100808354040283529160200191610739565b820191906000526020600020905b81548152906001019060200180831161071c57829003601f168201915b5050505050905090565b600061074e82611583565b61076b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061079282610e35565b9050336001600160a01b038216146107cb576107ae81336114a7565b6107cb576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6010546001600160a01b0316336001600160a01b0316146108635760405162461bcd60e51b815260040161085a90611f9c565b60405180910390fd5b600d80546001600160401b03909216600160401b026fffffffffffffffff000000000000000019909216919091179055565b60006108a0826115b8565b9050836001600160a01b0316816001600160a01b0316146108d35760405162a1148160e81b815260040160405180910390fd5b600082815260066020526040902080546108ff8187335b6001600160a01b039081169116811491141790565b61092a5761090d86336114a7565b61092a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661095157604051633a954ecd60e21b815260040160405180910390fd5b801561095c57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036109ee576001840160008181526004602052604081205490036109ec5760005481146109ec5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b031660008051602061229283398151915260405160405180910390a45b505050505050565b600260085403610a785760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161085a565b6002600855600b5460ff16610ac55760405162461bcd60e51b8152602060048201526013602482015272135a5b9d1a5b99c81b9bdd08195b98589b1959606a1b604482015260640161085a565b8061ffff16600c54610ad79190611fda565b3414610b255760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e740000604482015260640161085a565b600d546001600160401b031661ffff8216610b436000546000190190565b610b4d9190611ff1565b1115610b945760405162461bcd60e51b815260206004820152601660248201527543616e206e6f74206d696e742074686174206d616e7960501b604482015260640161085a565b600061ffff8216610bbe335b6001600160a01b031660009081526005602052604090205460c01c90565b610bc89190612004565b600d549091506001600160401b03600160401b90910481169082161115610c295760405162461bcd60e51b81526020600482015260156024820152744578636565647320616c6c6f776564206d696e747360581b604482015260640161085a565b600d54600160401b90046001600160401b031661ffff8316610c4a33610ece565b610c549190611ff1565b1115610ca25760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d20616c6c6f776564206d696e7473000000604482015260640161085a565b600f546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610cdb573d6000803e3d6000fd5b50610ceb335b8361ffff1661162e565b610d1c335b6001600160a01b0316600090815260056020526040902080546001600160c01b031660c084901b179055565b50506001600855565b6010546001600160a01b0316336001600160a01b031614610d585760405162461bcd60e51b815260040161085a90611f9c565b600a610d648282612071565b5050565b6010546001600160a01b0316336001600160a01b031614610d9b5760405162461bcd60e51b815260040161085a90611f9c565b600b8054911515620100000262ff000019909216919091179055565b610dd283838360405180602001604052806000815250610fe3565b505050565b600b54610100900460ff16610e275760405162461bcd60e51b8152602060048201526016602482015275109d5c9b9a5b99c81a5cc81b9bdd08195b98589b195960521b604482015260640161085a565b610e32816001611708565b50565b60006106ab826115b8565b600a8054610e4d90611f62565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7990611f62565b8015610ec65780601f10610e9b57610100808354040283529160200191610ec6565b820191906000526020600020905b815481529060010190602001808311610ea957829003601f168201915b505050505081565b60006001600160a01b038216610ef7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610f24611840565b610f2e600061189a565b565b6010546001600160a01b0316336001600160a01b031614610f635760405162461bcd60e51b815260040161085a90611f9c565b600e55565b6060600380546106c090611f62565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610fee848484610895565b6001600160a01b0383163b156110275761100a848484846118ec565b611027576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6010546001600160a01b0316336001600160a01b0316146110605760405162461bcd60e51b815260040161085a90611f9c565b600b80549115156101000261ff0019909216919091179055565b606061108582611583565b6110c85760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604482015260640161085a565b600a6110d3836119d8565b6040516020016110e4929190612130565b6040516020818303038152906040529050919050565b60026008540361114c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161085a565b6002600855600b5462010000900460ff166111a95760405162461bcd60e51b815260206004820152601e60248201527f416c6c6f77206c697374206d696e74696e67206e6f7420656e61626c65640000604482015260640161085a565b8061ffff16600c546111bb9190611fda565b34146112095760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e740000604482015260640161085a565b600d546001600160401b031661ffff82166112276000546000190190565b6112319190611ff1565b11156112785760405162461bcd60e51b815260206004820152601660248201527543616e206e6f74206d696e742074686174206d616e7960501b604482015260640161085a565b600061ffff821661128833610ba0565b6112929190612004565b600d549091506001600160401b03600160401b909104811690821611156112f35760405162461bcd60e51b81526020600482015260156024820152744578636565647320616c6c6f776564206d696e747360581b604482015260640161085a565b61136884848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611ad8565b6113b45760405162461bcd60e51b815260206004820152601860248201527f41646472657373206e6f7420696e20616c6c6f776c6973740000000000000000604482015260640161085a565b600f546040516001600160a01b03909116903480156108fc02916000818181858888f193505050501580156113ed573d6000803e3d6000fd5b506113f733610ce1565b61140033610cf0565b505060016008555050565b6010546001600160a01b0316336001600160a01b03161461143e5760405162461bcd60e51b815260040161085a90611f9c565b600b805460ff1916911515919091179055565b6010546001600160a01b0316336001600160a01b0316146114845760405162461bcd60e51b815260040161085a90611f9c565b600d805467ffffffffffffffff19166001600160401b0392909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6114dd611840565b6001600160a01b0381166115425760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161085a565b610e328161189a565b6010546001600160a01b0316336001600160a01b03161461157e5760405162461bcd60e51b815260040161085a90611f9c565b600c55565b600081600111158015611597575060005482105b80156106ab575050600090815260046020526040902054600160e01b161590565b60008180600111611615576000548110156116155760008181526004602052604081205490600160e01b82169003611613575b8060000361160c5750600019016000818152600460205260409020546115eb565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b60008054908290036116535760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083906000805160206122928339815191528180a4600183015b8181146116de5780836000600080516020612292833981519152600080a46001016116b8565b50816000036116ff57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6000611713836115b8565b90508060008061173186600090815260066020526040902080549091565b915091508415611771576117468184336108ea565b6117715761175483336114a7565b61177157604051632ce44b5f60e11b815260040160405180910390fd5b801561177c57600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b8516900361180a576001860160008181526004602052604081205490036118085760005481146118085760008181526004602052604090208590555b505b60405186906000906001600160a01b03861690600080516020612292833981519152908390a45050600180548101905550505050565b6009546001600160a01b03163314610f2e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119219033908990889088906004016121b7565b6020604051808303816000875af192505050801561195c575060408051601f3d908101601f19168201909252611959918101906121f4565b60015b6119ba573d80801561198a576040519150601f19603f3d011682016040523d82523d6000602084013e61198f565b606091505b5080516000036119b2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036119ff5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a295780611a1381612211565b9150611a229050600a83612240565b9150611a03565b6000816001600160401b03811115611a4357611a43611cee565b6040519080825280601f01601f191660200182016040528015611a6d576020820181803683370190505b5090505b84156119d057611a82600183612254565b9150611a8f600a86612267565b611a9a906030611ff1565b60f81b818381518110611aaf57611aaf61227b565b60200101906001600160f81b031916908160001a905350611ad1600a86612240565b9450611a71565b600082611ae58584611aee565b14949350505050565b600081815b8451811015611b3357611b1f82868381518110611b1257611b1261227b565b6020026020010151611b3b565b915080611b2b81612211565b915050611af3565b509392505050565b6000818310611b5757600082815260208490526040902061160c565b5060009182526020526040902090565b6001600160e01b031981168114610e3257600080fd5b600060208284031215611b8f57600080fd5b813561160c81611b67565b60005b83811015611bb5578181015183820152602001611b9d565b50506000910152565b60008151808452611bd6816020860160208601611b9a565b601f01601f19169290920160200192915050565b60208152600061160c6020830184611bbe565b600060208284031215611c0f57600080fd5b5035919050565b80356001600160a01b0381168114611c2d57600080fd5b919050565b60008060408385031215611c4557600080fd5b611c4e83611c16565b946020939093013593505050565b600060208284031215611c6e57600080fd5b81356001600160401b038116811461160c57600080fd5b600080600060608486031215611c9a57600080fd5b611ca384611c16565b9250611cb160208501611c16565b9150604084013590509250925092565b803561ffff81168114611c2d57600080fd5b600060208284031215611ce557600080fd5b61160c82611cc1565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611d1e57611d1e611cee565b604051601f8501601f19908116603f01168101908282118183101715611d4657611d46611cee565b81604052809350858152868686011115611d5f57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611d8b57600080fd5b81356001600160401b03811115611da157600080fd5b8201601f81018413611db257600080fd5b6119d084823560208401611d04565b80358015158114611c2d57600080fd5b600060208284031215611de357600080fd5b61160c82611dc1565b600060208284031215611dfe57600080fd5b61160c82611c16565b60008060408385031215611e1a57600080fd5b611e2383611c16565b9150611e3160208401611dc1565b90509250929050565b60008060008060808587031215611e5057600080fd5b611e5985611c16565b9350611e6760208601611c16565b92506040850135915060608501356001600160401b03811115611e8957600080fd5b8501601f81018713611e9a57600080fd5b611ea987823560208401611d04565b91505092959194509250565b600080600060408486031215611eca57600080fd5b83356001600160401b0380821115611ee157600080fd5b818601915086601f830112611ef557600080fd5b813581811115611f0457600080fd5b8760208260051b8501011115611f1957600080fd5b602092830195509350611f2f9186019050611cc1565b90509250925092565b60008060408385031215611f4b57600080fd5b611f5483611c16565b9150611e3160208401611c16565b600181811c90821680611f7657607f821691505b602082108103611f9657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600e908201526d139bdd08105d5d1a1bdc9a5e995960921b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176106ab576106ab611fc4565b808201808211156106ab576106ab611fc4565b6001600160401b0381811683821601908082111561202457612024611fc4565b5092915050565b601f821115610dd257600081815260208120601f850160051c810160208610156120525750805b601f850160051c820191505b81811015610a1e5782815560010161205e565b81516001600160401b0381111561208a5761208a611cee565b61209e816120988454611f62565b8461202b565b602080601f8311600181146120d357600084156120bb5750858301515b600019600386901b1c1916600185901b178555610a1e565b600085815260208120601f198616915b82811015612102578886015182559484019460019091019084016120e3565b50858210156121205787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600080845461213e81611f62565b60018281168015612156576001811461216b5761219a565b60ff198416875282151583028701945061219a565b8860005260208060002060005b858110156121915781548a820152908401908201612178565b50505082870194505b5050505083516121ae818360208801611b9a565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121ea90830184611bbe565b9695505050505050565b60006020828403121561220657600080fd5b815161160c81611b67565b60006001820161222357612223611fc4565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261224f5761224f61222a565b500490565b818103818111156106ab576106ab611fc4565b6000826122765761227661222a565b500690565b634e487b7160e01b600052603260045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212205d769589edc95be3c3c6a239a613b3433fb8ce8a900bc833e8a7d1fa74eb110d64736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001607c452c0e9000da5899a39ddb493a16ddb23918bbdfbcd5edd0860deed67e91e30000000000000000000000004ce0a2cb3417c8b9670ce6c8d704a49e1471efdf00000000000000000000000000000000000000000000000000005af3107a40000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000949636f6e69634e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005494d4e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d58794d6a5a5a376936654a4a6667793645643957453656674866776531314a765770327551755a374a77646d2f00000000000000000000
Deployed Bytecode
0x60806040526004361061020f5760003560e01c80636c0360eb11610118578063b88d4fde116100a0578063d04ef2851161006f578063d04ef285146105bf578063e0125126146105df578063e985e9c5146105ff578063f2fde38b1461061f578063f4a0a5281461063f57600080fd5b8063b88d4fde14610559578063c3e32a1e1461056c578063c87b56dd1461058c578063cca694f0146105ac57600080fd5b80638b076b9b116100e75780638b076b9b146104bf5780638da5cb5b146104df57806395d89b41146104fd578063a22cb46514610512578063ae6a80d51461053257600080fd5b80636c0360eb1461045557806370a082311461046a578063715018a61461048a57806384584d071461049f57600080fd5b8063293108e01161019b57806342842e0e1161016a57806342842e0e146103b457806342966c68146103c75780634a0ef768146103e75780636352211e1461041f5780636817c76c1461043f57600080fd5b8063293108e01461034457806330176e131461035a57806331f9c9191461037a5780633a73c58d1461039457600080fd5b8063145e4422116101e2578063145e4422146102b857806318160ddd146102d85780631c7c2598146102ff57806323b872dd1461031e57806323cf0a221461033157600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611b7d565b61065f565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106b1565b6040516102409190611bea565b34801561027757600080fd5b5061028b610286366004611bfd565b610743565b6040516001600160a01b039091168152602001610240565b6102b66102b1366004611c32565b610787565b005b3480156102c457600080fd5b506102b66102d3366004611c5c565b610827565b3480156102e457600080fd5b5060015460005403600019015b604051908152602001610240565b34801561030b57600080fd5b50600b5461023490610100900460ff1681565b6102b661032c366004611c85565b610895565b6102b661033f366004611cd3565b610a26565b34801561035057600080fd5b506102f1600e5481565b34801561036657600080fd5b506102b6610375366004611d79565b610d25565b34801561038657600080fd5b50600b546102349060ff1681565b3480156103a057600080fd5b506102b66103af366004611dd1565b610d68565b6102b66103c2366004611c85565b610db7565b3480156103d357600080fd5b506102b66103e2366004611bfd565b610dd7565b3480156103f357600080fd5b50600d54610407906001600160401b031681565b6040516001600160401b039091168152602001610240565b34801561042b57600080fd5b5061028b61043a366004611bfd565b610e35565b34801561044b57600080fd5b506102f1600c5481565b34801561046157600080fd5b5061025e610e40565b34801561047657600080fd5b506102f1610485366004611dec565b610ece565b34801561049657600080fd5b506102b6610f1c565b3480156104ab57600080fd5b506102b66104ba366004611bfd565b610f30565b3480156104cb57600080fd5b50600b546102349062010000900460ff1681565b3480156104eb57600080fd5b506009546001600160a01b031661028b565b34801561050957600080fd5b5061025e610f68565b34801561051e57600080fd5b506102b661052d366004611e07565b610f77565b34801561053e57600080fd5b50600d5461040790600160401b90046001600160401b031681565b6102b6610567366004611e3a565b610fe3565b34801561057857600080fd5b506102b6610587366004611dd1565b61102d565b34801561059857600080fd5b5061025e6105a7366004611bfd565b61107a565b6102b66105ba366004611eb5565b6110fa565b3480156105cb57600080fd5b506102b66105da366004611dd1565b61140b565b3480156105eb57600080fd5b506102b66105fa366004611c5c565b611451565b34801561060b57600080fd5b5061023461061a366004611f38565b6114a7565b34801561062b57600080fd5b506102b661063a366004611dec565b6114d5565b34801561064b57600080fd5b506102b661065a366004611bfd565b61154b565b60006301ffc9a760e01b6001600160e01b03198316148061069057506380ac58cd60e01b6001600160e01b03198316145b806106ab5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106c090611f62565b80601f01602080910402602001604051908101604052809291908181526020018280546106ec90611f62565b80156107395780601f1061070e57610100808354040283529160200191610739565b820191906000526020600020905b81548152906001019060200180831161071c57829003601f168201915b5050505050905090565b600061074e82611583565b61076b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061079282610e35565b9050336001600160a01b038216146107cb576107ae81336114a7565b6107cb576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6010546001600160a01b0316336001600160a01b0316146108635760405162461bcd60e51b815260040161085a90611f9c565b60405180910390fd5b600d80546001600160401b03909216600160401b026fffffffffffffffff000000000000000019909216919091179055565b60006108a0826115b8565b9050836001600160a01b0316816001600160a01b0316146108d35760405162a1148160e81b815260040160405180910390fd5b600082815260066020526040902080546108ff8187335b6001600160a01b039081169116811491141790565b61092a5761090d86336114a7565b61092a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661095157604051633a954ecd60e21b815260040160405180910390fd5b801561095c57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036109ee576001840160008181526004602052604081205490036109ec5760005481146109ec5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b031660008051602061229283398151915260405160405180910390a45b505050505050565b600260085403610a785760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161085a565b6002600855600b5460ff16610ac55760405162461bcd60e51b8152602060048201526013602482015272135a5b9d1a5b99c81b9bdd08195b98589b1959606a1b604482015260640161085a565b8061ffff16600c54610ad79190611fda565b3414610b255760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e740000604482015260640161085a565b600d546001600160401b031661ffff8216610b436000546000190190565b610b4d9190611ff1565b1115610b945760405162461bcd60e51b815260206004820152601660248201527543616e206e6f74206d696e742074686174206d616e7960501b604482015260640161085a565b600061ffff8216610bbe335b6001600160a01b031660009081526005602052604090205460c01c90565b610bc89190612004565b600d549091506001600160401b03600160401b90910481169082161115610c295760405162461bcd60e51b81526020600482015260156024820152744578636565647320616c6c6f776564206d696e747360581b604482015260640161085a565b600d54600160401b90046001600160401b031661ffff8316610c4a33610ece565b610c549190611ff1565b1115610ca25760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d20616c6c6f776564206d696e7473000000604482015260640161085a565b600f546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610cdb573d6000803e3d6000fd5b50610ceb335b8361ffff1661162e565b610d1c335b6001600160a01b0316600090815260056020526040902080546001600160c01b031660c084901b179055565b50506001600855565b6010546001600160a01b0316336001600160a01b031614610d585760405162461bcd60e51b815260040161085a90611f9c565b600a610d648282612071565b5050565b6010546001600160a01b0316336001600160a01b031614610d9b5760405162461bcd60e51b815260040161085a90611f9c565b600b8054911515620100000262ff000019909216919091179055565b610dd283838360405180602001604052806000815250610fe3565b505050565b600b54610100900460ff16610e275760405162461bcd60e51b8152602060048201526016602482015275109d5c9b9a5b99c81a5cc81b9bdd08195b98589b195960521b604482015260640161085a565b610e32816001611708565b50565b60006106ab826115b8565b600a8054610e4d90611f62565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7990611f62565b8015610ec65780601f10610e9b57610100808354040283529160200191610ec6565b820191906000526020600020905b815481529060010190602001808311610ea957829003601f168201915b505050505081565b60006001600160a01b038216610ef7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610f24611840565b610f2e600061189a565b565b6010546001600160a01b0316336001600160a01b031614610f635760405162461bcd60e51b815260040161085a90611f9c565b600e55565b6060600380546106c090611f62565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610fee848484610895565b6001600160a01b0383163b156110275761100a848484846118ec565b611027576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6010546001600160a01b0316336001600160a01b0316146110605760405162461bcd60e51b815260040161085a90611f9c565b600b80549115156101000261ff0019909216919091179055565b606061108582611583565b6110c85760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604482015260640161085a565b600a6110d3836119d8565b6040516020016110e4929190612130565b6040516020818303038152906040529050919050565b60026008540361114c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161085a565b6002600855600b5462010000900460ff166111a95760405162461bcd60e51b815260206004820152601e60248201527f416c6c6f77206c697374206d696e74696e67206e6f7420656e61626c65640000604482015260640161085a565b8061ffff16600c546111bb9190611fda565b34146112095760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e740000604482015260640161085a565b600d546001600160401b031661ffff82166112276000546000190190565b6112319190611ff1565b11156112785760405162461bcd60e51b815260206004820152601660248201527543616e206e6f74206d696e742074686174206d616e7960501b604482015260640161085a565b600061ffff821661128833610ba0565b6112929190612004565b600d549091506001600160401b03600160401b909104811690821611156112f35760405162461bcd60e51b81526020600482015260156024820152744578636565647320616c6c6f776564206d696e747360581b604482015260640161085a565b61136884848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611ad8565b6113b45760405162461bcd60e51b815260206004820152601860248201527f41646472657373206e6f7420696e20616c6c6f776c6973740000000000000000604482015260640161085a565b600f546040516001600160a01b03909116903480156108fc02916000818181858888f193505050501580156113ed573d6000803e3d6000fd5b506113f733610ce1565b61140033610cf0565b505060016008555050565b6010546001600160a01b0316336001600160a01b03161461143e5760405162461bcd60e51b815260040161085a90611f9c565b600b805460ff1916911515919091179055565b6010546001600160a01b0316336001600160a01b0316146114845760405162461bcd60e51b815260040161085a90611f9c565b600d805467ffffffffffffffff19166001600160401b0392909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6114dd611840565b6001600160a01b0381166115425760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161085a565b610e328161189a565b6010546001600160a01b0316336001600160a01b03161461157e5760405162461bcd60e51b815260040161085a90611f9c565b600c55565b600081600111158015611597575060005482105b80156106ab575050600090815260046020526040902054600160e01b161590565b60008180600111611615576000548110156116155760008181526004602052604081205490600160e01b82169003611613575b8060000361160c5750600019016000818152600460205260409020546115eb565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b60008054908290036116535760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083906000805160206122928339815191528180a4600183015b8181146116de5780836000600080516020612292833981519152600080a46001016116b8565b50816000036116ff57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6000611713836115b8565b90508060008061173186600090815260066020526040902080549091565b915091508415611771576117468184336108ea565b6117715761175483336114a7565b61177157604051632ce44b5f60e11b815260040160405180910390fd5b801561177c57600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b8516900361180a576001860160008181526004602052604081205490036118085760005481146118085760008181526004602052604090208590555b505b60405186906000906001600160a01b03861690600080516020612292833981519152908390a45050600180548101905550505050565b6009546001600160a01b03163314610f2e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119219033908990889088906004016121b7565b6020604051808303816000875af192505050801561195c575060408051601f3d908101601f19168201909252611959918101906121f4565b60015b6119ba573d80801561198a576040519150601f19603f3d011682016040523d82523d6000602084013e61198f565b606091505b5080516000036119b2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036119ff5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a295780611a1381612211565b9150611a229050600a83612240565b9150611a03565b6000816001600160401b03811115611a4357611a43611cee565b6040519080825280601f01601f191660200182016040528015611a6d576020820181803683370190505b5090505b84156119d057611a82600183612254565b9150611a8f600a86612267565b611a9a906030611ff1565b60f81b818381518110611aaf57611aaf61227b565b60200101906001600160f81b031916908160001a905350611ad1600a86612240565b9450611a71565b600082611ae58584611aee565b14949350505050565b600081815b8451811015611b3357611b1f82868381518110611b1257611b1261227b565b6020026020010151611b3b565b915080611b2b81612211565b915050611af3565b509392505050565b6000818310611b5757600082815260208490526040902061160c565b5060009182526020526040902090565b6001600160e01b031981168114610e3257600080fd5b600060208284031215611b8f57600080fd5b813561160c81611b67565b60005b83811015611bb5578181015183820152602001611b9d565b50506000910152565b60008151808452611bd6816020860160208601611b9a565b601f01601f19169290920160200192915050565b60208152600061160c6020830184611bbe565b600060208284031215611c0f57600080fd5b5035919050565b80356001600160a01b0381168114611c2d57600080fd5b919050565b60008060408385031215611c4557600080fd5b611c4e83611c16565b946020939093013593505050565b600060208284031215611c6e57600080fd5b81356001600160401b038116811461160c57600080fd5b600080600060608486031215611c9a57600080fd5b611ca384611c16565b9250611cb160208501611c16565b9150604084013590509250925092565b803561ffff81168114611c2d57600080fd5b600060208284031215611ce557600080fd5b61160c82611cc1565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611d1e57611d1e611cee565b604051601f8501601f19908116603f01168101908282118183101715611d4657611d46611cee565b81604052809350858152868686011115611d5f57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611d8b57600080fd5b81356001600160401b03811115611da157600080fd5b8201601f81018413611db257600080fd5b6119d084823560208401611d04565b80358015158114611c2d57600080fd5b600060208284031215611de357600080fd5b61160c82611dc1565b600060208284031215611dfe57600080fd5b61160c82611c16565b60008060408385031215611e1a57600080fd5b611e2383611c16565b9150611e3160208401611dc1565b90509250929050565b60008060008060808587031215611e5057600080fd5b611e5985611c16565b9350611e6760208601611c16565b92506040850135915060608501356001600160401b03811115611e8957600080fd5b8501601f81018713611e9a57600080fd5b611ea987823560208401611d04565b91505092959194509250565b600080600060408486031215611eca57600080fd5b83356001600160401b0380821115611ee157600080fd5b818601915086601f830112611ef557600080fd5b813581811115611f0457600080fd5b8760208260051b8501011115611f1957600080fd5b602092830195509350611f2f9186019050611cc1565b90509250925092565b60008060408385031215611f4b57600080fd5b611f5483611c16565b9150611e3160208401611c16565b600181811c90821680611f7657607f821691505b602082108103611f9657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600e908201526d139bdd08105d5d1a1bdc9a5e995960921b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176106ab576106ab611fc4565b808201808211156106ab576106ab611fc4565b6001600160401b0381811683821601908082111561202457612024611fc4565b5092915050565b601f821115610dd257600081815260208120601f850160051c810160208610156120525750805b601f850160051c820191505b81811015610a1e5782815560010161205e565b81516001600160401b0381111561208a5761208a611cee565b61209e816120988454611f62565b8461202b565b602080601f8311600181146120d357600084156120bb5750858301515b600019600386901b1c1916600185901b178555610a1e565b600085815260208120601f198616915b82811015612102578886015182559484019460019091019084016120e3565b50858210156121205787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600080845461213e81611f62565b60018281168015612156576001811461216b5761219a565b60ff198416875282151583028701945061219a565b8860005260208060002060005b858110156121915781548a820152908401908201612178565b50505082870194505b5050505083516121ae818360208801611b9a565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121ea90830184611bbe565b9695505050505050565b60006020828403121561220657600080fd5b815161160c81611b67565b60006001820161222357612223611fc4565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261224f5761224f61222a565b500490565b818103818111156106ab576106ab611fc4565b6000826122765761227661222a565b500690565b634e487b7160e01b600052603260045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212205d769589edc95be3c3c6a239a613b3433fb8ce8a900bc833e8a7d1fa74eb110d64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001607c452c0e9000da5899a39ddb493a16ddb23918bbdfbcd5edd0860deed67e91e30000000000000000000000004ce0a2cb3417c8b9670ce6c8d704a49e1471efdf00000000000000000000000000000000000000000000000000005af3107a40000000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000949636f6e69634e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005494d4e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d58794d6a5a5a376936654a4a6667793645643957453656674866776531314a765770327551755a374a77646d2f00000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): IconicNFT
Arg [1] : symbol_ (string): IMNFT
Arg [2] : baseURI_ (string): ipfs://QmXyMjZZ7i6eJJfgy6Ed9WE6VgHfwe11JvWp2uQuZ7Jwdm/
Arg [3] : merkleRoot_ (bytes32): 0x7c452c0e9000da5899a39ddb493a16ddb23918bbdfbcd5edd0860deed67e91e3
Arg [4] : iconicAddress_ (address): 0x4ce0A2Cb3417c8B9670Ce6c8D704a49e1471EfDf
Arg [5] : mintPrice_ (uint256): 100000000000000
Arg [6] : mintSize_ (uint64): 50
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 7c452c0e9000da5899a39ddb493a16ddb23918bbdfbcd5edd0860deed67e91e3
Arg [4] : 0000000000000000000000004ce0a2cb3417c8b9670ce6c8d704a49e1471efdf
Arg [5] : 00000000000000000000000000000000000000000000000000005af3107a4000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [8] : 49636f6e69634e46540000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [10] : 494d4e4654000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [12] : 697066733a2f2f516d58794d6a5a5a376936654a4a6667793645643957453656
Arg [13] : 674866776531314a765770327551755a374a77646d2f00000000000000000000
Deployed Bytecode Sourcemap
68219:4416:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18209:639;;;;;;;;;;-1:-1:-1;18209:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;18209:639:0;;;;;;;;19111:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25602:218::-;;;;;;;;;;-1:-1:-1;25602:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;25602:218:0;1533:203:1;25035:408:0;;;;;;:::i;:::-;;:::i;:::-;;70050:183;;;;;;;;;;-1:-1:-1;70050:183:0;;;;;:::i;:::-;;:::i;14862:323::-;;;;;;;;;;-1:-1:-1;70716:1:0;15136:12;14923:7;15120:13;:28;-1:-1:-1;;15120:46:0;14862:323;;;2613:25:1;;;2601:2;2586:18;14862:323:0;2467:177:1;68347:33:0;;;;;;;;;;-1:-1:-1;68347:33:0;;;;;;;;;;;29241:2825;;;;;;:::i;:::-;;:::i;71701:787::-;;;;;;:::i;:::-;;:::i;68522:39::-;;;;;;;;;;;;;;;;69591:151;;;;;;;;;;-1:-1:-1;69591:151:0;;;;;:::i;:::-;;:::i;68309:33::-;;;;;;;;;;-1:-1:-1;68309:33:0;;;;;;;;69140:147;;;;;;;;;;-1:-1:-1;69140:147:0;;;;;:::i;:::-;;:::i;32162:193::-;;;;;;:::i;:::-;;:::i;72496:136::-;;;;;;;;;;-1:-1:-1;72496:136:0;;;;;:::i;:::-;;:::i;68454:22::-;;;;;;;;;;-1:-1:-1;68454:22:0;;;;-1:-1:-1;;;;;68454:22:0;;;;;;-1:-1:-1;;;;;5254:31:1;;;5236:50;;5224:2;5209:18;68454:22:0;5092:200:1;20504:152:0;;;;;;;;;;-1:-1:-1;20504:152:0;;;;;:::i;:::-;;:::i;68425:24::-;;;;;;;;;;;;;;;;68283:21;;;;;;;;;;;;;:::i;16046:233::-;;;;;;;;;;-1:-1:-1;16046:233:0;;;;;:::i;:::-;;:::i;67362:103::-;;;;;;;;;;;;;:::i;70239:159::-;;;;;;;;;;-1:-1:-1;70239:159:0;;;;;:::i;:::-;;:::i;68385:35::-;;;;;;;;;;-1:-1:-1;68385:35:0;;;;;;;;;;;66714:87;;;;;;;;;;-1:-1:-1;66787:6:0;;-1:-1:-1;;;;;66787:6:0;66714:87;;19287:104;;;;;;;;;;;;;:::i;26160:234::-;;;;;;;;;;-1:-1:-1;26160:234:0;;;;;:::i;:::-;;:::i;68481:36::-;;;;;;;;;;-1:-1:-1;68481:36:0;;;;-1:-1:-1;;;68481:36:0;;-1:-1:-1;;;;;68481:36:0;;;32953:407;;;;;;:::i;:::-;;:::i;69442:143::-;;;;;;;;;;-1:-1:-1;69442:143:0;;;;;:::i;:::-;;:::i;70404:226::-;;;;;;;;;;-1:-1:-1;70404:226:0;;;;;:::i;:::-;;:::i;70729:964::-;;;;;;:::i;:::-;;:::i;69293:143::-;;;;;;;;;;-1:-1:-1;69293:143:0;;;;;:::i;:::-;;:::i;69747:142::-;;;;;;;;;;-1:-1:-1;69747:142:0;;;;;:::i;:::-;;:::i;26551:164::-;;;;;;;;;;-1:-1:-1;26551:164:0;;;;;:::i;:::-;;:::i;67620:201::-;;;;;;;;;;-1:-1:-1;67620:201:0;;;;;:::i;:::-;;:::i;69896:148::-;;;;;;;;;;-1:-1:-1;69896:148:0;;;;;:::i;:::-;;:::i;18209:639::-;18294:4;-1:-1:-1;;;;;;;;;18618:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;18695:25:0;;;18618:102;:179;;;-1:-1:-1;;;;;;;;;;18772:25:0;;;18618:179;18598:199;18209:639;-1:-1:-1;;18209:639:0:o;19111:100::-;19165:13;19198:5;19191:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19111:100;:::o;25602:218::-;25678:7;25703:16;25711:7;25703;:16::i;:::-;25698:64;;25728:34;;-1:-1:-1;;;25728:34:0;;;;;;;;;;;25698:64;-1:-1:-1;25782:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;25782:30:0;;25602:218::o;25035:408::-;25124:13;25140:16;25148:7;25140;:16::i;:::-;25124:32;-1:-1:-1;49368:10:0;-1:-1:-1;;;;;25173:28:0;;;25169:175;;25221:44;25238:5;49368:10;26551:164;:::i;25221:44::-;25216:128;;25293:35;;-1:-1:-1;;;25293:35:0;;;;;;;;;;;25216:128;25356:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;25356:35:0;-1:-1:-1;;;;;25356:35:0;;;;;;;;;25407:28;;25356:24;;25407:28;;;;;;;25113:330;25035:408;;:::o;70050:183::-;70154:5;;-1:-1:-1;;;;;70154:5:0;49368:10;-1:-1:-1;;;;;70131:28:0;;70123:55;;;;-1:-1:-1;;;70123:55:0;;;;;;;:::i;:::-;;;;;;;;;70187:18;:40;;-1:-1:-1;;;;;70187:40:0;;;-1:-1:-1;;;70187:40:0;-1:-1:-1;;70187:40:0;;;;;;;;;70050:183::o;29241:2825::-;29383:27;29413;29432:7;29413:18;:27::i;:::-;29383:57;;29498:4;-1:-1:-1;;;;;29457:45:0;29473:19;-1:-1:-1;;;;;29457:45:0;;29453:86;;29511:28;;-1:-1:-1;;;29511:28:0;;;;;;;;;;;29453:86;29553:27;28349:24;;;:15;:24;;;;;28577:26;;29744:68;28577:26;29786:4;49368:10;29792:19;-1:-1:-1;;;;;27823:32:0;;;27667:28;;27952:20;;27974:30;;27949:56;;27364:659;29744:68;29739:180;;29832:43;29849:4;49368:10;26551:164;:::i;29832:43::-;29827:92;;29884:35;;-1:-1:-1;;;29884:35:0;;;;;;;;;;;29827:92;-1:-1:-1;;;;;29936:16:0;;29932:52;;29961:23;;-1:-1:-1;;;29961:23:0;;;;;;;;;;;29932:52;30133:15;30130:160;;;30273:1;30252:19;30245:30;30130:160;-1:-1:-1;;;;;30670:24:0;;;;;;;:18;:24;;;;;;30668:26;;-1:-1:-1;;30668:26:0;;;30739:22;;;;;;;;;30737:24;;-1:-1:-1;30737:24:0;;;23893:11;23868:23;23864:41;23851:63;-1:-1:-1;;;23851:63:0;31032:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;31327:47:0;;:52;;31323:627;;31432:1;31422:11;;31400:19;31555:30;;;:17;:30;;;;;;:35;;31551:384;;31693:13;;31678:11;:28;31674:242;;31840:30;;;;:17;:30;;;;;:52;;;31674:242;31381:569;31323:627;31997:7;31993:2;-1:-1:-1;;;;;31978:27:0;31987:4;-1:-1:-1;;;;;31978:27:0;-1:-1:-1;;;;;;;;;;;31978:27:0;;;;;;;;;32016:42;29372:2694;;;29241:2825;;;:::o;71701:787::-;52924:1;53522:7;;:19;53514:63;;;;-1:-1:-1;;;53514:63:0;;8497:2:1;53514:63:0;;;8479:21:1;8536:2;8516:18;;;8509:30;8575:33;8555:18;;;8548:61;8626:18;;53514:63:0;8295:355:1;53514:63:0;52924:1;53655:7;:18;71835:13:::1;::::0;::::1;;71827:45;;;::::0;-1:-1:-1;;;71827:45:0;;8857:2:1;71827:45:0::1;::::0;::::1;8839:21:1::0;8896:2;8876:18;;;8869:30;-1:-1:-1;;;8915:18:1;;;8908:49;8974:18;;71827:45:0::1;8655:343:1::0;71827:45:0::1;71916:6;71904:18;;:9;;:18;;;;:::i;:::-;71891:9;:31;71883:74;;;::::0;-1:-1:-1;;;71883:74:0;;9510:2:1;71883:74:0::1;::::0;::::1;9492:21:1::0;9549:2;9529:18;;;9522:30;9588:32;9568:18;;;9561:60;9638:18;;71883:74:0::1;9308:354:1::0;71883:74:0::1;72003:8;::::0;-1:-1:-1;;;;;72003:8:0::1;71976:23;::::0;::::1;:14;15338:7:::0;15529:13;-1:-1:-1;;15529:31:0;;15283:296;71976:14:::1;:23;;;;:::i;:::-;:35;;71968:70;;;::::0;-1:-1:-1;;;71968:70:0;;9999:2:1;71968:70:0::1;::::0;::::1;9981:21:1::0;10038:2;10018:18;;;10011:30;-1:-1:-1;;;10057:18:1;;;10050:52;10119:18;;71968:70:0::1;9797:346:1::0;71968:70:0::1;72051:24;72078:37;::::0;::::1;:28;49368:10:::0;72086:19:::1;-1:-1:-1::0;;;;;17021:25:0;16988:6;17021:25;;;:18;:25;;;;;;10579:3;17021:40;;16933:137;72078:28:::1;:37;;;;:::i;:::-;72155:18;::::0;72051:64;;-1:-1:-1;;;;;;;;;72155:18:0;;::::1;::::0;::::1;72134:39:::0;;::::1;;;72126:73;;;::::0;-1:-1:-1;;;72126:73:0;;10535:2:1;72126:73:0::1;::::0;::::1;10517:21:1::0;10574:2;10554:18;;;10547:30;-1:-1:-1;;;10593:18:1;;;10586:51;10654:18;;72126:73:0::1;10333:345:1::0;72126:73:0::1;72271:18;::::0;-1:-1:-1;;;72271:18:0;::::1;-1:-1:-1::0;;;;;72271:18:0::1;72228:39;::::0;::::1;:30;49368:10:::0;16046:233;:::i;72228:30::-:1;:39;;;;:::i;:::-;:61;;72220:103;;;::::0;-1:-1:-1;;;72220:103:0;;10885:2:1;72220:103:0::1;::::0;::::1;10867:21:1::0;10924:2;10904:18;;;10897:30;10963:31;10943:18;;;10936:59;11012:18;;72220:103:0::1;10683:353:1::0;72220:103:0::1;72344:13;::::0;:33:::1;::::0;-1:-1:-1;;;;;72344:13:0;;::::1;::::0;72367:9:::1;72344:33:::0;::::1;;;::::0;:13:::1;:33:::0;:13;:33;72367:9;72344:13;:33;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;72388:34:0::1;49368:10:::0;72394:19:::1;72415:6;72388:34;;:5;:34::i;:::-;72433:47;49368:10:::0;72441:19:::1;-1:-1:-1::0;;;;;17347:25:0;17330:14;17347:25;;;:18;:25;;;;;;;-1:-1:-1;;;;;17547:32:0;10579:3;17584:24;;;17546:63;17620:34;;17258:404;72433:47:::1;-1:-1:-1::0;;52880:1:0;53834:7;:22;71701:787::o;69591:151::-;69685:5;;-1:-1:-1;;;;;69685:5:0;49368:10;-1:-1:-1;;;;;69662:28:0;;69654:55;;;;-1:-1:-1;;;69654:55:0;;;;;;;:::i;:::-;69718:7;:18;69728:8;69718:7;:18;:::i;:::-;;69591:151;:::o;69140:147::-;69226:5;;-1:-1:-1;;;;;69226:5:0;49368:10;-1:-1:-1;;;;;69203:28:0;;69195:55;;;;-1:-1:-1;;;69195:55:0;;;;;;;:::i;:::-;69257:15;:24;;;;;;;-1:-1:-1;;69257:24:0;;;;;;;;;69140:147::o;32162:193::-;32308:39;32325:4;32331:2;32335:7;32308:39;;;;;;;;;;;;:16;:39::i;:::-;32162:193;;;:::o;72496:136::-;72553:13;;;;;;;72545:48;;;;-1:-1:-1;;;72545:48:0;;13447:2:1;72545:48:0;;;13429:21:1;13486:2;13466:18;;;13459:30;-1:-1:-1;;;13505:18:1;;;13498:52;13567:18;;72545:48:0;13245:346:1;72545:48:0;72604:20;72610:7;72619:4;72604:5;:20::i;:::-;72496:136;:::o;20504:152::-;20576:7;20619:27;20638:7;20619:18;:27::i;68283:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16046:233::-;16118:7;-1:-1:-1;;;;;16142:19:0;;16138:60;;16170:28;;-1:-1:-1;;;16170:28:0;;;;;;;;;;;16138:60;-1:-1:-1;;;;;;16216:25:0;;;;;:18;:25;;;;;;-1:-1:-1;;;;;16216:55:0;;16046:233::o;67362:103::-;66600:13;:11;:13::i;:::-;67427:30:::1;67454:1;67427:18;:30::i;:::-;67362:103::o:0;70239:159::-;70326:5;;-1:-1:-1;;;;;70326:5:0;49368:10;-1:-1:-1;;;;;70303:28:0;;70295:55;;;;-1:-1:-1;;;70295:55:0;;;;;;;:::i;:::-;70359:19;:32;70239:159::o;19287:104::-;19343:13;19376:7;19369:14;;;;;:::i;26160:234::-;49368:10;26255:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26255:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26255:60:0;;;;;;;;;;26331:55;;540:41:1;;;26255:49:0;;49368:10;26331:55;;513:18:1;26331:55:0;;;;;;;26160:234;;:::o;32953:407::-;33128:31;33141:4;33147:2;33151:7;33128:12;:31::i;:::-;-1:-1:-1;;;;;33174:14:0;;;:19;33170:183;;33213:56;33244:4;33250:2;33254:7;33263:5;33213:30;:56::i;:::-;33208:145;;33297:40;;-1:-1:-1;;;33297:40:0;;;;;;;;;;;33208:145;32953:407;;;;:::o;69442:143::-;69526:5;;-1:-1:-1;;;;;69526:5:0;49368:10;-1:-1:-1;;;;;69503:28:0;;69495:55;;;;-1:-1:-1;;;69495:55:0;;;;;;;:::i;:::-;69557:13;:22;;;;;;;-1:-1:-1;;69557:22:0;;;;;;;;;69442:143::o;70404:226::-;70477:13;70507:16;70515:7;70507;:16::i;:::-;70499:49;;;;-1:-1:-1;;;70499:49:0;;13798:2:1;70499:49:0;;;13780:21:1;13837:2;13817:18;;;13810:30;-1:-1:-1;;;13856:18:1;;;13849:50;13916:18;;70499:49:0;13596:344:1;70499:49:0;70588:7;70597:25;70614:7;70597:16;:25::i;:::-;70571:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;70557:67;;70404:226;;;:::o;70729:964::-;52924:1;53522:7;;:19;53514:63;;;;-1:-1:-1;;;53514:63:0;;8497:2:1;53514:63:0;;;8479:21:1;8536:2;8516:18;;;8509:30;8575:33;8555:18;;;8548:61;8626:18;;53514:63:0;8295:355:1;53514:63:0;52924:1;53655:7;:18;70904:15:::1;::::0;;;::::1;;;70896:58;;;::::0;-1:-1:-1;;;70896:58:0;;15172:2:1;70896:58:0::1;::::0;::::1;15154:21:1::0;15211:2;15191:18;;;15184:30;15250:32;15230:18;;;15223:60;15300:18;;70896:58:0::1;14970:354:1::0;70896:58:0::1;70998:6;70986:18;;:9;;:18;;;;:::i;:::-;70973:9;:31;70965:74;;;::::0;-1:-1:-1;;;70965:74:0;;9510:2:1;70965:74:0::1;::::0;::::1;9492:21:1::0;9549:2;9529:18;;;9522:30;9588:32;9568:18;;;9561:60;9638:18;;70965:74:0::1;9308:354:1::0;70965:74:0::1;71085:8;::::0;-1:-1:-1;;;;;71085:8:0::1;71058:23;::::0;::::1;:14;15338:7:::0;15529:13;-1:-1:-1;;15529:31:0;;15283:296;71058:14:::1;:23;;;;:::i;:::-;:35;;71050:70;;;::::0;-1:-1:-1;;;71050:70:0;;9999:2:1;71050:70:0::1;::::0;::::1;9981:21:1::0;10038:2;10018:18;;;10011:30;-1:-1:-1;;;10057:18:1;;;10050:52;10119:18;;71050:70:0::1;9797:346:1::0;71050:70:0::1;71133:24;71160:37;::::0;::::1;:28;49368:10:::0;71168:19:::1;49281:105:::0;71160:28:::1;:37;;;;:::i;:::-;71237:18;::::0;71133:64;;-1:-1:-1;;;;;;;;;71237:18:0;;::::1;::::0;::::1;71216:39:::0;;::::1;;;71208:73;;;::::0;-1:-1:-1;;;71208:73:0;;10535:2:1;71208:73:0::1;::::0;::::1;10517:21:1::0;10574:2;10554:18;;;10547:30;-1:-1:-1;;;10593:18:1;;;10586:51;10654:18;;71208:73:0::1;10333:345:1::0;71208:73:0::1;71316:168;71353:11;;71316:168;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;71383:19:0::1;::::0;71431:37:::1;::::0;-1:-1:-1;;49368:10:0;15478:2:1;15474:15;15470:53;71431:37:0::1;::::0;::::1;15458:66:1::0;71383:19:0;;-1:-1:-1;15540:12:1;;;-1:-1:-1;71431:37:0::1;;;;;;;;;;;;71421:48;;;;;;71316:18;:168::i;:::-;71294:242;;;::::0;-1:-1:-1;;;71294:242:0;;15765:2:1;71294:242:0::1;::::0;::::1;15747:21:1::0;15804:2;15784:18;;;15777:30;15843:26;15823:18;;;15816:54;15887:18;;71294:242:0::1;15563:348:1::0;71294:242:0::1;71549:13;::::0;:33:::1;::::0;-1:-1:-1;;;;;71549:13:0;;::::1;::::0;71572:9:::1;71549:33:::0;::::1;;;::::0;:13:::1;:33:::0;:13;:33;71572:9;71549:13;:33;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;71593:34:0::1;49368:10:::0;71599:19:::1;49281:105:::0;71593:34:::1;71638:47;49368:10:::0;71646:19:::1;49281:105:::0;71638:47:::1;-1:-1:-1::0;;52880:1:0;53834:7;:22;-1:-1:-1;;70729:964:0:o;69293:143::-;69377:5;;-1:-1:-1;;;;;69377:5:0;49368:10;-1:-1:-1;;;;;69354:28:0;;69346:55;;;;-1:-1:-1;;;69346:55:0;;;;;;;:::i;:::-;69408:13;:22;;-1:-1:-1;;69408:22:0;;;;;;;;;;69293:143::o;69747:142::-;69831:5;;-1:-1:-1;;;;;69831:5:0;49368:10;-1:-1:-1;;;;;69808:28:0;;69800:55;;;;-1:-1:-1;;;69800:55:0;;;;;;;:::i;:::-;69864:8;:19;;-1:-1:-1;;69864:19:0;-1:-1:-1;;;;;69864:19:0;;;;;;;;;;69747:142::o;26551:164::-;-1:-1:-1;;;;;26672:25:0;;;26648:4;26672:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26551:164::o;67620:201::-;66600:13;:11;:13::i;:::-;-1:-1:-1;;;;;67709:22:0;::::1;67701:73;;;::::0;-1:-1:-1;;;67701:73:0;;16118:2:1;67701:73:0::1;::::0;::::1;16100:21:1::0;16157:2;16137:18;;;16130:30;16196:34;16176:18;;;16169:62;-1:-1:-1;;;16247:18:1;;;16240:36;16293:19;;67701:73:0::1;15916:402:1::0;67701:73:0::1;67785:28;67804:8;67785:18;:28::i;69896:148::-:0;69983:5;;-1:-1:-1;;;;;69983:5:0;49368:10;-1:-1:-1;;;;;69960:28:0;;69952:55;;;;-1:-1:-1;;;69952:55:0;;;;;;;:::i;:::-;70016:9;:22;69896:148::o;26973:282::-;27038:4;27094:7;70716:1;27075:26;;:66;;;;;27128:13;;27118:7;:23;27075:66;:153;;;;-1:-1:-1;;27179:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;27179:44:0;:49;;26973:282::o;21659:1275::-;21726:7;21761;;70716:1;21810:23;21806:1061;;21863:13;;21856:4;:20;21852:1015;;;21901:14;21918:23;;;:17;:23;;;;;;;-1:-1:-1;;;22007:24:0;;:29;;22003:845;;22672:113;22679:6;22689:1;22679:11;22672:113;;-1:-1:-1;;;22750:6:0;22732:25;;;;:17;:25;;;;;;22672:113;;;22818:6;21659:1275;-1:-1:-1;;;21659:1275:0:o;22003:845::-;21878:989;21852:1015;22895:31;;-1:-1:-1;;;22895:31:0;;;;;;;;;;;36622:2966;36695:20;36718:13;;;36746;;;36742:44;;36768:18;;-1:-1:-1;;;36768:18:0;;;;;;;;;;;36742:44;-1:-1:-1;;;;;37274:22:0;;;;;;:18;:22;;;;10343:2;37274:22;;;:71;;37312:32;37300:45;;37274:71;;;37588:31;;;:17;:31;;;;;-1:-1:-1;24324:15:0;;24298:24;24294:46;23893:11;23868:23;23864:41;23861:52;23851:63;;37588:173;;37823:23;;;;37588:31;;37274:22;;-1:-1:-1;;;;;;;;;;;37274:22:0;;38441:335;39102:1;39088:12;39084:20;39042:346;39143:3;39134:7;39131:16;39042:346;;39361:7;39351:8;39348:1;-1:-1:-1;;;;;;;;;;;39318:1:0;39315;39310:59;39196:1;39183:15;39042:346;;;39046:77;39421:8;39433:1;39421:13;39417:45;;39443:19;;-1:-1:-1;;;39443:19:0;;;;;;;;;;;39417:45;39479:13;:19;-1:-1:-1;32162:193:0;;;:::o;43810:3081::-;43890:27;43920;43939:7;43920:18;:27::i;:::-;43890:57;-1:-1:-1;43890:57:0;43960:12;;44082:35;44109:7;28238:27;28349:24;;;:15;:24;;;;;28577:26;;28349:24;;28136:485;44082:35;44025:92;;;;44134:13;44130:316;;;44255:68;44280:15;44297:4;49368:10;44303:19;49281:105;44255:68;44250:184;;44347:43;44364:4;49368:10;26551:164;:::i;44347:43::-;44342:92;;44399:35;;-1:-1:-1;;;44399:35:0;;;;;;;;;;;44342:92;44602:15;44599:160;;;44742:1;44721:19;44714:30;44599:160;-1:-1:-1;;;;;45361:24:0;;;;;;:18;:24;;;;;:60;;45389:32;45361:60;;;23893:11;23868:23;23864:41;23851:63;-1:-1:-1;;;23851:63:0;45659:26;;;;:17;:26;;;;;:205;;;;-1:-1:-1;;;45984:47:0;;:52;;45980:627;;46089:1;46079:11;;46057:19;46212:30;;;:17;:30;;;;;;:35;;46208:384;;46350:13;;46335:11;:28;46331:242;;46497:30;;;;:17;:30;;;;;:52;;;46331:242;46038:569;45980:627;46635:35;;46662:7;;46658:1;;-1:-1:-1;;;;;46635:35:0;;;-1:-1:-1;;;;;;;;;;;46635:35:0;46658:1;;46635:35;-1:-1:-1;;46858:12:0;:14;;;;;;-1:-1:-1;;;;43810:3081:0:o;66879:132::-;66787:6;;-1:-1:-1;;;;;66787:6:0;49368:10;66943:23;66935:68;;;;-1:-1:-1;;;66935:68:0;;16525:2:1;66935:68:0;;;16507:21:1;;;16544:18;;;16537:30;16603:34;16583:18;;;16576:62;16655:18;;66935:68:0;16323:356:1;67981:191:0;68074:6;;;-1:-1:-1;;;;;68091:17:0;;;-1:-1:-1;;;;;;68091:17:0;;;;;;;68124:40;;68074:6;;;68091:17;68074:6;;68124:40;;68055:16;;68124:40;68044:128;67981:191;:::o;35444:716::-;35628:88;;-1:-1:-1;;;35628:88:0;;35607:4;;-1:-1:-1;;;;;35628:45:0;;;;;:88;;49368:10;;35695:4;;35701:7;;35710:5;;35628:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35628:88:0;;;;;;;;-1:-1:-1;;35628:88:0;;;;;;;;;;;;:::i;:::-;;;35624:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35911:6;:13;35928:1;35911:18;35907:235;;35957:40;;-1:-1:-1;;;35957:40:0;;;;;;;;;;;35907:235;36100:6;36094:13;36085:6;36081:2;36077:15;36070:38;35624:529;-1:-1:-1;;;;;;35787:64:0;-1:-1:-1;;;35787:64:0;;-1:-1:-1;35624:529:0;35444:716;;;;;;:::o;62750:723::-;62806:13;63027:5;63036:1;63027:10;63023:53;;-1:-1:-1;;63054:10:0;;;;;;;;;;;;-1:-1:-1;;;63054:10:0;;;;;62750:723::o;63023:53::-;63101:5;63086:12;63142:78;63149:9;;63142:78;;63175:8;;;;:::i;:::-;;-1:-1:-1;63198:10:0;;-1:-1:-1;63206:2:0;63198:10;;:::i;:::-;;;63142:78;;;63230:19;63262:6;-1:-1:-1;;;;;63252:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63252:17:0;;63230:39;;63280:154;63287:10;;63280:154;;63314:11;63324:1;63314:11;;:::i;:::-;;-1:-1:-1;63383:10:0;63391:2;63383:5;:10;:::i;:::-;63370:24;;:2;:24;:::i;:::-;63357:39;;63340:6;63347;63340:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;63340:56:0;;;;;;;;-1:-1:-1;63411:11:0;63420:2;63411:11;;:::i;:::-;;;63280:154;;54935:190;55060:4;55113;55084:25;55097:5;55104:4;55084:12;:25::i;:::-;:33;;54935:190;-1:-1:-1;;;;54935:190:0:o;55802:296::-;55885:7;55928:4;55885:7;55943:118;55967:5;:12;55963:1;:16;55943:118;;;56016:33;56026:12;56040:5;56046:1;56040:8;;;;;;;;:::i;:::-;;;;;;;56016:9;:33::i;:::-;56001:48;-1:-1:-1;55981:3:0;;;;:::i;:::-;;;;55943:118;;;-1:-1:-1;56078:12:0;55802:296;-1:-1:-1;;;55802:296:0:o;62009:149::-;62072:7;62103:1;62099;:5;:51;;62234:13;62328:15;;;62364:4;62357:15;;;62411:4;62395:21;;62099:51;;;-1:-1:-1;62234:13:0;62328:15;;;62364:4;62357:15;62411:4;62395:21;;;62009:149::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2178:284::-;2236:6;2289:2;2277:9;2268:7;2264:23;2260:32;2257:52;;;2305:1;2302;2295:12;2257:52;2344:9;2331:23;-1:-1:-1;;;;;2387:5:1;2383:30;2376:5;2373:41;2363:69;;2428:1;2425;2418:12;2649:328;2726:6;2734;2742;2795:2;2783:9;2774:7;2770:23;2766:32;2763:52;;;2811:1;2808;2801:12;2763:52;2834:29;2853:9;2834:29;:::i;:::-;2824:39;;2882:38;2916:2;2905:9;2901:18;2882:38;:::i;:::-;2872:48;;2967:2;2956:9;2952:18;2939:32;2929:42;;2649:328;;;;;:::o;2982:159::-;3049:20;;3109:6;3098:18;;3088:29;;3078:57;;3131:1;3128;3121:12;3146:184;3204:6;3257:2;3245:9;3236:7;3232:23;3228:32;3225:52;;;3273:1;3270;3263:12;3225:52;3296:28;3314:9;3296:28;:::i;3517:127::-;3578:10;3573:3;3569:20;3566:1;3559:31;3609:4;3606:1;3599:15;3633:4;3630:1;3623:15;3649:632;3714:5;-1:-1:-1;;;;;3785:2:1;3777:6;3774:14;3771:40;;;3791:18;;:::i;:::-;3866:2;3860:9;3834:2;3920:15;;-1:-1:-1;;3916:24:1;;;3942:2;3912:33;3908:42;3896:55;;;3966:18;;;3986:22;;;3963:46;3960:72;;;4012:18;;:::i;:::-;4052:10;4048:2;4041:22;4081:6;4072:15;;4111:6;4103;4096:22;4151:3;4142:6;4137:3;4133:16;4130:25;4127:45;;;4168:1;4165;4158:12;4127:45;4218:6;4213:3;4206:4;4198:6;4194:17;4181:44;4273:1;4266:4;4257:6;4249;4245:19;4241:30;4234:41;;;;3649:632;;;;;:::o;4286:451::-;4355:6;4408:2;4396:9;4387:7;4383:23;4379:32;4376:52;;;4424:1;4421;4414:12;4376:52;4464:9;4451:23;-1:-1:-1;;;;;4489:6:1;4486:30;4483:50;;;4529:1;4526;4519:12;4483:50;4552:22;;4605:4;4597:13;;4593:27;-1:-1:-1;4583:55:1;;4634:1;4631;4624:12;4583:55;4657:74;4723:7;4718:2;4705:16;4700:2;4696;4692:11;4657:74;:::i;4742:160::-;4807:20;;4863:13;;4856:21;4846:32;;4836:60;;4892:1;4889;4882:12;4907:180;4963:6;5016:2;5004:9;4995:7;4991:23;4987:32;4984:52;;;5032:1;5029;5022:12;4984:52;5055:26;5071:9;5055:26;:::i;5297:186::-;5356:6;5409:2;5397:9;5388:7;5384:23;5380:32;5377:52;;;5425:1;5422;5415:12;5377:52;5448:29;5467:9;5448:29;:::i;5673:254::-;5738:6;5746;5799:2;5787:9;5778:7;5774:23;5770:32;5767:52;;;5815:1;5812;5805:12;5767:52;5838:29;5857:9;5838:29;:::i;:::-;5828:39;;5886:35;5917:2;5906:9;5902:18;5886:35;:::i;:::-;5876:45;;5673:254;;;;;:::o;5932:667::-;6027:6;6035;6043;6051;6104:3;6092:9;6083:7;6079:23;6075:33;6072:53;;;6121:1;6118;6111:12;6072:53;6144:29;6163:9;6144:29;:::i;:::-;6134:39;;6192:38;6226:2;6215:9;6211:18;6192:38;:::i;:::-;6182:48;;6277:2;6266:9;6262:18;6249:32;6239:42;;6332:2;6321:9;6317:18;6304:32;-1:-1:-1;;;;;6351:6:1;6348:30;6345:50;;;6391:1;6388;6381:12;6345:50;6414:22;;6467:4;6459:13;;6455:27;-1:-1:-1;6445:55:1;;6496:1;6493;6486:12;6445:55;6519:74;6585:7;6580:2;6567:16;6562:2;6558;6554:11;6519:74;:::i;:::-;6509:84;;;5932:667;;;;;;;:::o;6604:693::-;6698:6;6706;6714;6767:2;6755:9;6746:7;6742:23;6738:32;6735:52;;;6783:1;6780;6773:12;6735:52;6823:9;6810:23;-1:-1:-1;;;;;6893:2:1;6885:6;6882:14;6879:34;;;6909:1;6906;6899:12;6879:34;6947:6;6936:9;6932:22;6922:32;;6992:7;6985:4;6981:2;6977:13;6973:27;6963:55;;7014:1;7011;7004:12;6963:55;7054:2;7041:16;7080:2;7072:6;7069:14;7066:34;;;7096:1;7093;7086:12;7066:34;7151:7;7144:4;7134:6;7131:1;7127:14;7123:2;7119:23;7115:34;7112:47;7109:67;;;7172:1;7169;7162:12;7109:67;7203:4;7195:13;;;;-1:-1:-1;7227:6:1;-1:-1:-1;7252:39:1;;7270:20;;;-1:-1:-1;7252:39:1;:::i;:::-;7242:49;;6604:693;;;;;:::o;7302:260::-;7370:6;7378;7431:2;7419:9;7410:7;7406:23;7402:32;7399:52;;;7447:1;7444;7437:12;7399:52;7470:29;7489:9;7470:29;:::i;:::-;7460:39;;7518:38;7552:2;7541:9;7537:18;7518:38;:::i;7567:380::-;7646:1;7642:12;;;;7689;;;7710:61;;7764:4;7756:6;7752:17;7742:27;;7710:61;7817:2;7809:6;7806:14;7786:18;7783:38;7780:161;;7863:10;7858:3;7854:20;7851:1;7844:31;7898:4;7895:1;7888:15;7926:4;7923:1;7916:15;7780:161;;7567:380;;;:::o;7952:338::-;8154:2;8136:21;;;8193:2;8173:18;;;8166:30;-1:-1:-1;;;8227:2:1;8212:18;;8205:44;8281:2;8266:18;;7952:338::o;9003:127::-;9064:10;9059:3;9055:20;9052:1;9045:31;9095:4;9092:1;9085:15;9119:4;9116:1;9109:15;9135:168;9208:9;;;9239;;9256:15;;;9250:22;;9236:37;9226:71;;9277:18;;:::i;9667:125::-;9732:9;;;9753:10;;;9750:36;;;9766:18;;:::i;10148:180::-;-1:-1:-1;;;;;10253:10:1;;;10265;;;10249:27;;10288:11;;;10285:37;;;10302:18;;:::i;:::-;10285:37;10148:180;;;;:::o;11167:545::-;11269:2;11264:3;11261:11;11258:448;;;11305:1;11330:5;11326:2;11319:17;11375:4;11371:2;11361:19;11445:2;11433:10;11429:19;11426:1;11422:27;11416:4;11412:38;11481:4;11469:10;11466:20;11463:47;;;-1:-1:-1;11504:4:1;11463:47;11559:2;11554:3;11550:12;11547:1;11543:20;11537:4;11533:31;11523:41;;11614:82;11632:2;11625:5;11622:13;11614:82;;;11677:17;;;11658:1;11647:13;11614:82;;11888:1352;12014:3;12008:10;-1:-1:-1;;;;;12033:6:1;12030:30;12027:56;;;12063:18;;:::i;:::-;12092:97;12182:6;12142:38;12174:4;12168:11;12142:38;:::i;:::-;12136:4;12092:97;:::i;:::-;12244:4;;12308:2;12297:14;;12325:1;12320:663;;;;13027:1;13044:6;13041:89;;;-1:-1:-1;13096:19:1;;;13090:26;13041:89;-1:-1:-1;;11845:1:1;11841:11;;;11837:24;11833:29;11823:40;11869:1;11865:11;;;11820:57;13143:81;;12290:944;;12320:663;11114:1;11107:14;;;11151:4;11138:18;;-1:-1:-1;;12356:20:1;;;12474:236;12488:7;12485:1;12482:14;12474:236;;;12577:19;;;12571:26;12556:42;;12669:27;;;;12637:1;12625:14;;;;12504:19;;12474:236;;;12478:3;12738:6;12729:7;12726:19;12723:201;;;12799:19;;;12793:26;-1:-1:-1;;12882:1:1;12878:14;;;12894:3;12874:24;12870:37;12866:42;12851:58;12836:74;;12723:201;-1:-1:-1;;;;;12970:1:1;12954:14;;;12950:22;12937:36;;-1:-1:-1;11888:1352:1:o;13945:1020::-;14121:3;14150:1;14183:6;14177:13;14213:36;14239:9;14213:36;:::i;:::-;14268:1;14285:18;;;14312:133;;;;14459:1;14454:356;;;;14278:532;;14312:133;-1:-1:-1;;14345:24:1;;14333:37;;14418:14;;14411:22;14399:35;;14390:45;;;-1:-1:-1;14312:133:1;;14454:356;14485:6;14482:1;14475:17;14515:4;14560:2;14557:1;14547:16;14585:1;14599:165;14613:6;14610:1;14607:13;14599:165;;;14691:14;;14678:11;;;14671:35;14734:16;;;;14628:10;;14599:165;;;14603:3;;;14793:6;14788:3;14784:16;14777:23;;14278:532;;;;;14841:6;14835:13;14857:68;14916:8;14911:3;14904:4;14896:6;14892:17;14857:68;:::i;:::-;14941:18;;13945:1020;-1:-1:-1;;;;13945:1020:1:o;16684:489::-;-1:-1:-1;;;;;16953:15:1;;;16935:34;;17005:15;;17000:2;16985:18;;16978:43;17052:2;17037:18;;17030:34;;;17100:3;17095:2;17080:18;;17073:31;;;16878:4;;17121:46;;17147:19;;17139:6;17121:46;:::i;:::-;17113:54;16684:489;-1:-1:-1;;;;;;16684:489:1:o;17178:249::-;17247:6;17300:2;17288:9;17279:7;17275:23;17271:32;17268:52;;;17316:1;17313;17306:12;17268:52;17348:9;17342:16;17367:30;17391:5;17367:30;:::i;17432:135::-;17471:3;17492:17;;;17489:43;;17512:18;;:::i;:::-;-1:-1:-1;17559:1:1;17548:13;;17432:135::o;17572:127::-;17633:10;17628:3;17624:20;17621:1;17614:31;17664:4;17661:1;17654:15;17688:4;17685:1;17678:15;17704:120;17744:1;17770;17760:35;;17775:18;;:::i;:::-;-1:-1:-1;17809:9:1;;17704:120::o;17829:128::-;17896:9;;;17917:11;;;17914:37;;;17931:18;;:::i;17962:112::-;17994:1;18020;18010:35;;18025:18;;:::i;:::-;-1:-1:-1;18059:9:1;;17962:112::o;18079:127::-;18140:10;18135:3;18131:20;18128:1;18121:31;18171:4;18168:1;18161:15;18195:4;18192:1;18185:15
Swarm Source
ipfs://5d769589edc95be3c3c6a239a613b3433fb8ce8a900bc833e8a7d1fa74eb110d
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.