Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 181 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Mint | 14882579 | 951 days ago | IN | 0.035 ETH | 0.00138704 | ||||
Mint | 14882422 | 951 days ago | IN | 0.07 ETH | 0.00477638 | ||||
Mint | 14882375 | 951 days ago | IN | 0.07 ETH | 0.0038151 | ||||
Mint | 14882308 | 951 days ago | IN | 0.035 ETH | 0.00089613 | ||||
Mint | 14882286 | 951 days ago | IN | 0.035 ETH | 0.00106715 | ||||
Mint | 14882265 | 951 days ago | IN | 0.35 ETH | 0.00334606 | ||||
Mint | 14882240 | 951 days ago | IN | 0.035 ETH | 0.0010987 | ||||
Mint | 14882233 | 951 days ago | IN | 0.035 ETH | 0.00133388 | ||||
Mint | 14882229 | 951 days ago | IN | 0.035 ETH | 0.00126305 | ||||
Set Remaining Mi... | 14882163 | 951 days ago | IN | 0 ETH | 0.00170411 | ||||
Set Wallet Cap | 14882157 | 951 days ago | IN | 0 ETH | 0.00103869 | ||||
Mint | 14882151 | 951 days ago | IN | 0.035 ETH | 0.00596189 | ||||
Mint | 14882148 | 951 days ago | IN | 0.035 ETH | 0.00504962 | ||||
Mint | 14882143 | 951 days ago | IN | 0.035 ETH | 0.00262533 | ||||
Mint | 14882120 | 951 days ago | IN | 0.35 ETH | 0.00476994 | ||||
Mint | 14882120 | 951 days ago | IN | 0.035 ETH | 0.00347089 | ||||
Mint | 14882118 | 951 days ago | IN | 0.07 ETH | 0.00387869 | ||||
Mint | 14882114 | 951 days ago | IN | 0.105 ETH | 0.00285895 | ||||
Mint | 14882114 | 951 days ago | IN | 0.035 ETH | 0.00375664 | ||||
Mint | 14882113 | 951 days ago | IN | 0.07 ETH | 0.00390398 | ||||
Mint | 14882113 | 951 days ago | IN | 0.07 ETH | 0.00339797 | ||||
Mint | 14882111 | 951 days ago | IN | 0.035 ETH | 0.00399813 | ||||
Mint | 14882109 | 951 days ago | IN | 0.105 ETH | 0.00336474 | ||||
Mint | 14882108 | 951 days ago | IN | 0.07 ETH | 0.00402615 | ||||
Mint | 14882108 | 951 days ago | IN | 0.07 ETH | 0.00295857 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
14882422 | 951 days ago | 0.07 ETH | ||||
14882375 | 951 days ago | 0.07 ETH | ||||
14882265 | 951 days ago | 0.35 ETH | ||||
14882151 | 951 days ago | 0.035 ETH | ||||
14882148 | 951 days ago | 0.035 ETH | ||||
14882143 | 951 days ago | 0.035 ETH | ||||
14882120 | 951 days ago | 0.35 ETH | ||||
14882120 | 951 days ago | 0.035 ETH | ||||
14882118 | 951 days ago | 0.07 ETH | ||||
14882114 | 951 days ago | 0.105 ETH | ||||
14882114 | 951 days ago | 0.035 ETH | ||||
14882113 | 951 days ago | 0.07 ETH | ||||
14882113 | 951 days ago | 0.07 ETH | ||||
14882111 | 951 days ago | 0.035 ETH | ||||
14882109 | 951 days ago | 0.105 ETH | ||||
14882108 | 951 days ago | 0.07 ETH | ||||
14882108 | 951 days ago | 0.07 ETH | ||||
14882086 | 951 days ago | 0.07 ETH | ||||
14882082 | 951 days ago | 0.105 ETH | ||||
14882075 | 951 days ago | 0.035 ETH | ||||
14882074 | 951 days ago | 0.035 ETH | ||||
14882073 | 951 days ago | 0.07 ETH | ||||
14882070 | 951 days ago | 0.035 ETH | ||||
14882070 | 951 days ago | 0.035 ETH | ||||
14882063 | 951 days ago | 0.035 ETH |
Loading...
Loading
Contract Name:
MisfitsNFTMinter
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-11 */ // SPDX-License-Identifier: UNLICENSED // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees 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 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++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.0 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @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 ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _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 ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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 { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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 { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/MisfitsNFT.sol pragma solidity ^0.8.4; contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } contract MisfitsNFT is ERC721A, Ownable { address public MINTER; string baseURI; string contractUri; address proxyRegistryAddress; modifier onlyMinter() { require(_msgSender() == MINTER || _msgSender() == owner(), "ACCESS_FORBIDDEN"); _; } // Post Reveal URI: https://themisfitsnft.mypinata.cloud/ipfs/QmTavHME8q6nUu9n9NJ9P5CA2HTmM58mFm1unFoesovxZS/ // Pre Reveal URI: https://themisfitsnft.mypinata.cloud/ipfs/QmPHj5LvPY1C9rzsv5acDCt7FAcFLoLEngtio38t7Yfx6x/ // Contract URI: https://themisfitsnft.mypinata.cloud/ipfs/QmRcU3DVpy3ZPXbme4bLyrWH9uzdDGyksa85u5dnDGx48E // Rinkeby proxy: 0xf57b2c51ded3a29e6891aba85459d600256cf317 // Mainnet proxy: 0xa5409ec958c83c3f309868babaca7c86dcb077c1 constructor(address _minter, string memory _tokenUri, string memory _contractUri, address _proxyRegistryAddress) ERC721A("MisfitsNFT", "MISFITS") { MINTER = _minter; baseURI = _tokenUri; contractUri = _contractUri; proxyRegistryAddress = _proxyRegistryAddress; } function contractURI() public view returns (string memory) { return contractUri; } function setMinterContract(address _newMinter) external onlyOwner { MINTER = _newMinter; } function setBaseUri(string memory _newUri) external onlyOwner { baseURI = _newUri; } function setContractUri(string memory _newUri) external onlyOwner { contractUri = _newUri; } function _startTokenId() internal pure override returns (uint256) { return 1; } function _baseURI() internal view override returns (string memory) { return baseURI; } function mint(address recipient, uint256 quantity) external onlyMinter { _mint(recipient, quantity, "", true); } function isApprovedForAll(address owner, address operator) override public view returns (bool) { ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(owner)) == operator) { return true; } return super.isApprovedForAll(owner, operator); } } // File: contracts/MisfitsNFTMinter.sol pragma solidity ^0.8.4; contract MisfitsNFTMinter is Ownable { MisfitsNFT parentContract; bytes32 public whitelistedMerkleRoot; uint16 public remainingSupply; uint16 public walletCap; uint256 public mintFee; mapping (address => uint8) remainingMints; // Root: 0x63b0a0ffbf1fd2ab119210ed36e1d142061f7bf35ac3379c7b32d8510c5478b0 constructor(bytes32 _whitelistedRoot) { whitelistedMerkleRoot = _whitelistedRoot; remainingSupply = 300; walletCap = 4; mintFee = 5 * 10**16; } function setParentContract(address _newContract) external onlyOwner { parentContract = MisfitsNFT(_newContract); } function setWhitelistedTreeRoot(bytes32 _newRoot) external onlyOwner { whitelistedMerkleRoot = _newRoot; } function setReleaseAmount(uint16 newAmount) external onlyOwner { remainingSupply = newAmount; } function setWalletCap(uint16 newCap) external onlyOwner { walletCap = newCap; } function setMintFee(uint256 newFee) external onlyOwner { mintFee = newFee; } function setRemainingMints(address wallet, uint8 newValue) external onlyOwner { remainingMints[wallet] = newValue; } function mint(uint256 quantity, bytes32[] memory proof) external payable { require(remainingSupply >= quantity, "ROUND_LIMIT_EXCEEDS"); require(msg.value >= mintFee * quantity, "INSUFFICIENT_FEE"); bytes32 leaf = keccak256(abi.encodePacked(_msgSender())); require(whitelistedMerkleRoot == "" || MerkleProof.verify(proof, whitelistedMerkleRoot, leaf), "WALLET_NOT_WHITELISTED"); if (remainingMints[_msgSender()] == 0) { remainingMints[_msgSender()] = uint8(walletCap + 1); } require(walletCap == 999 || remainingMints[_msgSender()] - 1 >= quantity, "MINT_LIMIT_EXCEEDS"); parentContract.mint(_msgSender(), quantity); payable(owner()).transfer(msg.value); remainingMints[_msgSender()] -= uint8(quantity); remainingSupply -= uint8(quantity); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"bytes32","name":"_whitelistedRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remainingSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"setMintFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newContract","type":"address"}],"name":"setParentContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"newAmount","type":"uint16"}],"name":"setReleaseAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint8","name":"newValue","type":"uint8"}],"name":"setRemainingMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"newCap","type":"uint16"}],"name":"setWalletCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newRoot","type":"bytes32"}],"name":"setWhitelistedTreeRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletCap","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistedMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162001a6d38038062001a6d833981810160405281019062000037919062000193565b620000576200004b620000b060201b60201c565b620000b860201b60201c565b8060028190555061012c600360006101000a81548161ffff021916908361ffff1602179055506004600360026101000a81548161ffff021916908361ffff16021790555066b1a2bc2ec5000060048190555050620001ee565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000815190506200018d81620001d4565b92915050565b600060208284031215620001ac57620001ab620001cf565b5b6000620001bc848285016200017c565b91505092915050565b6000819050919050565b600080fd5b620001df81620001c5565b8114620001eb57600080fd5b50565b61186f80620001fe6000396000f3fe6080604052600436106100dd5760003560e01c8063b6b7a2191161007f578063d6e839be11610059578063d6e839be14610265578063da0239a61461028e578063eddd0d9c146102b9578063f2fde38b146102e2576100dd565b8063b6b7a219146101f7578063ba41b0c614610220578063bfb15c511461023c576100dd565b8063715018a6116100bb578063715018a614610163578063765ccb6b1461017a5780638da5cb5b146101a3578063990e648d146101ce576100dd565b806313966db5146100e257806358950c221461010d5780636ce948d514610138575b600080fd5b3480156100ee57600080fd5b506100f761030b565b6040516101049190611375565b60405180910390f35b34801561011957600080fd5b50610122610311565b60405161012f919061135a565b60405180910390f35b34801561014457600080fd5b5061014d610325565b60405161015a919061127f565b60405180910390f35b34801561016f57600080fd5b5061017861032b565b005b34801561018657600080fd5b506101a1600480360381019061019c9190610fab565b6103b3565b005b3480156101af57600080fd5b506101b8610473565b6040516101c5919061123b565b60405180910390f35b3480156101da57600080fd5b506101f560048036038101906101f09190610fd8565b61049c565b005b34801561020357600080fd5b5061021e60048036038101906102199190611018565b610574565b005b61023a6004803603810190610235919061109f565b6105fa565b005b34801561024857600080fd5b50610263600480360381019061025e9190611045565b610a6b565b005b34801561027157600080fd5b5061028c60048036038101906102879190611045565b610b07565b005b34801561029a57600080fd5b506102a3610ba3565b6040516102b0919061135a565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190611072565b610bb7565b005b3480156102ee57600080fd5b5061030960048036038101906103049190610fab565b610c3d565b005b60045481565b600360029054906101000a900461ffff1681565b60025481565b610333610d35565b73ffffffffffffffffffffffffffffffffffffffff16610351610473565b73ffffffffffffffffffffffffffffffffffffffff16146103a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039e9061133a565b60405180910390fd5b6103b16000610d3d565b565b6103bb610d35565b73ffffffffffffffffffffffffffffffffffffffff166103d9610473565b73ffffffffffffffffffffffffffffffffffffffff161461042f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104269061133a565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6104a4610d35565b73ffffffffffffffffffffffffffffffffffffffff166104c2610473565b73ffffffffffffffffffffffffffffffffffffffff1614610518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050f9061133a565b60405180910390fd5b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055505050565b61057c610d35565b73ffffffffffffffffffffffffffffffffffffffff1661059a610473565b73ffffffffffffffffffffffffffffffffffffffff16146105f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e79061133a565b60405180910390fd5b8060028190555050565b81600360009054906101000a900461ffff1661ffff161015610651576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610648906112fa565b60405180910390fd5b8160045461065f919061142a565b3410156106a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106989061131a565b60405180910390fd5b60006106ab610d35565b6040516020016106bb9190611220565b604051602081830303815290604052805190602001209050600060025414806106ed57506106ec8260025483610e01565b5b61072c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107239061129a565b60405180910390fd5b60006005600061073a610d35565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161415610807576001600360029054906101000a900461ffff166107a891906113f2565b600560006107b4610d35565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055505b6103e7600360029054906101000a900461ffff1661ffff16148061088d575082600160056000610835610d35565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661088791906114b8565b60ff1610155b6108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c3906112da565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f19610912610d35565b856040518363ffffffff1660e01b8152600401610930929190611256565b600060405180830381600087803b15801561094a57600080fd5b505af115801561095e573d6000803e3d6000fd5b5050505061096a610473565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501580156109af573d6000803e3d6000fd5b5082600560006109bd610d35565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16610a1291906114b8565b92506101000a81548160ff021916908360ff1602179055508260ff16600360008282829054906101000a900461ffff16610a4c9190611484565b92506101000a81548161ffff021916908361ffff160217905550505050565b610a73610d35565b73ffffffffffffffffffffffffffffffffffffffff16610a91610473565b73ffffffffffffffffffffffffffffffffffffffff1614610ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ade9061133a565b60405180910390fd5b80600360006101000a81548161ffff021916908361ffff16021790555050565b610b0f610d35565b73ffffffffffffffffffffffffffffffffffffffff16610b2d610473565b73ffffffffffffffffffffffffffffffffffffffff1614610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a9061133a565b60405180910390fd5b80600360026101000a81548161ffff021916908361ffff16021790555050565b600360009054906101000a900461ffff1681565b610bbf610d35565b73ffffffffffffffffffffffffffffffffffffffff16610bdd610473565b73ffffffffffffffffffffffffffffffffffffffff1614610c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2a9061133a565b60405180910390fd5b8060048190555050565b610c45610d35565b73ffffffffffffffffffffffffffffffffffffffff16610c63610473565b73ffffffffffffffffffffffffffffffffffffffff1614610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb09061133a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d20906112ba565b60405180910390fd5b610d3281610d3d565b50565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600082610e0e8584610e18565b1490509392505050565b60008082905060005b8451811015610e82576000858281518110610e3f57610e3e61161a565b5b60200260200101519050808311610e6157610e5a8382610e8d565b9250610e6e565b610e6b8184610e8d565b92505b508080610e7a9061157e565b915050610e21565b508091505092915050565b600082600052816020526040600020905092915050565b6000610eb7610eb2846113b5565b611390565b90508083825260208201905082856020860282011115610eda57610ed961167d565b5b60005b85811015610f0a5781610ef08882610f57565b845260208401935060208301925050600181019050610edd565b5050509392505050565b600081359050610f23816117c6565b92915050565b600082601f830112610f3e57610f3d611678565b5b8135610f4e848260208601610ea4565b91505092915050565b600081359050610f66816117dd565b92915050565b600081359050610f7b816117f4565b92915050565b600081359050610f908161180b565b92915050565b600081359050610fa581611822565b92915050565b600060208284031215610fc157610fc0611687565b5b6000610fcf84828501610f14565b91505092915050565b60008060408385031215610fef57610fee611687565b5b6000610ffd85828601610f14565b925050602061100e85828601610f96565b9150509250929050565b60006020828403121561102e5761102d611687565b5b600061103c84828501610f57565b91505092915050565b60006020828403121561105b5761105a611687565b5b600061106984828501610f6c565b91505092915050565b60006020828403121561108857611087611687565b5b600061109684828501610f81565b91505092915050565b600080604083850312156110b6576110b5611687565b5b60006110c485828601610f81565b925050602083013567ffffffffffffffff8111156110e5576110e4611682565b5b6110f185828601610f29565b9150509250929050565b611104816114ec565b82525050565b61111b611116826114ec565b6115c7565b82525050565b61112a816114fe565b82525050565b600061113d6016836113e1565b9150611148826116aa565b602082019050919050565b60006111606026836113e1565b915061116b826116d3565b604082019050919050565b60006111836012836113e1565b915061118e82611722565b602082019050919050565b60006111a66013836113e1565b91506111b18261174b565b602082019050919050565b60006111c96010836113e1565b91506111d482611774565b602082019050919050565b60006111ec6020836113e1565b91506111f78261179d565b602082019050919050565b61120b81611508565b82525050565b61121a81611536565b82525050565b600061122c828461110a565b60148201915081905092915050565b600060208201905061125060008301846110fb565b92915050565b600060408201905061126b60008301856110fb565b6112786020830184611211565b9392505050565b60006020820190506112946000830184611121565b92915050565b600060208201905081810360008301526112b381611130565b9050919050565b600060208201905081810360008301526112d381611153565b9050919050565b600060208201905081810360008301526112f381611176565b9050919050565b6000602082019050818103600083015261131381611199565b9050919050565b60006020820190508181036000830152611333816111bc565b9050919050565b60006020820190508181036000830152611353816111df565b9050919050565b600060208201905061136f6000830184611202565b92915050565b600060208201905061138a6000830184611211565b92915050565b600061139a6113ab565b90506113a6828261154d565b919050565b6000604051905090565b600067ffffffffffffffff8211156113d0576113cf611649565b5b602082029050602081019050919050565b600082825260208201905092915050565b60006113fd82611508565b915061140883611508565b92508261ffff0382111561141f5761141e6115eb565b5b828201905092915050565b600061143582611536565b915061144083611536565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611479576114786115eb565b5b828202905092915050565b600061148f82611508565b915061149a83611508565b9250828210156114ad576114ac6115eb565b5b828203905092915050565b60006114c382611540565b91506114ce83611540565b9250828210156114e1576114e06115eb565b5b828203905092915050565b60006114f782611516565b9050919050565b6000819050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6115568261168c565b810181811067ffffffffffffffff8211171561157557611574611649565b5b80604052505050565b600061158982611536565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156115bc576115bb6115eb565b5b600182019050919050565b60006115d2826115d9565b9050919050565b60006115e48261169d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f57414c4c45545f4e4f545f57484954454c495354454400000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d494e545f4c494d49545f455843454544530000000000000000000000000000600082015250565b7f524f554e445f4c494d49545f4558434545445300000000000000000000000000600082015250565b7f494e53554646494349454e545f46454500000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6117cf816114ec565b81146117da57600080fd5b50565b6117e6816114fe565b81146117f157600080fd5b50565b6117fd81611508565b811461180857600080fd5b50565b61181481611536565b811461181f57600080fd5b50565b61182b81611540565b811461183657600080fd5b5056fea2646970667358221220d163dde195065078752fc9de4ddfa8b762231cabf900559084ad92da4b85e12664736f6c6343000807003363b0a0ffbf1fd2ab119210ed36e1d142061f7bf35ac3379c7b32d8510c5478b0
Deployed Bytecode
0x6080604052600436106100dd5760003560e01c8063b6b7a2191161007f578063d6e839be11610059578063d6e839be14610265578063da0239a61461028e578063eddd0d9c146102b9578063f2fde38b146102e2576100dd565b8063b6b7a219146101f7578063ba41b0c614610220578063bfb15c511461023c576100dd565b8063715018a6116100bb578063715018a614610163578063765ccb6b1461017a5780638da5cb5b146101a3578063990e648d146101ce576100dd565b806313966db5146100e257806358950c221461010d5780636ce948d514610138575b600080fd5b3480156100ee57600080fd5b506100f761030b565b6040516101049190611375565b60405180910390f35b34801561011957600080fd5b50610122610311565b60405161012f919061135a565b60405180910390f35b34801561014457600080fd5b5061014d610325565b60405161015a919061127f565b60405180910390f35b34801561016f57600080fd5b5061017861032b565b005b34801561018657600080fd5b506101a1600480360381019061019c9190610fab565b6103b3565b005b3480156101af57600080fd5b506101b8610473565b6040516101c5919061123b565b60405180910390f35b3480156101da57600080fd5b506101f560048036038101906101f09190610fd8565b61049c565b005b34801561020357600080fd5b5061021e60048036038101906102199190611018565b610574565b005b61023a6004803603810190610235919061109f565b6105fa565b005b34801561024857600080fd5b50610263600480360381019061025e9190611045565b610a6b565b005b34801561027157600080fd5b5061028c60048036038101906102879190611045565b610b07565b005b34801561029a57600080fd5b506102a3610ba3565b6040516102b0919061135a565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190611072565b610bb7565b005b3480156102ee57600080fd5b5061030960048036038101906103049190610fab565b610c3d565b005b60045481565b600360029054906101000a900461ffff1681565b60025481565b610333610d35565b73ffffffffffffffffffffffffffffffffffffffff16610351610473565b73ffffffffffffffffffffffffffffffffffffffff16146103a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039e9061133a565b60405180910390fd5b6103b16000610d3d565b565b6103bb610d35565b73ffffffffffffffffffffffffffffffffffffffff166103d9610473565b73ffffffffffffffffffffffffffffffffffffffff161461042f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104269061133a565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6104a4610d35565b73ffffffffffffffffffffffffffffffffffffffff166104c2610473565b73ffffffffffffffffffffffffffffffffffffffff1614610518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050f9061133a565b60405180910390fd5b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055505050565b61057c610d35565b73ffffffffffffffffffffffffffffffffffffffff1661059a610473565b73ffffffffffffffffffffffffffffffffffffffff16146105f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e79061133a565b60405180910390fd5b8060028190555050565b81600360009054906101000a900461ffff1661ffff161015610651576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610648906112fa565b60405180910390fd5b8160045461065f919061142a565b3410156106a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106989061131a565b60405180910390fd5b60006106ab610d35565b6040516020016106bb9190611220565b604051602081830303815290604052805190602001209050600060025414806106ed57506106ec8260025483610e01565b5b61072c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107239061129a565b60405180910390fd5b60006005600061073a610d35565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161415610807576001600360029054906101000a900461ffff166107a891906113f2565b600560006107b4610d35565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055505b6103e7600360029054906101000a900461ffff1661ffff16148061088d575082600160056000610835610d35565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661088791906114b8565b60ff1610155b6108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c3906112da565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f19610912610d35565b856040518363ffffffff1660e01b8152600401610930929190611256565b600060405180830381600087803b15801561094a57600080fd5b505af115801561095e573d6000803e3d6000fd5b5050505061096a610473565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501580156109af573d6000803e3d6000fd5b5082600560006109bd610d35565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16610a1291906114b8565b92506101000a81548160ff021916908360ff1602179055508260ff16600360008282829054906101000a900461ffff16610a4c9190611484565b92506101000a81548161ffff021916908361ffff160217905550505050565b610a73610d35565b73ffffffffffffffffffffffffffffffffffffffff16610a91610473565b73ffffffffffffffffffffffffffffffffffffffff1614610ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ade9061133a565b60405180910390fd5b80600360006101000a81548161ffff021916908361ffff16021790555050565b610b0f610d35565b73ffffffffffffffffffffffffffffffffffffffff16610b2d610473565b73ffffffffffffffffffffffffffffffffffffffff1614610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a9061133a565b60405180910390fd5b80600360026101000a81548161ffff021916908361ffff16021790555050565b600360009054906101000a900461ffff1681565b610bbf610d35565b73ffffffffffffffffffffffffffffffffffffffff16610bdd610473565b73ffffffffffffffffffffffffffffffffffffffff1614610c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2a9061133a565b60405180910390fd5b8060048190555050565b610c45610d35565b73ffffffffffffffffffffffffffffffffffffffff16610c63610473565b73ffffffffffffffffffffffffffffffffffffffff1614610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb09061133a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d20906112ba565b60405180910390fd5b610d3281610d3d565b50565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600082610e0e8584610e18565b1490509392505050565b60008082905060005b8451811015610e82576000858281518110610e3f57610e3e61161a565b5b60200260200101519050808311610e6157610e5a8382610e8d565b9250610e6e565b610e6b8184610e8d565b92505b508080610e7a9061157e565b915050610e21565b508091505092915050565b600082600052816020526040600020905092915050565b6000610eb7610eb2846113b5565b611390565b90508083825260208201905082856020860282011115610eda57610ed961167d565b5b60005b85811015610f0a5781610ef08882610f57565b845260208401935060208301925050600181019050610edd565b5050509392505050565b600081359050610f23816117c6565b92915050565b600082601f830112610f3e57610f3d611678565b5b8135610f4e848260208601610ea4565b91505092915050565b600081359050610f66816117dd565b92915050565b600081359050610f7b816117f4565b92915050565b600081359050610f908161180b565b92915050565b600081359050610fa581611822565b92915050565b600060208284031215610fc157610fc0611687565b5b6000610fcf84828501610f14565b91505092915050565b60008060408385031215610fef57610fee611687565b5b6000610ffd85828601610f14565b925050602061100e85828601610f96565b9150509250929050565b60006020828403121561102e5761102d611687565b5b600061103c84828501610f57565b91505092915050565b60006020828403121561105b5761105a611687565b5b600061106984828501610f6c565b91505092915050565b60006020828403121561108857611087611687565b5b600061109684828501610f81565b91505092915050565b600080604083850312156110b6576110b5611687565b5b60006110c485828601610f81565b925050602083013567ffffffffffffffff8111156110e5576110e4611682565b5b6110f185828601610f29565b9150509250929050565b611104816114ec565b82525050565b61111b611116826114ec565b6115c7565b82525050565b61112a816114fe565b82525050565b600061113d6016836113e1565b9150611148826116aa565b602082019050919050565b60006111606026836113e1565b915061116b826116d3565b604082019050919050565b60006111836012836113e1565b915061118e82611722565b602082019050919050565b60006111a66013836113e1565b91506111b18261174b565b602082019050919050565b60006111c96010836113e1565b91506111d482611774565b602082019050919050565b60006111ec6020836113e1565b91506111f78261179d565b602082019050919050565b61120b81611508565b82525050565b61121a81611536565b82525050565b600061122c828461110a565b60148201915081905092915050565b600060208201905061125060008301846110fb565b92915050565b600060408201905061126b60008301856110fb565b6112786020830184611211565b9392505050565b60006020820190506112946000830184611121565b92915050565b600060208201905081810360008301526112b381611130565b9050919050565b600060208201905081810360008301526112d381611153565b9050919050565b600060208201905081810360008301526112f381611176565b9050919050565b6000602082019050818103600083015261131381611199565b9050919050565b60006020820190508181036000830152611333816111bc565b9050919050565b60006020820190508181036000830152611353816111df565b9050919050565b600060208201905061136f6000830184611202565b92915050565b600060208201905061138a6000830184611211565b92915050565b600061139a6113ab565b90506113a6828261154d565b919050565b6000604051905090565b600067ffffffffffffffff8211156113d0576113cf611649565b5b602082029050602081019050919050565b600082825260208201905092915050565b60006113fd82611508565b915061140883611508565b92508261ffff0382111561141f5761141e6115eb565b5b828201905092915050565b600061143582611536565b915061144083611536565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611479576114786115eb565b5b828202905092915050565b600061148f82611508565b915061149a83611508565b9250828210156114ad576114ac6115eb565b5b828203905092915050565b60006114c382611540565b91506114ce83611540565b9250828210156114e1576114e06115eb565b5b828203905092915050565b60006114f782611516565b9050919050565b6000819050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6115568261168c565b810181811067ffffffffffffffff8211171561157557611574611649565b5b80604052505050565b600061158982611536565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156115bc576115bb6115eb565b5b600182019050919050565b60006115d2826115d9565b9050919050565b60006115e48261169d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f57414c4c45545f4e4f545f57484954454c495354454400000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d494e545f4c494d49545f455843454544530000000000000000000000000000600082015250565b7f524f554e445f4c494d49545f4558434545445300000000000000000000000000600082015250565b7f494e53554646494349454e545f46454500000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6117cf816114ec565b81146117da57600080fd5b50565b6117e6816114fe565b81146117f157600080fd5b50565b6117fd81611508565b811461180857600080fd5b50565b61181481611536565b811461181f57600080fd5b50565b61182b81611540565b811461183657600080fd5b5056fea2646970667358221220d163dde195065078752fc9de4ddfa8b762231cabf900559084ad92da4b85e12664736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
63b0a0ffbf1fd2ab119210ed36e1d142061f7bf35ac3379c7b32d8510c5478b0
-----Decoded View---------------
Arg [0] : _whitelistedRoot (bytes32): 0x63b0a0ffbf1fd2ab119210ed36e1d142061f7bf35ac3379c7b32d8510c5478b0
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 63b0a0ffbf1fd2ab119210ed36e1d142061f7bf35ac3379c7b32d8510c5478b0
Deployed Bytecode Sourcemap
50676:2123:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50861:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50831:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50752:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7510:103;;;;;;;;;;;;;:::i;:::-;;51213:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6859:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51793:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51349:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51931:865;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51477:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51594:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50795:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51695:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7768:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50861:22;;;;:::o;50831:23::-;;;;;;;;;;;;;:::o;50752:36::-;;;;:::o;7510:103::-;7090:12;:10;:12::i;:::-;7079:23;;:7;:5;:7::i;:::-;:23;;;7071:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7575:30:::1;7602:1;7575:18;:30::i;:::-;7510:103::o:0;51213:128::-;7090:12;:10;:12::i;:::-;7079:23;;:7;:5;:7::i;:::-;:23;;;7071:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51320:12:::1;51292:14;;:41;;;;;;;;;;;;;;;;;;51213:128:::0;:::o;6859:87::-;6905:7;6932:6;;;;;;;;;;;6925:13;;6859:87;:::o;51793:130::-;7090:12;:10;:12::i;:::-;7079:23;;:7;:5;:7::i;:::-;:23;;;7071:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51907:8:::1;51882:14;:22;51897:6;51882:22;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;51793:130:::0;;:::o;51349:120::-;7090:12;:10;:12::i;:::-;7079:23;;:7;:5;:7::i;:::-;:23;;;7071:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51453:8:::1;51429:21;:32;;;;51349:120:::0;:::o;51931:865::-;52042:8;52023:15;;;;;;;;;;;:27;;;;52015:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;52116:8;52106:7;;:18;;;;:::i;:::-;52093:9;:31;;52085:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;52158:12;52200;:10;:12::i;:::-;52183:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;52173:41;;;;;;52158:56;;52233:27;:21;;:27;:85;;;;52264:54;52283:5;52290:21;;52313:4;52264:18;:54::i;:::-;52233:85;52225:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;52394:1;52362:14;:28;52377:12;:10;:12::i;:::-;52362:28;;;;;;;;;;;;;;;;;;;;;;;;;:33;;;52358:117;;;52461:1;52449:9;;;;;;;;;;;:13;;;;:::i;:::-;52412:14;:28;52427:12;:10;:12::i;:::-;52412:28;;;;;;;;;;;;;;;;:51;;;;;;;;;;;;;;;;;;52358:117;52506:3;52493:9;;;;;;;;;;;:16;;;:64;;;;52549:8;52544:1;52513:14;:28;52528:12;:10;:12::i;:::-;52513:28;;;;;;;;;;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;:44;;;;52493:64;52485:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;52593:14;;;;;;;;;;;:19;;;52613:12;:10;:12::i;:::-;52627:8;52593:43;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52655:7;:5;:7::i;:::-;52647:25;;:36;52673:9;52647:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52734:8;52696:14;:28;52711:12;:10;:12::i;:::-;52696:28;;;;;;;;;;;;;;;;:47;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;52779:8;52754:34;;:15;;:34;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;52004:792;51931:865;;:::o;51477:109::-;7090:12;:10;:12::i;:::-;7079:23;;:7;:5;:7::i;:::-;:23;;;7071:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51569:9:::1;51551:15;;:27;;;;;;;;;;;;;;;;;;51477:109:::0;:::o;51594:93::-;7090:12;:10;:12::i;:::-;7079:23;;:7;:5;:7::i;:::-;:23;;;7071:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51673:6:::1;51661:9;;:18;;;;;;;;;;;;;;;;;;51594:93:::0;:::o;50795:29::-;;;;;;;;;;;;;:::o;51695:90::-;7090:12;:10;:12::i;:::-;7079:23;;:7;:5;:7::i;:::-;:23;;;7071:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51771:6:::1;51761:7;:16;;;;51695:90:::0;:::o;7768:201::-;7090:12;:10;:12::i;:::-;7079:23;;:7;:5;:7::i;:::-;:23;;;7071:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7877:1:::1;7857:22;;:8;:22;;;;7849:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7933:28;7952:8;7933:18;:28::i;:::-;7768:201:::0;:::o;5583:98::-;5636:7;5663:10;5656:17;;5583:98;:::o;8129:191::-;8203:16;8222:6;;;;;;;;;;;8203:25;;8248:8;8239:6;;:17;;;;;;;;;;;;;;;;;;8303:8;8272:40;;8293:8;8272:40;;;;;;;;;;;;8192:128;8129:191;:::o;1315:190::-;1440:4;1493;1464:25;1477:5;1484:4;1464:12;:25::i;:::-;:33;1457:40;;1315:190;;;;;:::o;1866:675::-;1949:7;1969:20;1992:4;1969:27;;2012:9;2007:497;2031:5;:12;2027:1;:16;2007:497;;;2065:20;2088:5;2094:1;2088:8;;;;;;;;:::i;:::-;;;;;;;;2065:31;;2131:12;2115;:28;2111:382;;2258:42;2273:12;2287;2258:14;:42::i;:::-;2243:57;;2111:382;;;2435:42;2450:12;2464;2435:14;:42::i;:::-;2420:57;;2111:382;2050:454;2045:3;;;;;:::i;:::-;;;;2007:497;;;;2521:12;2514:19;;;1866:675;;;;:::o;2549:224::-;2617:13;2680:1;2674:4;2667:15;2709:1;2703:4;2696:15;2750:4;2744;2734:21;2725:30;;2549:224;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:139::-;798:5;836:6;823:20;814:29;;852:33;879:5;852:33;:::i;:::-;752:139;;;;:::o;914:370::-;985:5;1034:3;1027:4;1019:6;1015:17;1011:27;1001:122;;1042:79;;:::i;:::-;1001:122;1159:6;1146:20;1184:94;1274:3;1266:6;1259:4;1251:6;1247:17;1184:94;:::i;:::-;1175:103;;991:293;914:370;;;;:::o;1290:139::-;1336:5;1374:6;1361:20;1352:29;;1390:33;1417:5;1390:33;:::i;:::-;1290:139;;;;:::o;1435:137::-;1480:5;1518:6;1505:20;1496:29;;1534:32;1560:5;1534:32;:::i;:::-;1435:137;;;;:::o;1578:139::-;1624:5;1662:6;1649:20;1640:29;;1678:33;1705:5;1678:33;:::i;:::-;1578:139;;;;:::o;1723:135::-;1767:5;1805:6;1792:20;1783:29;;1821:31;1846:5;1821:31;:::i;:::-;1723:135;;;;:::o;1864:329::-;1923:6;1972:2;1960:9;1951:7;1947:23;1943:32;1940:119;;;1978:79;;:::i;:::-;1940:119;2098:1;2123:53;2168:7;2159:6;2148:9;2144:22;2123:53;:::i;:::-;2113:63;;2069:117;1864:329;;;;:::o;2199:470::-;2265:6;2273;2322:2;2310:9;2301:7;2297:23;2293:32;2290:119;;;2328:79;;:::i;:::-;2290:119;2448:1;2473:53;2518:7;2509:6;2498:9;2494:22;2473:53;:::i;:::-;2463:63;;2419:117;2575:2;2601:51;2644:7;2635:6;2624:9;2620:22;2601:51;:::i;:::-;2591:61;;2546:116;2199:470;;;;;:::o;2675:329::-;2734:6;2783:2;2771:9;2762:7;2758:23;2754:32;2751:119;;;2789:79;;:::i;:::-;2751:119;2909:1;2934:53;2979:7;2970:6;2959:9;2955:22;2934:53;:::i;:::-;2924:63;;2880:117;2675:329;;;;:::o;3010:327::-;3068:6;3117:2;3105:9;3096:7;3092:23;3088:32;3085:119;;;3123:79;;:::i;:::-;3085:119;3243:1;3268:52;3312:7;3303:6;3292:9;3288:22;3268:52;:::i;:::-;3258:62;;3214:116;3010:327;;;;:::o;3343:329::-;3402:6;3451:2;3439:9;3430:7;3426:23;3422:32;3419:119;;;3457:79;;:::i;:::-;3419:119;3577:1;3602:53;3647:7;3638:6;3627:9;3623:22;3602:53;:::i;:::-;3592:63;;3548:117;3343:329;;;;:::o;3678:684::-;3771:6;3779;3828:2;3816:9;3807:7;3803:23;3799:32;3796:119;;;3834:79;;:::i;:::-;3796:119;3954:1;3979:53;4024:7;4015:6;4004:9;4000:22;3979:53;:::i;:::-;3969:63;;3925:117;4109:2;4098:9;4094:18;4081:32;4140:18;4132:6;4129:30;4126:117;;;4162:79;;:::i;:::-;4126:117;4267:78;4337:7;4328:6;4317:9;4313:22;4267:78;:::i;:::-;4257:88;;4052:303;3678:684;;;;;:::o;4368:118::-;4455:24;4473:5;4455:24;:::i;:::-;4450:3;4443:37;4368:118;;:::o;4492:157::-;4597:45;4617:24;4635:5;4617:24;:::i;:::-;4597:45;:::i;:::-;4592:3;4585:58;4492:157;;:::o;4655:118::-;4742:24;4760:5;4742:24;:::i;:::-;4737:3;4730:37;4655:118;;:::o;4779:366::-;4921:3;4942:67;5006:2;5001:3;4942:67;:::i;:::-;4935:74;;5018:93;5107:3;5018:93;:::i;:::-;5136:2;5131:3;5127:12;5120:19;;4779:366;;;:::o;5151:::-;5293:3;5314:67;5378:2;5373:3;5314:67;:::i;:::-;5307:74;;5390:93;5479:3;5390:93;:::i;:::-;5508:2;5503:3;5499:12;5492:19;;5151:366;;;:::o;5523:::-;5665:3;5686:67;5750:2;5745:3;5686:67;:::i;:::-;5679:74;;5762:93;5851:3;5762:93;:::i;:::-;5880:2;5875:3;5871:12;5864:19;;5523:366;;;:::o;5895:::-;6037:3;6058:67;6122:2;6117:3;6058:67;:::i;:::-;6051:74;;6134:93;6223:3;6134:93;:::i;:::-;6252:2;6247:3;6243:12;6236:19;;5895:366;;;:::o;6267:::-;6409:3;6430:67;6494:2;6489:3;6430:67;:::i;:::-;6423:74;;6506:93;6595:3;6506:93;:::i;:::-;6624:2;6619:3;6615:12;6608:19;;6267:366;;;:::o;6639:::-;6781:3;6802:67;6866:2;6861:3;6802:67;:::i;:::-;6795:74;;6878:93;6967:3;6878:93;:::i;:::-;6996:2;6991:3;6987:12;6980:19;;6639:366;;;:::o;7011:115::-;7096:23;7113:5;7096:23;:::i;:::-;7091:3;7084:36;7011:115;;:::o;7132:118::-;7219:24;7237:5;7219:24;:::i;:::-;7214:3;7207:37;7132:118;;:::o;7256:256::-;7368:3;7383:75;7454:3;7445:6;7383:75;:::i;:::-;7483:2;7478:3;7474:12;7467:19;;7503:3;7496:10;;7256:256;;;;:::o;7518:222::-;7611:4;7649:2;7638:9;7634:18;7626:26;;7662:71;7730:1;7719:9;7715:17;7706:6;7662:71;:::i;:::-;7518:222;;;;:::o;7746:332::-;7867:4;7905:2;7894:9;7890:18;7882:26;;7918:71;7986:1;7975:9;7971:17;7962:6;7918:71;:::i;:::-;7999:72;8067:2;8056:9;8052:18;8043:6;7999:72;:::i;:::-;7746:332;;;;;:::o;8084:222::-;8177:4;8215:2;8204:9;8200:18;8192:26;;8228:71;8296:1;8285:9;8281:17;8272:6;8228:71;:::i;:::-;8084:222;;;;:::o;8312:419::-;8478:4;8516:2;8505:9;8501:18;8493:26;;8565:9;8559:4;8555:20;8551:1;8540:9;8536:17;8529:47;8593:131;8719:4;8593:131;:::i;:::-;8585:139;;8312:419;;;:::o;8737:::-;8903:4;8941:2;8930:9;8926:18;8918:26;;8990:9;8984:4;8980:20;8976:1;8965:9;8961:17;8954:47;9018:131;9144:4;9018:131;:::i;:::-;9010:139;;8737:419;;;:::o;9162:::-;9328:4;9366:2;9355:9;9351:18;9343:26;;9415:9;9409:4;9405:20;9401:1;9390:9;9386:17;9379:47;9443:131;9569:4;9443:131;:::i;:::-;9435:139;;9162:419;;;:::o;9587:::-;9753:4;9791:2;9780:9;9776:18;9768:26;;9840:9;9834:4;9830:20;9826:1;9815:9;9811:17;9804:47;9868:131;9994:4;9868:131;:::i;:::-;9860:139;;9587:419;;;:::o;10012:::-;10178:4;10216:2;10205:9;10201:18;10193:26;;10265:9;10259:4;10255:20;10251:1;10240:9;10236:17;10229:47;10293:131;10419:4;10293:131;:::i;:::-;10285:139;;10012:419;;;:::o;10437:::-;10603:4;10641:2;10630:9;10626:18;10618:26;;10690:9;10684:4;10680:20;10676:1;10665:9;10661:17;10654:47;10718:131;10844:4;10718:131;:::i;:::-;10710:139;;10437:419;;;:::o;10862:218::-;10953:4;10991:2;10980:9;10976:18;10968:26;;11004:69;11070:1;11059:9;11055:17;11046:6;11004:69;:::i;:::-;10862:218;;;;:::o;11086:222::-;11179:4;11217:2;11206:9;11202:18;11194:26;;11230:71;11298:1;11287:9;11283:17;11274:6;11230:71;:::i;:::-;11086:222;;;;:::o;11314:129::-;11348:6;11375:20;;:::i;:::-;11365:30;;11404:33;11432:4;11424:6;11404:33;:::i;:::-;11314:129;;;:::o;11449:75::-;11482:6;11515:2;11509:9;11499:19;;11449:75;:::o;11530:311::-;11607:4;11697:18;11689:6;11686:30;11683:56;;;11719:18;;:::i;:::-;11683:56;11769:4;11761:6;11757:17;11749:25;;11829:4;11823;11819:15;11811:23;;11530:311;;;:::o;11847:169::-;11931:11;11965:6;11960:3;11953:19;12005:4;12000:3;11996:14;11981:29;;11847:169;;;;:::o;12022:242::-;12061:3;12080:19;12097:1;12080:19;:::i;:::-;12075:24;;12113:19;12130:1;12113:19;:::i;:::-;12108:24;;12206:1;12198:6;12194:14;12191:1;12188:21;12185:47;;;12212:18;;:::i;:::-;12185:47;12256:1;12253;12249:9;12242:16;;12022:242;;;;:::o;12270:348::-;12310:7;12333:20;12351:1;12333:20;:::i;:::-;12328:25;;12367:20;12385:1;12367:20;:::i;:::-;12362:25;;12555:1;12487:66;12483:74;12480:1;12477:81;12472:1;12465:9;12458:17;12454:105;12451:131;;;12562:18;;:::i;:::-;12451:131;12610:1;12607;12603:9;12592:20;;12270:348;;;;:::o;12624:188::-;12663:4;12683:19;12700:1;12683:19;:::i;:::-;12678:24;;12716:19;12733:1;12716:19;:::i;:::-;12711:24;;12754:1;12751;12748:8;12745:34;;;12759:18;;:::i;:::-;12745:34;12804:1;12801;12797:9;12789:17;;12624:188;;;;:::o;12818:185::-;12856:4;12876:18;12892:1;12876:18;:::i;:::-;12871:23;;12908:18;12924:1;12908:18;:::i;:::-;12903:23;;12945:1;12942;12939:8;12936:34;;;12950:18;;:::i;:::-;12936:34;12995:1;12992;12988:9;12980:17;;12818:185;;;;:::o;13009:96::-;13046:7;13075:24;13093:5;13075:24;:::i;:::-;13064:35;;13009:96;;;:::o;13111:77::-;13148:7;13177:5;13166:16;;13111:77;;;:::o;13194:89::-;13230:7;13270:6;13263:5;13259:18;13248:29;;13194:89;;;:::o;13289:126::-;13326:7;13366:42;13359:5;13355:54;13344:65;;13289:126;;;:::o;13421:77::-;13458:7;13487:5;13476:16;;13421:77;;;:::o;13504:86::-;13539:7;13579:4;13572:5;13568:16;13557:27;;13504:86;;;:::o;13596:281::-;13679:27;13701:4;13679:27;:::i;:::-;13671:6;13667:40;13809:6;13797:10;13794:22;13773:18;13761:10;13758:34;13755:62;13752:88;;;13820:18;;:::i;:::-;13752:88;13860:10;13856:2;13849:22;13639:238;13596:281;;:::o;13883:233::-;13922:3;13945:24;13963:5;13945:24;:::i;:::-;13936:33;;13991:66;13984:5;13981:77;13978:103;;;14061:18;;:::i;:::-;13978:103;14108:1;14101:5;14097:13;14090:20;;13883:233;;;:::o;14122:100::-;14161:7;14190:26;14210:5;14190:26;:::i;:::-;14179:37;;14122:100;;;:::o;14228:94::-;14267:7;14296:20;14310:5;14296:20;:::i;:::-;14285:31;;14228:94;;;:::o;14328:180::-;14376:77;14373:1;14366:88;14473:4;14470:1;14463:15;14497:4;14494:1;14487:15;14514:180;14562:77;14559:1;14552:88;14659:4;14656:1;14649:15;14683:4;14680:1;14673:15;14700:180;14748:77;14745:1;14738:88;14845:4;14842:1;14835:15;14869:4;14866:1;14859:15;14886:117;14995:1;14992;14985:12;15009:117;15118:1;15115;15108:12;15132:117;15241:1;15238;15231:12;15255:117;15364:1;15361;15354:12;15378:102;15419:6;15470:2;15466:7;15461:2;15454:5;15450:14;15446:28;15436:38;;15378:102;;;:::o;15486:94::-;15519:8;15567:5;15563:2;15559:14;15538:35;;15486:94;;;:::o;15586:172::-;15726:24;15722:1;15714:6;15710:14;15703:48;15586:172;:::o;15764:225::-;15904:34;15900:1;15892:6;15888:14;15881:58;15973:8;15968:2;15960:6;15956:15;15949:33;15764:225;:::o;15995:168::-;16135:20;16131:1;16123:6;16119:14;16112:44;15995:168;:::o;16169:169::-;16309:21;16305:1;16297:6;16293:14;16286:45;16169:169;:::o;16344:166::-;16484:18;16480:1;16472:6;16468:14;16461:42;16344:166;:::o;16516:182::-;16656:34;16652:1;16644:6;16640:14;16633:58;16516:182;:::o;16704:122::-;16777:24;16795:5;16777:24;:::i;:::-;16770:5;16767:35;16757:63;;16816:1;16813;16806:12;16757:63;16704:122;:::o;16832:::-;16905:24;16923:5;16905:24;:::i;:::-;16898:5;16895:35;16885:63;;16944:1;16941;16934:12;16885:63;16832:122;:::o;16960:120::-;17032:23;17049:5;17032:23;:::i;:::-;17025:5;17022:34;17012:62;;17070:1;17067;17060:12;17012:62;16960:120;:::o;17086:122::-;17159:24;17177:5;17159:24;:::i;:::-;17152:5;17149:35;17139:63;;17198:1;17195;17188:12;17139:63;17086:122;:::o;17214:118::-;17285:22;17301:5;17285:22;:::i;:::-;17278:5;17275:33;17265:61;;17322:1;17319;17312:12;17265:61;17214:118;:::o
Swarm Source
ipfs://d163dde195065078752fc9de4ddfa8b762231cabf900559084ad92da4b85e126
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.