ERC-721
Overview
Max Total Supply
17 BBM
Holders
8
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 BBMLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BitConnectNFT
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-10-26 */ // BitConnectinu Website: https://bitconnectinu.com/ // Twitter / X : https://twitter.com/Bitconnect_Inu?t=Yla0BKppZF2BelSMvtUbsA&s=09 // Telegram: https://t.me/bitconnectinu_portal // $BITCONNECT // / // / \__ // ( @\__ // / O // / (_____/ // /_____/ U // SPDX-License-Identifier: MIT // File: @openzeppelin/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. */ 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 Merklee 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.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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); } } } } pragma solidity ^0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (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.1 (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.1 (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.1 (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 (last updated v4.5.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); /** * @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.1 (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: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol // Creator: AppleCrypto 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 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_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex times unchecked { return _currentIndex - _burnCounter; } } /** * @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 (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())) : ""; } /** * @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 (!_checkOnERC721Received(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 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; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if ( safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data) ) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _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 address. * The call is not executed if the target address is not a 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 _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { 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)) } } } } else { return true; } } /** * @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 {} } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } pragma solidity ^0.8.7; contract BitConnectNFT is ERC721A, Ownable { using Strings for uint256; using SafeMath for uint256; uint256 public _nftPrice = 0.02 ether; // NFT price in ETH uint256 public _maxSupply = 117; uint256 public _maxMintPerTx = 10; uint256 public _maxPerWallet = 10; string private _base_uri; string private _unreveal_uri; bool public _paused = true; constructor() ERC721A("BITCONNECTINU BONANZA", "BBM") {} function numberMinted(address account_) external view returns (uint256) { return _numberMinted(account_); } /** * @dev Mint nfts */ function mint(uint256 mintAmount_) external payable { if (_msgSender() != owner()) { uint256 ownerTokenCount = balanceOf(_msgSender()); require(!_paused, "Paused to mint"); require(mintAmount_ > 0, "Invalid amount"); require( _maxMintPerTx == 0 || mintAmount_ <= _maxMintPerTx, "Exceed tx amount limit" ); require( _maxPerWallet == 0 || ownerTokenCount.add(mintAmount_) <= _maxPerWallet, "Exceed wallet limit" ); require( totalSupply().add(mintAmount_) <= _maxSupply, "Exceed max supply" ); require( msg.value >= _nftPrice.mul(mintAmount_), "Insufficient funds to mint" ); } _mintLoop(_msgSender(), mintAmount_); } function _baseURI() internal view override returns (string memory) { return _base_uri; } /** * @notice Get token uri for token id */ function tokenURI(uint256 _id) public view override returns (string memory) { require(_exists(_id), "ERC721Metadata: URI query for nonexistent token"); // Concatenating the base URI, token ID, and ".json" extension. return string(abi.encodePacked(_baseURI(), Strings.toString(_id), ".json")); } /** * @notice Set NFT price */ function setNftPrice(uint256 newPrice_) external onlyOwner { _nftPrice = newPrice_; } /** * @notice Set mint limit per tx */ function setMaxMintAmountPerTransaction(uint16 amount_) external onlyOwner { _maxMintPerTx = amount_; } /** * @notice Set wallet limit */ function setMaxMintAmountPerWallet(uint16 amount_) external onlyOwner { _maxPerWallet = amount_; } /** * @notice Set max supply */ function setMaxSupply(uint256 maxSupply_) external onlyOwner { _maxSupply = maxSupply_; } /** * @notice Set base URI */ function setBaseURI(string memory uri_) external onlyOwner { _base_uri = uri_; } /** * @notice Set unreveal URI */ function setUnrevealURI(string memory uri_) external onlyOwner { _unreveal_uri = uri_; } function togglePause() external onlyOwner { _paused = !_paused; } function _mintLoop(address receiver_, uint256 mintAmount_) internal { _safeMint(receiver_, mintAmount_); } /** * @notice Get holded nft token ids of account */ function getHoldList(address account_) external view returns (uint256[] memory) { uint256 holdCount = balanceOf(account_); if (holdCount == 0) { return new uint256[](0); } else { uint256[] memory holdedTokenIds = new uint256[](holdCount); uint256 index; uint256 indexResult = 0; uint256 totalNftCount = totalSupply(); for (index = 0; index < totalNftCount; index++) { if (ownerOf(index) == account_) { holdedTokenIds[indexResult] = index; indexResult = indexResult.add(1); } } return holdedTokenIds; } } /** * @notice Get ownership data of token */ function getOwnershipData(uint256 tokenId_) external view returns (TokenOwnership memory) { return ownershipOf(tokenId_); } /** * @dev withdraw collected ETH */ function withdraw() external onlyOwner { uint256 etherBalance = address(this).balance; require(etherBalance > 0, "Insufficient ether balance"); payable(_msgSender()).transfer(etherBalance); } //to recieve ETH from users receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_nftPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account_","type":"address"}],"name":"getHoldList","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount_","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account_","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount_","type":"uint16"}],"name":"setMaxMintAmountPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount_","type":"uint16"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice_","type":"uint256"}],"name":"setNftPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setUnrevealURI","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":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405266470de4df8200006009556075600a908155600b819055600c55600f805460ff191660011790553480156200003857600080fd5b50604080518082018252601581527f424954434f4e4e454354494e5520424f4e414e5a41000000000000000000000060208083019182528351808501909452600384526242424d60e81b908401528151919291620000999160029162000128565b508051620000af90600390602084019062000128565b505050620000cc620000c6620000d260201b60201c565b620000d6565b6200020b565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013690620001ce565b90600052602060002090601f0160209004810192826200015a5760008555620001a5565b82601f106200017557805160ff1916838001178555620001a5565b82800160010185558215620001a5579182015b82811115620001a557825182559160200191906001019062000188565b50620001b3929150620001b7565b5090565b5b80821115620001b35760008155600101620001b8565b600181811c90821680620001e357607f821691505b602082108114156200020557634e487b7160e01b600052602260045260246000fd5b50919050565b611f9d806200021b6000396000f3fe6080604052600436106101fd5760003560e01c80637fa8e5e41161010d578063c4ae3168116100a0578063dc33e6811161006f578063dc33e681146105c5578063de314a59146105e5578063e4a961a7146105fb578063e985e9c51461061b578063f2fde38b1461063b57600080fd5b8063c4ae316814610543578063c87b56dd14610558578063cef1172914610578578063d5dc45fe1461059857600080fd5b806397bc411c116100dc57806397bc411c146104d0578063a0712d68146104f0578063a22cb46514610503578063b88d4fde1461052357600080fd5b80637fa8e5e4146104315780638da5cb5b146104475780639231ab2a1461046557806395d89b41146104bb57600080fd5b806323b872dd116101905780636352211e1161015f5780636352211e1461039c5780636f8b44b0146103bc57806370a08231146103dc578063715018a6146103fc5780637d9a7a4c1461041157600080fd5b806323b872dd146103275780633ccfd60b1461034757806342842e0e1461035c57806355f804b31461037c57600080fd5b80631029e38b116101cc5780631029e38b146102ba57806316c61ccc146102de57806318160ddd146102f857806322f4596f1461031157600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b31461029857600080fd5b3661020457005b600080fd5b34801561021557600080fd5b50610229610224366004611c14565b61065b565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506102536106ad565b6040516102359190611dbf565b34801561026c57600080fd5b5061028061027b366004611cba565b61073f565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611bea565b610783565b005b3480156102c657600080fd5b506102d060095481565b604051908152602001610235565b3480156102ea57600080fd5b50600f546102299060ff1681565b34801561030457600080fd5b50600154600054036102d0565b34801561031d57600080fd5b506102d0600a5481565b34801561033357600080fd5b506102b8610342366004611af7565b610811565b34801561035357600080fd5b506102b861081c565b34801561036857600080fd5b506102b8610377366004611af7565b6108ce565b34801561038857600080fd5b506102b8610397366004611c4e565b6108e9565b3480156103a857600080fd5b506102806103b7366004611cba565b610926565b3480156103c857600080fd5b506102b86103d7366004611cba565b610938565b3480156103e857600080fd5b506102d06103f7366004611aa9565b610967565b34801561040857600080fd5b506102b86109b5565b34801561041d57600080fd5b506102b861042c366004611cba565b6109eb565b34801561043d57600080fd5b506102d0600c5481565b34801561045357600080fd5b506008546001600160a01b0316610280565b34801561047157600080fd5b50610485610480366004611cba565b610a1a565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610235565b3480156104c757600080fd5b50610253610a40565b3480156104dc57600080fd5b506102b86104eb366004611c4e565b610a4f565b6102b86104fe366004611cba565b610a8c565b34801561050f57600080fd5b506102b861051e366004611bae565b610caa565b34801561052f57600080fd5b506102b861053e366004611b33565b610d40565b34801561054f57600080fd5b506102b8610d7a565b34801561056457600080fd5b50610253610573366004611cba565b610db8565b34801561058457600080fd5b506102b8610593366004611c96565b610e5f565b3480156105a457600080fd5b506105b86105b3366004611aa9565b610e92565b6040516102359190611d7b565b3480156105d157600080fd5b506102d06105e0366004611aa9565b610f93565b3480156105f157600080fd5b506102d0600b5481565b34801561060757600080fd5b506102b8610616366004611c96565b610f9e565b34801561062757600080fd5b50610229610636366004611ac4565b610fd1565b34801561064757600080fd5b506102b8610656366004611aa9565b610fff565b60006001600160e01b031982166380ac58cd60e01b148061068c57506001600160e01b03198216635b5e139f60e01b145b806106a757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106bc90611e95565b80601f01602080910402602001604051908101604052809291908181526020018280546106e890611e95565b80156107355780601f1061070a57610100808354040283529160200191610735565b820191906000526020600020905b81548152906001019060200180831161071857829003601f168201915b5050505050905090565b600061074a82611097565b610767576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061078e82610926565b9050806001600160a01b0316836001600160a01b031614156107c35760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107e357506107e18133610fd1565b155b15610801576040516367d9dca160e11b815260040160405180910390fd5b61080c8383836110c2565b505050565b61080c83838361111e565b6008546001600160a01b0316331461084f5760405162461bcd60e51b815260040161084690611dd2565b60405180910390fd5b478061089d5760405162461bcd60e51b815260206004820152601a60248201527f496e73756666696369656e742065746865722062616c616e63650000000000006044820152606401610846565b604051339082156108fc029083906000818181858888f193505050501580156108ca573d6000803e3d6000fd5b5050565b61080c83838360405180602001604052806000815250610d40565b6008546001600160a01b031633146109135760405162461bcd60e51b815260040161084690611dd2565b80516108ca90600d90602084019061197f565b600061093182611332565b5192915050565b6008546001600160a01b031633146109625760405162461bcd60e51b815260040161084690611dd2565b600a55565b60006001600160a01b038216610990576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146109df5760405162461bcd60e51b815260040161084690611dd2565b6109e9600061144b565b565b6008546001600160a01b03163314610a155760405162461bcd60e51b815260040161084690611dd2565b600955565b60408051606081018252600080825260208201819052918101919091526106a782611332565b6060600380546106bc90611e95565b6008546001600160a01b03163314610a795760405162461bcd60e51b815260040161084690611dd2565b80516108ca90600e90602084019061197f565b6008546001600160a01b03163314610c9d576000610aa933610967565b600f5490915060ff1615610af05760405162461bcd60e51b815260206004820152600e60248201526d14185d5cd959081d1bc81b5a5b9d60921b6044820152606401610846565b60008211610b315760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b6044820152606401610846565b600b541580610b425750600b548211155b610b875760405162461bcd60e51b8152602060048201526016602482015275115e18d95959081d1e08185b5bdd5b9d081b1a5b5a5d60521b6044820152606401610846565b600c541580610ba15750600c54610b9e828461149d565b11155b610be35760405162461bcd60e51b8152602060048201526013602482015272115e18d95959081dd85b1b195d081b1a5b5a5d606a1b6044820152606401610846565b600a54610bfd83610bf76001546000540390565b9061149d565b1115610c3f5760405162461bcd60e51b8152602060048201526011602482015270457863656564206d617820737570706c7960781b6044820152606401610846565b600954610c4c9083611503565b341015610c9b5760405162461bcd60e51b815260206004820152601a60248201527f496e73756666696369656e742066756e647320746f206d696e740000000000006044820152606401610846565b505b610ca73382611582565b50565b6001600160a01b038216331415610cd45760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d4b84848461111e565b610d578484848461158c565b610d74576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610da45760405162461bcd60e51b815260040161084690611dd2565b600f805460ff19811660ff90911615179055565b6060610dc382611097565b610e275760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610846565b610e2f61169b565b610e38836116aa565b604051602001610e49929190611cff565b6040516020818303038152906040529050919050565b6008546001600160a01b03163314610e895760405162461bcd60e51b815260040161084690611dd2565b61ffff16600c55565b60606000610e9f83610967565b905080610ebc575050604080516000815260208101909152919050565b6000816001600160401b03811115610ed657610ed6611f3b565b604051908082528060200260200182016040528015610eff578160200160208202803683370190505b50905060008080610f136001546000540390565b9050600092505b80831015610f8257866001600160a01b0316610f3584610926565b6001600160a01b03161415610f705782848381518110610f5757610f57611f25565b6020908102919091010152610f6d82600161149d565b91505b82610f7a81611eca565b935050610f1a565b509195945050505050565b50919050565b60006106a7826117a7565b6008546001600160a01b03163314610fc85760405162461bcd60e51b815260040161084690611dd2565b61ffff16600b55565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146110295760405162461bcd60e51b815260040161084690611dd2565b6001600160a01b03811661108e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610846565b610ca78161144b565b60008054821080156106a7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061112982611332565b80519091506000906001600160a01b0316336001600160a01b03161480611157575081516111579033610fd1565b806111725750336111678461073f565b6001600160a01b0316145b90508061119257604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146111c75760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166111ee57604051633a954ecd60e21b815260040160405180910390fd5b6111fe60008484600001516110c2565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166112e8576000548110156112e857825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181018290529054829081101561143257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906114305780516001600160a01b0316156113c7579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561142b579392505050565b6113c7565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000806114aa8385611e07565b9050838110156114fc5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610846565b9392505050565b600082611512575060006106a7565b600061151e8385611e33565b90508261152b8583611e1f565b146114fc5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610846565b6108ca82826117fc565b60006001600160a01b0384163b1561168f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115d0903390899088908890600401611d3e565b602060405180830381600087803b1580156115ea57600080fd5b505af192505050801561161a575060408051601f3d908101601f1916820190925261161791810190611c31565b60015b611675573d808015611648576040519150601f19603f3d011682016040523d82523d6000602084013e61164d565b606091505b50805161166d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611693565b5060015b949350505050565b6060600d80546106bc90611e95565b6060816116ce5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116f857806116e281611eca565b91506116f19050600a83611e1f565b91506116d2565b6000816001600160401b0381111561171257611712611f3b565b6040519080825280601f01601f19166020018201604052801561173c576020820181803683370190505b5090505b841561169357611751600183611e52565b915061175e600a86611ee5565b611769906030611e07565b60f81b81838151811061177e5761177e611f25565b60200101906001600160f81b031916908160001a9053506117a0600a86611e1f565b9450611740565b60006001600160a01b0382166117d0576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b6108ca82826040518060200160405280600081525061080c83838360016000546001600160a01b03851661184257604051622e076360e81b815260040160405180910390fd5b836118605760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156119765760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561194c575061194a600088848861158c565b155b1561196a576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016118f5565b5060005561132b565b82805461198b90611e95565b90600052602060002090601f0160209004810192826119ad57600085556119f3565b82601f106119c657805160ff19168380011785556119f3565b828001600101855582156119f3579182015b828111156119f35782518255916020019190600101906119d8565b506119ff929150611a03565b5090565b5b808211156119ff5760008155600101611a04565b60006001600160401b0380841115611a3257611a32611f3b565b604051601f8501601f19908116603f01168101908282118183101715611a5a57611a5a611f3b565b81604052809350858152868686011115611a7357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611aa457600080fd5b919050565b600060208284031215611abb57600080fd5b6114fc82611a8d565b60008060408385031215611ad757600080fd5b611ae083611a8d565b9150611aee60208401611a8d565b90509250929050565b600080600060608486031215611b0c57600080fd5b611b1584611a8d565b9250611b2360208501611a8d565b9150604084013590509250925092565b60008060008060808587031215611b4957600080fd5b611b5285611a8d565b9350611b6060208601611a8d565b92506040850135915060608501356001600160401b03811115611b8257600080fd5b8501601f81018713611b9357600080fd5b611ba287823560208401611a18565b91505092959194509250565b60008060408385031215611bc157600080fd5b611bca83611a8d565b915060208301358015158114611bdf57600080fd5b809150509250929050565b60008060408385031215611bfd57600080fd5b611c0683611a8d565b946020939093013593505050565b600060208284031215611c2657600080fd5b81356114fc81611f51565b600060208284031215611c4357600080fd5b81516114fc81611f51565b600060208284031215611c6057600080fd5b81356001600160401b03811115611c7657600080fd5b8201601f81018413611c8757600080fd5b61169384823560208401611a18565b600060208284031215611ca857600080fd5b813561ffff811681146114fc57600080fd5b600060208284031215611ccc57600080fd5b5035919050565b60008151808452611ceb816020860160208601611e69565b601f01601f19169290920160200192915050565b60008351611d11818460208801611e69565b835190830190611d25818360208801611e69565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d7190830184611cd3565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611db357835183529284019291840191600101611d97565b50909695505050505050565b6020815260006114fc6020830184611cd3565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611e1a57611e1a611ef9565b500190565b600082611e2e57611e2e611f0f565b500490565b6000816000190483118215151615611e4d57611e4d611ef9565b500290565b600082821015611e6457611e64611ef9565b500390565b60005b83811015611e84578181015183820152602001611e6c565b83811115610d745750506000910152565b600181811c90821680611ea957607f821691505b60208210811415610f8d57634e487b7160e01b600052602260045260246000fd5b6000600019821415611ede57611ede611ef9565b5060010190565b600082611ef457611ef4611f0f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ca757600080fdfea2646970667358221220601cf117b0010d1a93321789bda2a17c00e76cdc0326eb47bafefc518004b8c864736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101fd5760003560e01c80637fa8e5e41161010d578063c4ae3168116100a0578063dc33e6811161006f578063dc33e681146105c5578063de314a59146105e5578063e4a961a7146105fb578063e985e9c51461061b578063f2fde38b1461063b57600080fd5b8063c4ae316814610543578063c87b56dd14610558578063cef1172914610578578063d5dc45fe1461059857600080fd5b806397bc411c116100dc57806397bc411c146104d0578063a0712d68146104f0578063a22cb46514610503578063b88d4fde1461052357600080fd5b80637fa8e5e4146104315780638da5cb5b146104475780639231ab2a1461046557806395d89b41146104bb57600080fd5b806323b872dd116101905780636352211e1161015f5780636352211e1461039c5780636f8b44b0146103bc57806370a08231146103dc578063715018a6146103fc5780637d9a7a4c1461041157600080fd5b806323b872dd146103275780633ccfd60b1461034757806342842e0e1461035c57806355f804b31461037c57600080fd5b80631029e38b116101cc5780631029e38b146102ba57806316c61ccc146102de57806318160ddd146102f857806322f4596f1461031157600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b31461029857600080fd5b3661020457005b600080fd5b34801561021557600080fd5b50610229610224366004611c14565b61065b565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506102536106ad565b6040516102359190611dbf565b34801561026c57600080fd5b5061028061027b366004611cba565b61073f565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611bea565b610783565b005b3480156102c657600080fd5b506102d060095481565b604051908152602001610235565b3480156102ea57600080fd5b50600f546102299060ff1681565b34801561030457600080fd5b50600154600054036102d0565b34801561031d57600080fd5b506102d0600a5481565b34801561033357600080fd5b506102b8610342366004611af7565b610811565b34801561035357600080fd5b506102b861081c565b34801561036857600080fd5b506102b8610377366004611af7565b6108ce565b34801561038857600080fd5b506102b8610397366004611c4e565b6108e9565b3480156103a857600080fd5b506102806103b7366004611cba565b610926565b3480156103c857600080fd5b506102b86103d7366004611cba565b610938565b3480156103e857600080fd5b506102d06103f7366004611aa9565b610967565b34801561040857600080fd5b506102b86109b5565b34801561041d57600080fd5b506102b861042c366004611cba565b6109eb565b34801561043d57600080fd5b506102d0600c5481565b34801561045357600080fd5b506008546001600160a01b0316610280565b34801561047157600080fd5b50610485610480366004611cba565b610a1a565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610235565b3480156104c757600080fd5b50610253610a40565b3480156104dc57600080fd5b506102b86104eb366004611c4e565b610a4f565b6102b86104fe366004611cba565b610a8c565b34801561050f57600080fd5b506102b861051e366004611bae565b610caa565b34801561052f57600080fd5b506102b861053e366004611b33565b610d40565b34801561054f57600080fd5b506102b8610d7a565b34801561056457600080fd5b50610253610573366004611cba565b610db8565b34801561058457600080fd5b506102b8610593366004611c96565b610e5f565b3480156105a457600080fd5b506105b86105b3366004611aa9565b610e92565b6040516102359190611d7b565b3480156105d157600080fd5b506102d06105e0366004611aa9565b610f93565b3480156105f157600080fd5b506102d0600b5481565b34801561060757600080fd5b506102b8610616366004611c96565b610f9e565b34801561062757600080fd5b50610229610636366004611ac4565b610fd1565b34801561064757600080fd5b506102b8610656366004611aa9565b610fff565b60006001600160e01b031982166380ac58cd60e01b148061068c57506001600160e01b03198216635b5e139f60e01b145b806106a757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106bc90611e95565b80601f01602080910402602001604051908101604052809291908181526020018280546106e890611e95565b80156107355780601f1061070a57610100808354040283529160200191610735565b820191906000526020600020905b81548152906001019060200180831161071857829003601f168201915b5050505050905090565b600061074a82611097565b610767576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061078e82610926565b9050806001600160a01b0316836001600160a01b031614156107c35760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107e357506107e18133610fd1565b155b15610801576040516367d9dca160e11b815260040160405180910390fd5b61080c8383836110c2565b505050565b61080c83838361111e565b6008546001600160a01b0316331461084f5760405162461bcd60e51b815260040161084690611dd2565b60405180910390fd5b478061089d5760405162461bcd60e51b815260206004820152601a60248201527f496e73756666696369656e742065746865722062616c616e63650000000000006044820152606401610846565b604051339082156108fc029083906000818181858888f193505050501580156108ca573d6000803e3d6000fd5b5050565b61080c83838360405180602001604052806000815250610d40565b6008546001600160a01b031633146109135760405162461bcd60e51b815260040161084690611dd2565b80516108ca90600d90602084019061197f565b600061093182611332565b5192915050565b6008546001600160a01b031633146109625760405162461bcd60e51b815260040161084690611dd2565b600a55565b60006001600160a01b038216610990576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146109df5760405162461bcd60e51b815260040161084690611dd2565b6109e9600061144b565b565b6008546001600160a01b03163314610a155760405162461bcd60e51b815260040161084690611dd2565b600955565b60408051606081018252600080825260208201819052918101919091526106a782611332565b6060600380546106bc90611e95565b6008546001600160a01b03163314610a795760405162461bcd60e51b815260040161084690611dd2565b80516108ca90600e90602084019061197f565b6008546001600160a01b03163314610c9d576000610aa933610967565b600f5490915060ff1615610af05760405162461bcd60e51b815260206004820152600e60248201526d14185d5cd959081d1bc81b5a5b9d60921b6044820152606401610846565b60008211610b315760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b6044820152606401610846565b600b541580610b425750600b548211155b610b875760405162461bcd60e51b8152602060048201526016602482015275115e18d95959081d1e08185b5bdd5b9d081b1a5b5a5d60521b6044820152606401610846565b600c541580610ba15750600c54610b9e828461149d565b11155b610be35760405162461bcd60e51b8152602060048201526013602482015272115e18d95959081dd85b1b195d081b1a5b5a5d606a1b6044820152606401610846565b600a54610bfd83610bf76001546000540390565b9061149d565b1115610c3f5760405162461bcd60e51b8152602060048201526011602482015270457863656564206d617820737570706c7960781b6044820152606401610846565b600954610c4c9083611503565b341015610c9b5760405162461bcd60e51b815260206004820152601a60248201527f496e73756666696369656e742066756e647320746f206d696e740000000000006044820152606401610846565b505b610ca73382611582565b50565b6001600160a01b038216331415610cd45760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d4b84848461111e565b610d578484848461158c565b610d74576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610da45760405162461bcd60e51b815260040161084690611dd2565b600f805460ff19811660ff90911615179055565b6060610dc382611097565b610e275760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610846565b610e2f61169b565b610e38836116aa565b604051602001610e49929190611cff565b6040516020818303038152906040529050919050565b6008546001600160a01b03163314610e895760405162461bcd60e51b815260040161084690611dd2565b61ffff16600c55565b60606000610e9f83610967565b905080610ebc575050604080516000815260208101909152919050565b6000816001600160401b03811115610ed657610ed6611f3b565b604051908082528060200260200182016040528015610eff578160200160208202803683370190505b50905060008080610f136001546000540390565b9050600092505b80831015610f8257866001600160a01b0316610f3584610926565b6001600160a01b03161415610f705782848381518110610f5757610f57611f25565b6020908102919091010152610f6d82600161149d565b91505b82610f7a81611eca565b935050610f1a565b509195945050505050565b50919050565b60006106a7826117a7565b6008546001600160a01b03163314610fc85760405162461bcd60e51b815260040161084690611dd2565b61ffff16600b55565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146110295760405162461bcd60e51b815260040161084690611dd2565b6001600160a01b03811661108e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610846565b610ca78161144b565b60008054821080156106a7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061112982611332565b80519091506000906001600160a01b0316336001600160a01b03161480611157575081516111579033610fd1565b806111725750336111678461073f565b6001600160a01b0316145b90508061119257604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146111c75760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166111ee57604051633a954ecd60e21b815260040160405180910390fd5b6111fe60008484600001516110c2565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166112e8576000548110156112e857825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181018290529054829081101561143257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906114305780516001600160a01b0316156113c7579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561142b579392505050565b6113c7565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000806114aa8385611e07565b9050838110156114fc5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610846565b9392505050565b600082611512575060006106a7565b600061151e8385611e33565b90508261152b8583611e1f565b146114fc5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610846565b6108ca82826117fc565b60006001600160a01b0384163b1561168f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115d0903390899088908890600401611d3e565b602060405180830381600087803b1580156115ea57600080fd5b505af192505050801561161a575060408051601f3d908101601f1916820190925261161791810190611c31565b60015b611675573d808015611648576040519150601f19603f3d011682016040523d82523d6000602084013e61164d565b606091505b50805161166d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611693565b5060015b949350505050565b6060600d80546106bc90611e95565b6060816116ce5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116f857806116e281611eca565b91506116f19050600a83611e1f565b91506116d2565b6000816001600160401b0381111561171257611712611f3b565b6040519080825280601f01601f19166020018201604052801561173c576020820181803683370190505b5090505b841561169357611751600183611e52565b915061175e600a86611ee5565b611769906030611e07565b60f81b81838151811061177e5761177e611f25565b60200101906001600160f81b031916908160001a9053506117a0600a86611e1f565b9450611740565b60006001600160a01b0382166117d0576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b6108ca82826040518060200160405280600081525061080c83838360016000546001600160a01b03851661184257604051622e076360e81b815260040160405180910390fd5b836118605760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156119765760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561194c575061194a600088848861158c565b155b1561196a576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016118f5565b5060005561132b565b82805461198b90611e95565b90600052602060002090601f0160209004810192826119ad57600085556119f3565b82601f106119c657805160ff19168380011785556119f3565b828001600101855582156119f3579182015b828111156119f35782518255916020019190600101906119d8565b506119ff929150611a03565b5090565b5b808211156119ff5760008155600101611a04565b60006001600160401b0380841115611a3257611a32611f3b565b604051601f8501601f19908116603f01168101908282118183101715611a5a57611a5a611f3b565b81604052809350858152868686011115611a7357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611aa457600080fd5b919050565b600060208284031215611abb57600080fd5b6114fc82611a8d565b60008060408385031215611ad757600080fd5b611ae083611a8d565b9150611aee60208401611a8d565b90509250929050565b600080600060608486031215611b0c57600080fd5b611b1584611a8d565b9250611b2360208501611a8d565b9150604084013590509250925092565b60008060008060808587031215611b4957600080fd5b611b5285611a8d565b9350611b6060208601611a8d565b92506040850135915060608501356001600160401b03811115611b8257600080fd5b8501601f81018713611b9357600080fd5b611ba287823560208401611a18565b91505092959194509250565b60008060408385031215611bc157600080fd5b611bca83611a8d565b915060208301358015158114611bdf57600080fd5b809150509250929050565b60008060408385031215611bfd57600080fd5b611c0683611a8d565b946020939093013593505050565b600060208284031215611c2657600080fd5b81356114fc81611f51565b600060208284031215611c4357600080fd5b81516114fc81611f51565b600060208284031215611c6057600080fd5b81356001600160401b03811115611c7657600080fd5b8201601f81018413611c8757600080fd5b61169384823560208401611a18565b600060208284031215611ca857600080fd5b813561ffff811681146114fc57600080fd5b600060208284031215611ccc57600080fd5b5035919050565b60008151808452611ceb816020860160208601611e69565b601f01601f19169290920160200192915050565b60008351611d11818460208801611e69565b835190830190611d25818360208801611e69565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d7190830184611cd3565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611db357835183529284019291840191600101611d97565b50909695505050505050565b6020815260006114fc6020830184611cd3565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611e1a57611e1a611ef9565b500190565b600082611e2e57611e2e611f0f565b500490565b6000816000190483118215151615611e4d57611e4d611ef9565b500290565b600082821015611e6457611e64611ef9565b500390565b60005b83811015611e84578181015183820152602001611e6c565b83811115610d745750506000910152565b600181811c90821680611ea957607f821691505b60208210811415610f8d57634e487b7160e01b600052602260045260246000fd5b6000600019821415611ede57611ede611ef9565b5060010190565b600082611ef457611ef4611f0f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ca757600080fdfea2646970667358221220601cf117b0010d1a93321789bda2a17c00e76cdc0326eb47bafefc518004b8c864736f6c63430008070033
Deployed Bytecode Sourcemap
57087:4719:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36570:355;;;;;;;;;;-1:-1:-1;36570:355:0;;;;;:::i;:::-;;:::i;:::-;;;6727:14:1;;6720:22;6702:41;;6690:2;6675:18;36570:355:0;;;;;;;;40010:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41610:245::-;;;;;;;;;;-1:-1:-1;41610:245:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5388:32:1;;;5370:51;;5358:2;5343:18;41610:245:0;5224:203:1;41173:371:0;;;;;;;;;;-1:-1:-1;41173:371:0;;;;;:::i;:::-;;:::i;:::-;;57204:37;;;;;;;;;;;;;;;;;;;11953:25:1;;;11941:2;11926:18;57204:37:0;11807:177:1;57460:26:0;;;;;;;;;;-1:-1:-1;57460:26:0;;;;;;;;36231:267;;;;;;;;;;-1:-1:-1;36467:12:0;;36275:7;36451:13;:28;36231:267;;57268:31;;;;;;;;;;;;;;;;42581:170;;;;;;;;;;-1:-1:-1;42581:170:0;;;;;:::i;:::-;;:::i;61510:223::-;;;;;;;;;;;;;:::i;42822:185::-;;;;;;;;;;-1:-1:-1;42822:185:0;;;;;:::i;:::-;;:::i;59905:94::-;;;;;;;;;;-1:-1:-1;59905:94:0;;;;;:::i;:::-;;:::i;39819:124::-;;;;;;;;;;-1:-1:-1;39819:124:0;;;;;:::i;:::-;;:::i;59747:103::-;;;;;;;;;;-1:-1:-1;59747:103:0;;;;;:::i;:::-;;:::i;36989:206::-;;;;;;;;;;-1:-1:-1;36989:206:0;;;;;:::i;:::-;;:::i;7641:103::-;;;;;;;;;;;;;:::i;59239:99::-;;;;;;;;;;-1:-1:-1;59239:99:0;;;;;:::i;:::-;;:::i;57346:33::-;;;;;;;;;;;;;;;;6990:87;;;;;;;;;;-1:-1:-1;7063:6:0;;-1:-1:-1;;;;;7063:6:0;6990:87;;61279:169;;;;;;;;;;-1:-1:-1;61279:169:0;;;;;:::i;:::-;;:::i;:::-;;;;11593:13:1;;-1:-1:-1;;;;;11589:39:1;11571:58;;11689:4;11677:17;;;11671:24;-1:-1:-1;;;;;11667:49:1;11645:20;;;11638:79;11775:17;;;11769:24;11762:32;11755:40;11733:20;;;11726:70;11559:2;11544:18;61279:169:0;11361:441:1;40179:104:0;;;;;;;;;;;;;:::i;60058:102::-;;;;;;;;;;-1:-1:-1;60058:102:0;;;;;:::i;:::-;;:::i;57729:950::-;;;;;;:::i;:::-;;:::i;41927:302::-;;;;;;;;;;-1:-1:-1;41927:302:0;;;;;:::i;:::-;;:::i;43078:342::-;;;;;;;;;;-1:-1:-1;43078:342:0;;;;;:::i;:::-;;:::i;60168:79::-;;;;;;;;;;;;;:::i;58863:316::-;;;;;;;;;;-1:-1:-1;58863:316:0;;;;;:::i;:::-;;:::i;59578:112::-;;;;;;;;;;-1:-1:-1;59578:112:0;;;;;:::i;:::-;;:::i;60453:756::-;;;;;;;;;;-1:-1:-1;60453:756:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;57559:121::-;;;;;;;;;;-1:-1:-1;57559:121:0;;;;;:::i;:::-;;:::i;57306:33::-;;;;;;;;;;;;;;;;59402:117;;;;;;;;;;-1:-1:-1;59402:117:0;;;;;:::i;:::-;;:::i;42300:214::-;;;;;;;;;;-1:-1:-1;42300:214:0;;;;;:::i;:::-;;:::i;7899:238::-;;;;;;;;;;-1:-1:-1;7899:238:0;;;;;:::i;:::-;;:::i;36570:355::-;36717:4;-1:-1:-1;;;;;;36759:40:0;;-1:-1:-1;;;36759:40:0;;:105;;-1:-1:-1;;;;;;;36816:48:0;;-1:-1:-1;;;36816:48:0;36759:105;:158;;;-1:-1:-1;;;;;;;;;;25856:40:0;;;36881:36;36739:178;36570:355;-1:-1:-1;;36570:355:0:o;40010:100::-;40064:13;40097:5;40090:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40010:100;:::o;41610:245::-;41714:7;41744:16;41752:7;41744;:16::i;:::-;41739:64;;41769:34;;-1:-1:-1;;;41769:34:0;;;;;;;;;;;41739:64;-1:-1:-1;41823:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;41823:24:0;;41610:245::o;41173:371::-;41246:13;41262:24;41278:7;41262:15;:24::i;:::-;41246:40;;41307:5;-1:-1:-1;;;;;41301:11:0;:2;-1:-1:-1;;;;;41301:11:0;;41297:48;;;41321:24;;-1:-1:-1;;;41321:24:0;;;;;;;;;;;41297:48;5773:10;-1:-1:-1;;;;;41362:21:0;;;;;;:63;;-1:-1:-1;41388:37:0;41405:5;5773:10;42300:214;:::i;41388:37::-;41387:38;41362:63;41358:138;;;41449:35;;-1:-1:-1;;;41449:35:0;;;;;;;;;;;41358:138;41508:28;41517:2;41521:7;41530:5;41508:8;:28::i;:::-;41235:309;41173:371;;:::o;42581:170::-;42715:28;42725:4;42731:2;42735:7;42715:9;:28::i;61510:223::-;7063:6;;-1:-1:-1;;;;;7063:6:0;5773:10;7210:23;7202:68;;;;-1:-1:-1;;;7202:68:0;;;;;;;:::i;:::-;;;;;;;;;61583:21:::1;61623:16:::0;61615:55:::1;;;::::0;-1:-1:-1;;;61615:55:0;;8985:2:1;61615:55:0::1;::::0;::::1;8967:21:1::0;9024:2;9004:18;;;8997:30;9063:28;9043:18;;;9036:56;9109:18;;61615:55:0::1;8783:350:1::0;61615:55:0::1;61681:44;::::0;5773:10;;61681:44;::::1;;;::::0;61712:12;;61681:44:::1;::::0;;;61712:12;5773:10;61681:44;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;61549:184;61510:223::o:0;42822:185::-;42960:39;42977:4;42983:2;42987:7;42960:39;;;;;;;;;;;;:16;:39::i;59905:94::-;7063:6;;-1:-1:-1;;;;;7063:6:0;5773:10;7210:23;7202:68;;;;-1:-1:-1;;;7202:68:0;;;;;;;:::i;:::-;59975:16;;::::1;::::0;:9:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;39819:124::-:0;39883:7;39910:20;39922:7;39910:11;:20::i;:::-;:25;;39819:124;-1:-1:-1;;39819:124:0:o;59747:103::-;7063:6;;-1:-1:-1;;;;;7063:6:0;5773:10;7210:23;7202:68;;;;-1:-1:-1;;;7202:68:0;;;;;;;:::i;:::-;59819:10:::1;:23:::0;59747:103::o;36989:206::-;37053:7;-1:-1:-1;;;;;37077:19:0;;37073:60;;37105:28;;-1:-1:-1;;;37105:28:0;;;;;;;;;;;37073:60;-1:-1:-1;;;;;;37159:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;37159:27:0;;36989:206::o;7641:103::-;7063:6;;-1:-1:-1;;;;;7063:6:0;5773:10;7210:23;7202:68;;;;-1:-1:-1;;;7202:68:0;;;;;;;:::i;:::-;7706:30:::1;7733:1;7706:18;:30::i;:::-;7641:103::o:0;59239:99::-;7063:6;;-1:-1:-1;;;;;7063:6:0;5773:10;7210:23;7202:68;;;;-1:-1:-1;;;7202:68:0;;;;;;;:::i;:::-;59309:9:::1;:21:::0;59239:99::o;61279:169::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;61419:21:0;61431:8;61419:11;:21::i;40179:104::-;40235:13;40268:7;40261:14;;;;;:::i;60058:102::-;7063:6;;-1:-1:-1;;;;;7063:6:0;5773:10;7210:23;7202:68;;;;-1:-1:-1;;;7202:68:0;;;;;;;:::i;:::-;60132:20;;::::1;::::0;:13:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;57729:950::-:0;7063:6;;-1:-1:-1;;;;;7063:6:0;5773:10;57796:23;57792:831;;57836:23;57862;5773:10;36989:206;:::i;57862:23::-;57911:7;;57836:49;;-1:-1:-1;57911:7:0;;57910:8;57902:35;;;;-1:-1:-1;;;57902:35:0;;10088:2:1;57902:35:0;;;10070:21:1;10127:2;10107:18;;;10100:30;-1:-1:-1;;;10146:18:1;;;10139:44;10200:18;;57902:35:0;9886:338:1;57902:35:0;57974:1;57960:11;:15;57952:42;;;;-1:-1:-1;;;57952:42:0;;7935:2:1;57952:42:0;;;7917:21:1;7974:2;7954:18;;;7947:30;-1:-1:-1;;;7993:18:1;;;7986:44;8047:18;;57952:42:0;7733:338:1;57952:42:0;58035:13;;:18;;:50;;;58072:13;;58057:11;:28;;58035:50;58009:134;;;;-1:-1:-1;;;58009:134:0;;8634:2:1;58009:134:0;;;8616:21:1;8673:2;8653:18;;;8646:30;-1:-1:-1;;;8692:18:1;;;8685:52;8754:18;;58009:134:0;8432:346:1;58009:134:0;58184:13;;:18;;:92;;-1:-1:-1;58263:13:0;;58227:32;:15;58247:11;58227:19;:32::i;:::-;:49;;58184:92;58158:173;;;;-1:-1:-1;;;58158:173:0;;7180:2:1;58158:173:0;;;7162:21:1;7219:2;7199:18;;;7192:30;-1:-1:-1;;;7238:18:1;;;7231:49;7297:18;;58158:173:0;6978:343:1;58158:173:0;58406:10;;58372:30;58390:11;58372:13;36467:12;;36275:7;36451:13;:28;;36231:267;58372:13;:17;;:30::i;:::-;:44;;58346:123;;;;-1:-1:-1;;;58346:123:0;;9340:2:1;58346:123:0;;;9322:21:1;9379:2;9359:18;;;9352:30;-1:-1:-1;;;9398:18:1;;;9391:47;9455:18;;58346:123:0;9138:341:1;58346:123:0;58523:9;;:26;;58537:11;58523:13;:26::i;:::-;58510:9;:39;;58484:127;;;;-1:-1:-1;;;58484:127:0;;10792:2:1;58484:127:0;;;10774:21:1;10831:2;10811:18;;;10804:30;10870:28;10850:18;;;10843:56;10916:18;;58484:127:0;10590:350:1;58484:127:0;57821:802;57792:831;58635:36;5773:10;58659:11;58635:9;:36::i;:::-;57729:950;:::o;41927:302::-;-1:-1:-1;;;;;42041:24:0;;5773:10;42041:24;42037:54;;;42074:17;;-1:-1:-1;;;42074:17:0;;;;;;;;;;;42037:54;5773:10;42104:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;42104:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;42104:53:0;;;;;;;;;;42173:48;;6702:41:1;;;42104:42:0;;5773:10;42173:48;;6675:18:1;42173:48:0;;;;;;;41927:302;;:::o;43078:342::-;43245:28;43255:4;43261:2;43265:7;43245:9;:28::i;:::-;43289:48;43312:4;43318:2;43322:7;43331:5;43289:22;:48::i;:::-;43284:129;;43361:40;;-1:-1:-1;;;43361:40:0;;;;;;;;;;;43284:129;43078:342;;;;:::o;60168:79::-;7063:6;;-1:-1:-1;;;;;7063:6:0;5773:10;7210:23;7202:68;;;;-1:-1:-1;;;7202:68:0;;;;;;;:::i;:::-;60232:7:::1;::::0;;-1:-1:-1;;60221:18:0;::::1;60232:7;::::0;;::::1;60231:8;60221:18;::::0;;60168:79::o;58863:316::-;58924:13;58954:12;58962:3;58954:7;:12::i;:::-;58946:72;;;;-1:-1:-1;;;58946:72:0;;11147:2:1;58946:72:0;;;11129:21:1;11186:2;11166:18;;;11159:30;11225:34;11205:18;;;11198:62;-1:-1:-1;;;11276:18:1;;;11269:45;11331:19;;58946:72:0;10945:411:1;58946:72:0;59127:10;:8;:10::i;:::-;59139:21;59156:3;59139:16;:21::i;:::-;59110:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59096:75;;58863:316;;;:::o;59578:112::-;7063:6;;-1:-1:-1;;;;;7063:6:0;5773:10;7210:23;7202:68;;;;-1:-1:-1;;;7202:68:0;;;;;;;:::i;:::-;59659:23:::1;;:13;:23:::0;59578:112::o;60453:756::-;60542:16;60576:17;60596:19;60606:8;60596:9;:19::i;:::-;60576:39;-1:-1:-1;60630:14:0;60626:576;;-1:-1:-1;;60668:16:0;;;60682:1;60668:16;;;;;;;;;60661:23;-1:-1:-1;60453:756:0:o;60626:576::-;60717:31;60765:9;-1:-1:-1;;;;;60751:24:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60751:24:0;-1:-1:-1;60717:58:0;-1:-1:-1;60790:13:0;;;60880;36467:12;;36275:7;36451:13;:28;;36231:267;60880:13;60856:37;;60921:1;60913:9;;60908:247;60932:13;60924:5;:21;60908:247;;;60997:8;-1:-1:-1;;;;;60979:26:0;:14;60987:5;60979:7;:14::i;:::-;-1:-1:-1;;;;;60979:26:0;;60975:165;;;61060:5;61030:14;61045:11;61030:27;;;;;;;;:::i;:::-;;;;;;;;;;:35;61102:18;:11;61118:1;61102:15;:18::i;:::-;61088:32;;60975:165;60947:7;;;;:::i;:::-;;;;60908:247;;;-1:-1:-1;61176:14:0;;60453:756;-1:-1:-1;;;;;60453:756:0:o;60626:576::-;60565:644;60453:756;;;:::o;57559:121::-;57622:7;57649:23;57663:8;57649:13;:23::i;59402:117::-;7063:6;;-1:-1:-1;;;;;7063:6:0;5773:10;7210:23;7202:68;;;;-1:-1:-1;;;7202:68:0;;;;;;;:::i;:::-;59488:23:::1;;:13;:23:::0;59402:117::o;42300:214::-;-1:-1:-1;;;;;42471:25:0;;;42442:4;42471:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;42300:214::o;7899:238::-;7063:6;;-1:-1:-1;;;;;7063:6:0;5773:10;7210:23;7202:68;;;;-1:-1:-1;;;7202:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8002:22:0;::::1;7980:110;;;::::0;-1:-1:-1;;;7980:110:0;;7528:2:1;7980:110:0::1;::::0;::::1;7510:21:1::0;7567:2;7547:18;;;7540:30;7606:34;7586:18;;;7579:62;-1:-1:-1;;;7657:18:1;;;7650:36;7703:19;;7980:110:0::1;7326:402:1::0;7980:110:0::1;8101:28;8120:8;8101:18;:28::i;43675:144::-:0;43732:4;43766:13;;43756:7;:23;:55;;;;-1:-1:-1;;43784:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;43784:27:0;;;;43783:28;;43675:144::o;50993:196::-;51108:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;51108:29:0;-1:-1:-1;;;;;51108:29:0;;;;;;;;;51153:28;;51108:24;;51153:28;;;;;;;50993:196;;;:::o;46443:2138::-;46558:35;46596:20;46608:7;46596:11;:20::i;:::-;46671:18;;46558:58;;-1:-1:-1;46629:22:0;;-1:-1:-1;;;;;46655:34:0;5773:10;-1:-1:-1;;;;;46655:34:0;;:101;;;-1:-1:-1;46723:18:0;;46706:50;;5773:10;42300:214;:::i;46706:50::-;46655:154;;;-1:-1:-1;5773:10:0;46773:20;46785:7;46773:11;:20::i;:::-;-1:-1:-1;;;;;46773:36:0;;46655:154;46629:181;;46828:17;46823:66;;46854:35;;-1:-1:-1;;;46854:35:0;;;;;;;;;;;46823:66;46926:4;-1:-1:-1;;;;;46904:26:0;:13;:18;;;-1:-1:-1;;;;;46904:26:0;;46900:67;;46939:28;;-1:-1:-1;;;46939:28:0;;;;;;;;;;;46900:67;-1:-1:-1;;;;;46982:16:0;;46978:52;;47007:23;;-1:-1:-1;;;47007:23:0;;;;;;;;;;;46978:52;47151:49;47168:1;47172:7;47181:13;:18;;;47151:8;:49::i;:::-;-1:-1:-1;;;;;47496:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;47496:31:0;;;-1:-1:-1;;;;;47496:31:0;;;-1:-1:-1;;47496:31:0;;;;;;;47542:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;47542:29:0;;;;;;;;;;;47588:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;47633:61:0;;;;-1:-1:-1;;;47678:15:0;47633:61;;;;;;;;;;;47968:11;;;47998:24;;;;;:29;47968:11;;47998:29;47994:471;;48223:13;;48209:11;:27;48205:245;;;48293:18;;;48261:24;;;:11;:24;;;;;;;;:50;;48376:54;;;;-1:-1:-1;;;;;48334:96:0;-1:-1:-1;;;48334:96:0;-1:-1:-1;;;;;;48334:96:0;;;-1:-1:-1;;;;;48261:50:0;;;48334:96;;;;;;;48205:245;47471:1005;48512:7;48508:2;-1:-1:-1;;;;;48493:27:0;48502:4;-1:-1:-1;;;;;48493:27:0;;;;;;;;;;;48531:42;46547:2034;;46443:2138;;;:::o;38644:1113::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;38842:13:0;;38786:7;;38835:20;;38831:859;;;38876:31;38910:17;;;:11;:17;;;;;;;;;38876:51;;;;;;;;;-1:-1:-1;;;;;38876:51:0;;;;-1:-1:-1;;;38876:51:0;;-1:-1:-1;;;;;38876:51:0;;;;;;;;-1:-1:-1;;;38876:51:0;;;;;;;;;;;;;;38946:729;;38996:14;;-1:-1:-1;;;;;38996:28:0;;38992:101;;39060:9;38644:1113;-1:-1:-1;;;38644:1113:0:o;38992:101::-;-1:-1:-1;;;39435:6:0;39480:17;;;;:11;:17;;;;;;;;;39468:29;;;;;;;;;-1:-1:-1;;;;;39468:29:0;;;;;-1:-1:-1;;;39468:29:0;;-1:-1:-1;;;;;39468:29:0;;;;;;;;-1:-1:-1;;;39468:29:0;;;;;;;;;;;;;39528:28;39524:109;;39596:9;38644:1113;-1:-1:-1;;;38644:1113:0:o;39524:109::-;39395:261;;;38857:833;38831:859;39718:31;;-1:-1:-1;;;39718:31:0;;;;;;;;;;;8297:191;8390:6;;;-1:-1:-1;;;;;8407:17:0;;;-1:-1:-1;;;;;;8407:17:0;;;;;;;8440:40;;8390:6;;;8407:17;8390:6;;8440:40;;8371:16;;8440:40;8360:128;8297:191;:::o;18330:181::-;18388:7;;18420:5;18424:1;18420;:5;:::i;:::-;18408:17;;18449:1;18444;:6;;18436:46;;;;-1:-1:-1;;;18436:46:0;;8278:2:1;18436:46:0;;;8260:21:1;8317:2;8297:18;;;8290:30;8356:29;8336:18;;;8329:57;8403:18;;18436:46:0;8076:351:1;18436:46:0;18502:1;18330:181;-1:-1:-1;;;18330:181:0:o;19718:471::-;19776:7;20021:6;20017:47;;-1:-1:-1;20051:1:0;20044:8;;20017:47;20076:9;20088:5;20092:1;20088;:5;:::i;:::-;20076:17;-1:-1:-1;20121:1:0;20112:5;20116:1;20076:17;20112:5;:::i;:::-;:10;20104:56;;;;-1:-1:-1;;;20104:56:0;;9686:2:1;20104:56:0;;;9668:21:1;9725:2;9705:18;;;9698:30;9764:34;9744:18;;;9737:62;-1:-1:-1;;;9815:18:1;;;9808:31;9856:19;;20104:56:0;9484:397:1;60255:120:0;60334:33;60344:9;60355:11;60334:9;:33::i;51754:923::-;51909:4;-1:-1:-1;;;;;51930:13:0;;10021:19;:23;51926:744;;51983:175;;-1:-1:-1;;;51983:175:0;;-1:-1:-1;;;;;51983:36:0;;;;;:175;;5773:10;;52077:4;;52104:7;;52134:5;;51983:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51983:175:0;;;;;;;;-1:-1:-1;;51983:175:0;;;;;;;;;;;;:::i;:::-;;;51962:653;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52345:13:0;;52341:259;;52395:40;;-1:-1:-1;;;52395:40:0;;;;;;;;;;;52341:259;52550:6;52544:13;52535:6;52531:2;52527:15;52520:38;51962:653;-1:-1:-1;;;;;;52222:55:0;-1:-1:-1;;;52222:55:0;;-1:-1:-1;52215:62:0;;51926:744;-1:-1:-1;52654:4:0;51926:744;51754:923;;;;;;:::o;58692:102::-;58744:13;58777:9;58770:16;;;;;:::i;3225:723::-;3281:13;3502:10;3498:53;;-1:-1:-1;;3529:10:0;;;;;;;;;;;;-1:-1:-1;;;3529:10:0;;;;;3225:723::o;3498:53::-;3576:5;3561:12;3617:78;3624:9;;3617:78;;3650:8;;;;:::i;:::-;;-1:-1:-1;3673:10:0;;-1:-1:-1;3681:2:0;3673:10;;:::i;:::-;;;3617:78;;;3705:19;3737:6;-1:-1:-1;;;;;3727:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3727:17:0;;3705:39;;3755:154;3762:10;;3755:154;;3789:11;3799:1;3789:11;;:::i;:::-;;-1:-1:-1;3858:10:0;3866:2;3858:5;:10;:::i;:::-;3845:24;;:2;:24;:::i;:::-;3832:39;;3815:6;3822;3815:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3815:56:0;;;;;;;;-1:-1:-1;3886:11:0;3895:2;3886:11;;:::i;:::-;;;3755:154;;37277:207;37338:7;-1:-1:-1;;;;;37362:19:0;;37358:59;;37390:27;;-1:-1:-1;;;37390:27:0;;;;;;;;;;;37358:59;-1:-1:-1;;;;;;37443:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;37443:32:0;;-1:-1:-1;;;;;37443:32:0;;37277:207::o;43827:104::-;43896:27;43906:2;43910:8;43896:27;;;;;;;;;;;;44417:32;44423:2;44427:8;44437:5;44444:4;44855:20;44878:13;-1:-1:-1;;;;;44906:16:0;;44902:48;;44931:19;;-1:-1:-1;;;44931:19:0;;;;;;;;;;;44902:48;44965:13;44961:44;;44987:18;;-1:-1:-1;;;44987:18:0;;;;;;;;;;;44961:44;-1:-1:-1;;;;;45356:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;45415:49:0;;-1:-1:-1;;;;;45356:44:0;;;;;;;45415:49;;;-1:-1:-1;;;;;45356:44:0;;;;;;45415:49;;;;;;;;;;;;;;;;45481:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;45531:66:0;;;;-1:-1:-1;;;45581:15:0;45531:66;;;;;;;;;;;45481:25;;45666:389;45686:8;45682:1;:12;45666:389;;;45725:38;;45750:12;;-1:-1:-1;;;;;45725:38:0;;;45742:1;;45725:38;;45742:1;;45725:38;45808:4;:89;;;;;45838:59;45869:1;45873:2;45877:12;45891:5;45838:22;:59::i;:::-;45837:60;45808:89;45782:225;;;45947:40;;-1:-1:-1;;;45947:40:0;;;;;;;;;;;45782:225;46025:14;;;;;45696:3;45666:389;;;-1:-1:-1;46071:13:0;:28;46121:60;43078:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;-1:-1:-1;;;;;2036:6:1;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;-1:-1:-1;;;;;3606:6:1;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:272::-;3916:6;3969:2;3957:9;3948:7;3944:23;3940:32;3937:52;;;3985:1;3982;3975:12;3937:52;4024:9;4011:23;4074:6;4067:5;4063:18;4056:5;4053:29;4043:57;;4096:1;4093;4086:12;4135:180;4194:6;4247:2;4235:9;4226:7;4222:23;4218:32;4215:52;;;4263:1;4260;4253:12;4215:52;-1:-1:-1;4286:23:1;;4135:180;-1:-1:-1;4135:180:1:o;4320:257::-;4361:3;4399:5;4393:12;4426:6;4421:3;4414:19;4442:63;4498:6;4491:4;4486:3;4482:14;4475:4;4468:5;4464:16;4442:63;:::i;:::-;4559:2;4538:15;-1:-1:-1;;4534:29:1;4525:39;;;;4566:4;4521:50;;4320:257;-1:-1:-1;;4320:257:1:o;4582:637::-;4862:3;4900:6;4894:13;4916:53;4962:6;4957:3;4950:4;4942:6;4938:17;4916:53;:::i;:::-;5032:13;;4991:16;;;;5054:57;5032:13;4991:16;5088:4;5076:17;;5054:57;:::i;:::-;-1:-1:-1;;;5133:20:1;;5162:22;;;5211:1;5200:13;;4582:637;-1:-1:-1;;;;4582:637:1:o;5432:488::-;-1:-1:-1;;;;;5701:15:1;;;5683:34;;5753:15;;5748:2;5733:18;;5726:43;5800:2;5785:18;;5778:34;;;5848:3;5843:2;5828:18;;5821:31;;;5626:4;;5869:45;;5894:19;;5886:6;5869:45;:::i;:::-;5861:53;5432:488;-1:-1:-1;;;;;;5432:488:1:o;5925:632::-;6096:2;6148:21;;;6218:13;;6121:18;;;6240:22;;;6067:4;;6096:2;6319:15;;;;6293:2;6278:18;;;6067:4;6362:169;6376:6;6373:1;6370:13;6362:169;;;6437:13;;6425:26;;6506:15;;;;6471:12;;;;6398:1;6391:9;6362:169;;;-1:-1:-1;6548:3:1;;5925:632;-1:-1:-1;;;;;;5925:632:1:o;6754:219::-;6903:2;6892:9;6885:21;6866:4;6923:44;6963:2;6952:9;6948:18;6940:6;6923:44;:::i;10229:356::-;10431:2;10413:21;;;10450:18;;;10443:30;10509:34;10504:2;10489:18;;10482:62;10576:2;10561:18;;10229:356::o;11989:128::-;12029:3;12060:1;12056:6;12053:1;12050:13;12047:39;;;12066:18;;:::i;:::-;-1:-1:-1;12102:9:1;;11989:128::o;12122:120::-;12162:1;12188;12178:35;;12193:18;;:::i;:::-;-1:-1:-1;12227:9:1;;12122:120::o;12247:168::-;12287:7;12353:1;12349;12345:6;12341:14;12338:1;12335:21;12330:1;12323:9;12316:17;12312:45;12309:71;;;12360:18;;:::i;:::-;-1:-1:-1;12400:9:1;;12247:168::o;12420:125::-;12460:4;12488:1;12485;12482:8;12479:34;;;12493:18;;:::i;:::-;-1:-1:-1;12530:9:1;;12420:125::o;12550:258::-;12622:1;12632:113;12646:6;12643:1;12640:13;12632:113;;;12722:11;;;12716:18;12703:11;;;12696:39;12668:2;12661:10;12632:113;;;12763:6;12760:1;12757:13;12754:48;;;-1:-1:-1;;12798:1:1;12780:16;;12773:27;12550:258::o;12813:380::-;12892:1;12888:12;;;;12935;;;12956:61;;13010:4;13002:6;12998:17;12988:27;;12956:61;13063:2;13055:6;13052:14;13032:18;13029:38;13026:161;;;13109:10;13104:3;13100:20;13097:1;13090:31;13144:4;13141:1;13134:15;13172:4;13169:1;13162:15;13198:135;13237:3;-1:-1:-1;;13258:17:1;;13255:43;;;13278:18;;:::i;:::-;-1:-1:-1;13325:1:1;13314:13;;13198:135::o;13338:112::-;13370:1;13396;13386:35;;13401:18;;:::i;:::-;-1:-1:-1;13435:9:1;;13338:112::o;13455:127::-;13516:10;13511:3;13507:20;13504:1;13497:31;13547:4;13544:1;13537:15;13571:4;13568:1;13561:15;13587:127;13648:10;13643:3;13639:20;13636:1;13629:31;13679:4;13676:1;13669:15;13703:4;13700:1;13693:15;13719:127;13780:10;13775:3;13771:20;13768:1;13761:31;13811:4;13808:1;13801:15;13835:4;13832:1;13825:15;13851:127;13912:10;13907:3;13903:20;13900:1;13893:31;13943:4;13940:1;13933:15;13967:4;13964:1;13957:15;13983:131;-1:-1:-1;;;;;;14057:32:1;;14047:43;;14037:71;;14104:1;14101;14094:12
Swarm Source
ipfs://601cf117b0010d1a93321789bda2a17c00e76cdc0326eb47bafefc518004b8c8
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.