ERC-721
NFT
Overview
Max Total Supply
2,736 CCC
Holders
1,170
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 CCCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CCCMintContract
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-23 */ // SPDX-License-Identifier: MIT // 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/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); } } } } // 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/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: @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/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: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { 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) { 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) { 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 { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @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 virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: @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: contracts/CCCMintContract.sol /** Capybaras Country Club ▄▄▄▌██████████████████████████▌▌█▄ ▄██████████████████████████████████████████████▌ ▄██████▌ ▀███████ █████ ▀████▄ ████ ███████▌ ▄███████▒ ████ ███ █████████ ▓████████▀ ███▌ ▐███ ▀██████ ███████ ▐███ ██▌ ▀████▌ ▄█ █████ ███ ███ ██▌ ██▌ ███ ██▌ ███▀ ▓██▌ ▐███ ███ ███ ║███ ███▌ ╙███ ║███ ███ ███▌ ▐███ ███ ███▌ ║███ ███ ████ ▐███ ▄███ ▀███▄ ▐███ ████ ████▄ ██▌ ████▀ ▐████▌ ██▌ ▄█████ ▀█████▄ ██ ,██████ "██████▌ ▄██████▀ ╙████████▄ ,▄███████▀ ╜██████████████████▀ */ pragma solidity >=0.7.0 <0.9.0; /// @title Capybaras Country Club NFT mint contract /// @author Capybaras Country Club Team /// @dev The contract uses Azukis ERC721 implementation {see ER721A.sol for more details} /// @dev source for ERC721A: https://github.com/chiru-labs/ERC721A contract CCCMintContract is ERC721A, Ownable { using Strings for uint256; string public uriPrefix = ""; string public uriSuffix = ".json"; string public hiddenMetadataUri; uint256 public costPublic = 0.06 ether; uint256 public costWL = 0.04 ether; uint256 public costOG = 0.03 ether; uint256 public maxSupply = 7700; uint256 public maxMintAmountPerTx = 5; uint256 public nftPerAddressLimit = 5; uint256 public nftPerAddressLimitPreSale = 3; uint256 public maxSupplyForDevs = 120; bool public paused = true; bool public revealed = false; bool public presale = true; mapping(address => uint256) public addressMintedBalance; bytes32 rootWl; bytes32 rootOg; constructor() ERC721A("Capybara", "CCC") { setHiddenMetadataUri( "ipfs://QmcNqKmNjy5wo3tCRT3apy7BzEo1SyGsWru55fuDZPckd6/hidden.json" ); } /// @notice Do not pass supply and max NFT per transaction. Limit on the pre-sale is the total supply /// @dev Runs before every mint modifier mintCompliance(uint256 _mintAmount) { require(tx.origin == msg.sender, "The caller is another contract"); require( _mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!" ); require( totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!" ); _; } /// @notice Devs mints before everyone else (before the pre-sale starts) /// @dev Runs before the pre-sale starts modifier mintComplianceOwner(uint256 _mintAmount) { require( totalSupply() + _mintAmount <= maxSupplyForDevs, "Max supply exceeded!" ); _; } /// @notice Mints for public sale at full price. WL and OG can go up to 5 NFT (3 in pre-sale and 2 in public sale). /// @param _mintAmount is to number of NFTs to mint /// @dev Mints NFTs for public sale when presale is false at a discount function mintPublicSale(uint256 _mintAmount) external payable mintCompliance(_mintAmount) { require(!paused, "The contract is paused!"); require(!presale, "Not valid user for pre sale"); require(msg.value >= costPublic * _mintAmount, "Insufficient funds!"); require( addressMintedBalance[msg.sender] + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded" ); addressMintedBalance[msg.sender] += _mintAmount; _safeMint(msg.sender, _mintAmount); } /// @notice Mints for OGs with a 20% discount /// @param _mintAmount is to number of NFTs to mint /// @param proof is an array of byte32 hashes /// @dev Mints NFTs for the private sale when presale is true function mintOG(uint256 _mintAmount, bytes32[] memory proof) external payable mintCompliance(_mintAmount) { require(!paused, "The contract is paused!"); require(presale, "Not in pre sale"); require( MerkleProof.verify( proof, rootOg, keccak256(abi.encodePacked(msg.sender)) ), "Address is not og" ); require(msg.value >= costOG * _mintAmount, "insufficient funds"); require( addressMintedBalance[msg.sender] + _mintAmount <= nftPerAddressLimitPreSale, "max NFT per address exceeded" ); addressMintedBalance[msg.sender] += _mintAmount; _safeMint(msg.sender, _mintAmount); } /// @notice Mints for whitelisted users with a 10% discount /// @param _mintAmount is to number of NFTs to mint /// @param proof is an array of byte32 hashes /// @dev Mints NFTs for the private sale when presale is true function mintWL(uint256 _mintAmount, bytes32[] memory proof) external payable mintCompliance(_mintAmount) { require(!paused, "The contract is paused!"); require(presale, "Not in pre sale"); require( MerkleProof.verify( proof, rootWl, keccak256(abi.encodePacked(msg.sender)) ), "Address is not whitelisted" ); require(msg.value >= costWL * _mintAmount, "insufficient funds"); require( addressMintedBalance[msg.sender] + _mintAmount <= nftPerAddressLimitPreSale, "max NFT per address exceeded" ); addressMintedBalance[msg.sender] += _mintAmount; _safeMint(msg.sender, _mintAmount); } /// @param _mintAmount quantity of tokens to transfer /// @param _receiver wallet of the recipient /// @dev Mints NFTs for the private sale when presale is true function mintForAddress(uint256 _mintAmount, address _receiver) external mintComplianceOwner(_mintAmount) onlyOwner { _safeMint(_receiver, _mintAmount); } /// @notice Queries contract tokens by id /// @param _tokenId id of the token eg: 1,2,3,4,5 function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, _tokenId.toString(), uriSuffix ) ) : ""; } /// @notice Reveals the metadata of the tokens /// @param _state true or false function setRevealed(bool _state) public onlyOwner { revealed = _state; } /// @notice Updates the mint cost /// @param _cost new cost of minting function setCostPublic(uint256 _cost) public onlyOwner { costPublic = _cost; } /// @notice Updates the mint cost /// @param _cost new cost of minting function setCostWL(uint256 _cost) public onlyOwner { costWL = _cost; } /// @notice Updates the mint cost /// @param _cost new cost of minting function setCostOG(uint256 _cost) public onlyOwner { costOG = _cost; } /// @notice Sets the maximum amount of tokens to be minted per transaction /// @param _maxMintAmountPerTx new max amount of tokens to be minted per tx /// @dev It's a cap to avoid network congestion function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } /// @notice Sets the uri where the metadata is stored when the contract is not revealed /// @param _hiddenMetadataUri new uri where the metadata is stored function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } /// @notice Sets the uri prefix for the metadata Eg: ipfs//: /// @param _uriPrefix new uri prefix for the metadata function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } /// @notice Sets the uri suffix for the metadata Eg: png /// @param _uriSuffix new uri suffix for the metadata function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } /// @notice Sets paused contract state /// @param _state true or false function setPaused(bool _state) public onlyOwner { paused = _state; } /// @notice Sets presale state /// @param _state true or false function setPresale(bool _state) public onlyOwner { presale = _state; } /// @notice Sets Merkle root hash for the list of whitelisted addresses /// @param _root new Merkle root hash for the list of whitelisted addresses function setRootWl(bytes32 _root) public onlyOwner { rootWl = _root; } /// @notice Sets Merkle root hash for the list of og addresses /// @param _root new Merkle root hash for the list of Og addresses function setRootOg(bytes32 _root) public onlyOwner { rootOg = _root; } /// @notice Withdraws balance from the contract wallet function withdraw() public onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } /// @notice Returns the base URI /// @dev Returns a string in the form of an ipfs url function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } /// @notice uses MerkleRoot to verify if the hash is valid. (This function is used externally only) /// @param root can be rootOg or rootWl /// @param proof is the Merkle proof in the form of a bytes32 array /// @dev Returns a boolean function verify(bytes32 root, bytes32[] memory proof) internal view returns (bool) { return MerkleProof.verify( proof, root, keccak256(abi.encodePacked(msg.sender)) ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costOG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costWL","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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","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":"maxSupplyForDevs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintOG","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintPublicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintWL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimitPreSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCostOG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCostPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCostWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRootOg","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRootWl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040819052600060808190526200001b916009916200020c565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600a916200020c565b5066d529ae9e860000600c55668e1bc9bf040000600d55666a94d74f430000600e55611e14600f5560056010819055601155600360125560786013556014805462ffffff191662010001179055348015620000a457600080fd5b506040805180820182526008815267436170796261726160c01b60208083019182528351808501909452600384526243434360e81b908401528151919291620000f0916002916200020c565b508051620001069060039060208401906200020c565b50506000805550620001183362000142565b6200013c60405180608001604052806041815260200162002b986041913962000194565b620002ef565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001f35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200020890600b9060208401906200020c565b5050565b8280546200021a90620002b2565b90600052602060002090601f0160209004810192826200023e576000855562000289565b82601f106200025957805160ff191683800117855562000289565b8280016001018555821562000289579182015b82811115620002895782518255916020019190600101906200026c565b50620002979291506200029b565b5090565b5b808211156200029757600081556001016200029c565b600181811c90821680620002c757607f821691505b60208210811415620002e957634e487b7160e01b600052602260045260246000fd5b50919050565b61289980620002ff6000396000f3fe6080604052600436106102ae5760003560e01c80636a37a20f11610175578063bd2f92a1116100dc578063dfa434b211610095578063efb8a8931161006f578063efb8a893146107ff578063efbd73f41461081f578063f2fde38b1461083f578063fdea8e0b1461085f57600080fd5b8063dfa434b214610776578063e0a8085314610796578063e985e9c5146107b657600080fd5b8063bd2f92a1146106da578063c54e73e3146106ed578063c87b56dd1461070d578063ced2053b1461072d578063d0bfb8101461074d578063d5abeb011461076057600080fd5b806395d89b411161012e57806395d89b411461063a578063a22cb4651461064f578063a45ba8e71461066f578063b071401b14610684578063b88d4fde146106a4578063ba7d2c76146106c457600080fd5b80636a37a20f1461059b57806370a08231146105b1578063715018a6146105d15780637ec4a659146105e65780638da5cb5b1461060657806394354fd01461062457600080fd5b80633ccfd60b116102195780635503a0e8116101d25780635503a0e81461050e5780635a5e5d58146105235780635c975abb1461053657806362b99ad4146105505780636352211e1461056557806363cc11131461058557600080fd5b80633ccfd60b1461046457806342842e0e1461047957806343a552221461049957806345eefa37146104af5780634fdd43cb146104cf57806351830227146104ef57600080fd5b806316ba10e01161026b57806316ba10e01461039e57806316c38b3c146103be57806318160ddd146103de57806318cae269146103f757806323b872dd146104245780632f9a7c581461044457600080fd5b806301ffc9a7146102b357806306afd592146102e857806306fdde031461030c578063081812fc1461032e578063085ebf7714610366578063095ea7b31461037c575b600080fd5b3480156102bf57600080fd5b506102d36102ce36600461232e565b61087f565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102fe600d5481565b6040519081526020016102df565b34801561031857600080fd5b506103216108d1565b6040516102df91906125ba565b34801561033a57600080fd5b5061034e610349366004612315565b610963565b6040516001600160a01b0390911681526020016102df565b34801561037257600080fd5b506102fe600e5481565b34801561038857600080fd5b5061039c6103973660046122d0565b6109a7565b005b3480156103aa57600080fd5b5061039c6103b9366004612368565b610a35565b3480156103ca57600080fd5b5061039c6103d93660046122fa565b610a7f565b3480156103ea57600080fd5b50600154600054036102fe565b34801561040357600080fd5b506102fe6104123660046121a0565b60156020526000908152604090205481565b34801561043057600080fd5b5061039c61043f3660046121ee565b610abc565b34801561045057600080fd5b5061039c61045f366004612315565b610ac7565b34801561047057600080fd5b5061039c610af6565b34801561048557600080fd5b5061039c6104943660046121ee565b610b94565b3480156104a557600080fd5b506102fe60135481565b3480156104bb57600080fd5b5061039c6104ca366004612315565b610baf565b3480156104db57600080fd5b5061039c6104ea366004612368565b610bde565b3480156104fb57600080fd5b506014546102d390610100900460ff1681565b34801561051a57600080fd5b50610321610c1b565b61039c610531366004612315565b610ca9565b34801561054257600080fd5b506014546102d39060ff1681565b34801561055c57600080fd5b50610321610e9a565b34801561057157600080fd5b5061034e610580366004612315565b610ea7565b34801561059157600080fd5b506102fe600c5481565b3480156105a757600080fd5b506102fe60125481565b3480156105bd57600080fd5b506102fe6105cc3660046121a0565b610eb9565b3480156105dd57600080fd5b5061039c610f08565b3480156105f257600080fd5b5061039c610601366004612368565b610f3e565b34801561061257600080fd5b506008546001600160a01b031661034e565b34801561063057600080fd5b506102fe60105481565b34801561064657600080fd5b50610321610f7b565b34801561065b57600080fd5b5061039c61066a3660046122a6565b610f8a565b34801561067b57600080fd5b50610321611020565b34801561069057600080fd5b5061039c61069f366004612315565b61102d565b3480156106b057600080fd5b5061039c6106bf36600461222a565b61105c565b3480156106d057600080fd5b506102fe60115481565b61039c6106e83660046123d4565b6110ad565b3480156106f957600080fd5b5061039c6107083660046122fa565b611311565b34801561071957600080fd5b50610321610728366004612315565b611357565b34801561073957600080fd5b5061039c610748366004612315565b6114c6565b61039c61075b3660046123d4565b6114f5565b34801561076c57600080fd5b506102fe600f5481565b34801561078257600080fd5b5061039c610791366004612315565b61166f565b3480156107a257600080fd5b5061039c6107b13660046122fa565b61169e565b3480156107c257600080fd5b506102d36107d13660046121bb565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561080b57600080fd5b5061039c61081a366004612315565b6116e2565b34801561082b57600080fd5b5061039c61083a3660046123b1565b611711565b34801561084b57600080fd5b5061039c61085a3660046121a0565b61177f565b34801561086b57600080fd5b506014546102d39062010000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b14806108b057506001600160e01b03198216635b5e139f60e01b145b806108cb57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546108e09061278b565b80601f016020809104026020016040519081016040528092919081815260200182805461090c9061278b565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b5050505050905090565b600061096e82611817565b61098b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109b282610ea7565b9050806001600160a01b0316836001600160a01b031614156109e75760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a075750610a0581336107d1565b155b15610a25576040516367d9dca160e11b815260040160405180910390fd5b610a30838383611842565b505050565b6008546001600160a01b03163314610a685760405162461bcd60e51b8152600401610a5f90612632565b60405180910390fd5b8051610a7b90600a906020840190612083565b5050565b6008546001600160a01b03163314610aa95760405162461bcd60e51b8152600401610a5f90612632565b6014805460ff1916911515919091179055565b610a3083838361189e565b6008546001600160a01b03163314610af15760405162461bcd60e51b8152600401610a5f90612632565b600c55565b6008546001600160a01b03163314610b205760405162461bcd60e51b8152600401610a5f90612632565b6000610b346008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b7e576040519150601f19603f3d011682016040523d82523d6000602084013e610b83565b606091505b5050905080610b9157600080fd5b50565b610a308383836040518060200160405280600081525061105c565b6008546001600160a01b03163314610bd95760405162461bcd60e51b8152600401610a5f90612632565b601655565b6008546001600160a01b03163314610c085760405162461bcd60e51b8152600401610a5f90612632565b8051610a7b90600b906020840190612083565b600a8054610c289061278b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c549061278b565b8015610ca15780601f10610c7657610100808354040283529160200191610ca1565b820191906000526020600020905b815481529060010190602001808311610c8457829003601f168201915b505050505081565b80323314610cc95760405162461bcd60e51b8152600401610a5f906125fb565b600081118015610cdb57506010548111155b610cf75760405162461bcd60e51b8152600401610a5f906125cd565b600f5481610d086001546000540390565b610d1291906126fd565b1115610d305760405162461bcd60e51b8152600401610a5f9061269e565b60145460ff1615610d535760405162461bcd60e51b8152600401610a5f90612667565b60145462010000900460ff1615610dac5760405162461bcd60e51b815260206004820152601b60248201527f4e6f742076616c6964207573657220666f72207072652073616c6500000000006044820152606401610a5f565b81600c54610dba9190612729565b341015610dff5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610a5f565b60115433600090815260156020526040902054610e1d9084906126fd565b1115610e6b5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610a5f565b3360009081526015602052604081208054849290610e8a9084906126fd565b90915550610a7b90503383611a8e565b60098054610c289061278b565b6000610eb282611aa8565b5192915050565b60006001600160a01b038216610ee2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610f325760405162461bcd60e51b8152600401610a5f90612632565b610f3c6000611bc4565b565b6008546001600160a01b03163314610f685760405162461bcd60e51b8152600401610a5f90612632565b8051610a7b906009906020840190612083565b6060600380546108e09061278b565b6001600160a01b038216331415610fb45760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b8054610c289061278b565b6008546001600160a01b031633146110575760405162461bcd60e51b8152600401610a5f90612632565b601055565b61106784848461189e565b6001600160a01b0383163b15158015611089575061108784848484611c16565b155b156110a7576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b813233146110cd5760405162461bcd60e51b8152600401610a5f906125fb565b6000811180156110df57506010548111155b6110fb5760405162461bcd60e51b8152600401610a5f906125cd565b600f548161110c6001546000540390565b61111691906126fd565b11156111345760405162461bcd60e51b8152600401610a5f9061269e565b60145460ff16156111575760405162461bcd60e51b8152600401610a5f90612667565b60145462010000900460ff166111a15760405162461bcd60e51b815260206004820152600f60248201526e4e6f7420696e207072652073616c6560881b6044820152606401610a5f565b6017546040516bffffffffffffffffffffffff193360601b1660208201526111e49184916034015b60405160208183030381529060405280519060200120611d0e565b6112245760405162461bcd60e51b815260206004820152601160248201527041646472657373206973206e6f74206f6760781b6044820152606401610a5f565b82600e546112329190612729565b3410156112765760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610a5f565b601254336000908152601560205260409020546112949085906126fd565b11156112e25760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610a5f565b33600090815260156020526040812080548592906113019084906126fd565b90915550610a3090503384611a8e565b6008546001600160a01b0316331461133b5760405162461bcd60e51b8152600401610a5f90612632565b60148054911515620100000262ff000019909216919091179055565b606061136282611817565b6113c65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a5f565b601454610100900460ff1661146757600b80546113e29061278b565b80601f016020809104026020016040519081016040528092919081815260200182805461140e9061278b565b801561145b5780601f106114305761010080835404028352916020019161145b565b820191906000526020600020905b81548152906001019060200180831161143e57829003601f168201915b50505050509050919050565b6000611471611d24565b9050600081511161149157604051806020016040528060008152506114bf565b8061149b84611d33565b600a6040516020016114af939291906124b9565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146114f05760405162461bcd60e51b8152600401610a5f90612632565b600d55565b813233146115155760405162461bcd60e51b8152600401610a5f906125fb565b60008111801561152757506010548111155b6115435760405162461bcd60e51b8152600401610a5f906125cd565b600f54816115546001546000540390565b61155e91906126fd565b111561157c5760405162461bcd60e51b8152600401610a5f9061269e565b60145460ff161561159f5760405162461bcd60e51b8152600401610a5f90612667565b60145462010000900460ff166115e95760405162461bcd60e51b815260206004820152600f60248201526e4e6f7420696e207072652073616c6560881b6044820152606401610a5f565b6016546040516bffffffffffffffffffffffff193360601b1660208201526116159184916034016111c9565b6116615760405162461bcd60e51b815260206004820152601a60248201527f41646472657373206973206e6f742077686974656c69737465640000000000006044820152606401610a5f565b82600d546112329190612729565b6008546001600160a01b031633146116995760405162461bcd60e51b8152600401610a5f90612632565b601755565b6008546001600160a01b031633146116c85760405162461bcd60e51b8152600401610a5f90612632565b601480549115156101000261ff0019909216919091179055565b6008546001600160a01b0316331461170c5760405162461bcd60e51b8152600401610a5f90612632565b600e55565b81601354816117236001546000540390565b61172d91906126fd565b111561174b5760405162461bcd60e51b8152600401610a5f9061269e565b6008546001600160a01b031633146117755760405162461bcd60e51b8152600401610a5f90612632565b610a308284611a8e565b6008546001600160a01b031633146117a95760405162461bcd60e51b8152600401610a5f90612632565b6001600160a01b03811661180e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a5f565b610b9181611bc4565b60008054821080156108cb575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006118a982611aa8565b9050836001600160a01b031681600001516001600160a01b0316146118e05760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806118fe57506118fe85336107d1565b8061191957503361190e84610963565b6001600160a01b0316145b90508061193957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661196057604051633a954ecd60e21b815260040160405180910390fd5b61196c60008487611842565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611a42576000548214611a42578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a7b828260405180602001604052806000815250611e31565b604080516060810182526000808252602082018190529181019190915281600054811015611bab57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611ba95780516001600160a01b031615611b3f579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611ba4579392505050565b611b3f565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611c4b90339089908890889060040161257d565b602060405180830381600087803b158015611c6557600080fd5b505af1925050508015611c95575060408051601f3d908101601f19168201909252611c929181019061234b565b60015b611cf0573d808015611cc3576040519150601f19603f3d011682016040523d82523d6000602084013e611cc8565b606091505b508051611ce8576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b600082611d1b8584611e3e565b14949350505050565b6060600980546108e09061278b565b606081611d575750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d815780611d6b816127c6565b9150611d7a9050600a83612715565b9150611d5b565b60008167ffffffffffffffff811115611d9c57611d9c612837565b6040519080825280601f01601f191660200182016040528015611dc6576020820181803683370190505b5090505b8415611d0657611ddb600183612748565b9150611de8600a866127e1565b611df39060306126fd565b60f81b818381518110611e0857611e08612821565b60200101906001600160f81b031916908160001a905350611e2a600a86612715565b9450611dca565b610a308383836001611eb2565b600081815b8451811015611eaa576000858281518110611e6057611e60612821565b60200260200101519050808311611e865760008381526020829052604090209250611e97565b600081815260208490526040902092505b5080611ea2816127c6565b915050611e43565b509392505050565b6000546001600160a01b038516611edb57604051622e076360e81b815260040160405180910390fd5b83611ef95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611fab57506001600160a01b0387163b15155b15612034575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ffc6000888480600101955088611c16565b612019576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611fb157826000541461202f57600080fd5b61207a565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612035575b50600055611a87565b82805461208f9061278b565b90600052602060002090601f0160209004810192826120b157600085556120f7565b82601f106120ca57805160ff19168380011785556120f7565b828001600101855582156120f7579182015b828111156120f75782518255916020019190600101906120dc565b50612103929150612107565b5090565b5b808211156121035760008155600101612108565b600067ffffffffffffffff83111561213657612136612837565b612149601f8401601f19166020016126cc565b905082815283838301111561215d57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461218b57600080fd5b919050565b8035801515811461218b57600080fd5b6000602082840312156121b257600080fd5b6114bf82612174565b600080604083850312156121ce57600080fd5b6121d783612174565b91506121e560208401612174565b90509250929050565b60008060006060848603121561220357600080fd5b61220c84612174565b925061221a60208501612174565b9150604084013590509250925092565b6000806000806080858703121561224057600080fd5b61224985612174565b935061225760208601612174565b925060408501359150606085013567ffffffffffffffff81111561227a57600080fd5b8501601f8101871361228b57600080fd5b61229a8782356020840161211c565b91505092959194509250565b600080604083850312156122b957600080fd5b6122c283612174565b91506121e560208401612190565b600080604083850312156122e357600080fd5b6122ec83612174565b946020939093013593505050565b60006020828403121561230c57600080fd5b6114bf82612190565b60006020828403121561232757600080fd5b5035919050565b60006020828403121561234057600080fd5b81356114bf8161284d565b60006020828403121561235d57600080fd5b81516114bf8161284d565b60006020828403121561237a57600080fd5b813567ffffffffffffffff81111561239157600080fd5b8201601f810184136123a257600080fd5b611d068482356020840161211c565b600080604083850312156123c457600080fd5b823591506121e560208401612174565b600080604083850312156123e757600080fd5b8235915060208084013567ffffffffffffffff8082111561240757600080fd5b818601915086601f83011261241b57600080fd5b81358181111561242d5761242d612837565b8060051b915061243e8483016126cc565b8181528481019084860184860187018b101561245957600080fd5b600095505b8386101561247c57803583526001959095019491860191860161245e565b508096505050505050509250929050565b600081518084526124a581602086016020860161275f565b601f01601f19169290920160200192915050565b6000845160206124cc8285838a0161275f565b8551918401916124df8184848a0161275f565b8554920191600090600181811c90808316806124fc57607f831692505b85831081141561251a57634e487b7160e01b85526022600452602485fd5b80801561252e576001811461253f5761256c565b60ff1985168852838801955061256c565b60008b81526020902060005b858110156125645781548a82015290840190880161254b565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125b09083018461248d565b9695505050505050565b6020815260006114bf602083018461248d565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b604051601f8201601f1916810167ffffffffffffffff811182821017156126f5576126f5612837565b604052919050565b60008219821115612710576127106127f5565b500190565b6000826127245761272461280b565b500490565b6000816000190483118215151615612743576127436127f5565b500290565b60008282101561275a5761275a6127f5565b500390565b60005b8381101561277a578181015183820152602001612762565b838111156110a75750506000910152565b600181811c9082168061279f57607f821691505b602082108114156127c057634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127da576127da6127f5565b5060010190565b6000826127f0576127f061280b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b9157600080fdfea264697066735822122024afd848f4da395be19a56c6751f55d3b6700c9032ae75b0f346512cd42efa1a64736f6c63430008070033697066733a2f2f516d634e714b6d4e6a7935776f33744352543361707937427a456f315379477357727535356675445a50636b64362f68696464656e2e6a736f6e
Deployed Bytecode
0x6080604052600436106102ae5760003560e01c80636a37a20f11610175578063bd2f92a1116100dc578063dfa434b211610095578063efb8a8931161006f578063efb8a893146107ff578063efbd73f41461081f578063f2fde38b1461083f578063fdea8e0b1461085f57600080fd5b8063dfa434b214610776578063e0a8085314610796578063e985e9c5146107b657600080fd5b8063bd2f92a1146106da578063c54e73e3146106ed578063c87b56dd1461070d578063ced2053b1461072d578063d0bfb8101461074d578063d5abeb011461076057600080fd5b806395d89b411161012e57806395d89b411461063a578063a22cb4651461064f578063a45ba8e71461066f578063b071401b14610684578063b88d4fde146106a4578063ba7d2c76146106c457600080fd5b80636a37a20f1461059b57806370a08231146105b1578063715018a6146105d15780637ec4a659146105e65780638da5cb5b1461060657806394354fd01461062457600080fd5b80633ccfd60b116102195780635503a0e8116101d25780635503a0e81461050e5780635a5e5d58146105235780635c975abb1461053657806362b99ad4146105505780636352211e1461056557806363cc11131461058557600080fd5b80633ccfd60b1461046457806342842e0e1461047957806343a552221461049957806345eefa37146104af5780634fdd43cb146104cf57806351830227146104ef57600080fd5b806316ba10e01161026b57806316ba10e01461039e57806316c38b3c146103be57806318160ddd146103de57806318cae269146103f757806323b872dd146104245780632f9a7c581461044457600080fd5b806301ffc9a7146102b357806306afd592146102e857806306fdde031461030c578063081812fc1461032e578063085ebf7714610366578063095ea7b31461037c575b600080fd5b3480156102bf57600080fd5b506102d36102ce36600461232e565b61087f565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102fe600d5481565b6040519081526020016102df565b34801561031857600080fd5b506103216108d1565b6040516102df91906125ba565b34801561033a57600080fd5b5061034e610349366004612315565b610963565b6040516001600160a01b0390911681526020016102df565b34801561037257600080fd5b506102fe600e5481565b34801561038857600080fd5b5061039c6103973660046122d0565b6109a7565b005b3480156103aa57600080fd5b5061039c6103b9366004612368565b610a35565b3480156103ca57600080fd5b5061039c6103d93660046122fa565b610a7f565b3480156103ea57600080fd5b50600154600054036102fe565b34801561040357600080fd5b506102fe6104123660046121a0565b60156020526000908152604090205481565b34801561043057600080fd5b5061039c61043f3660046121ee565b610abc565b34801561045057600080fd5b5061039c61045f366004612315565b610ac7565b34801561047057600080fd5b5061039c610af6565b34801561048557600080fd5b5061039c6104943660046121ee565b610b94565b3480156104a557600080fd5b506102fe60135481565b3480156104bb57600080fd5b5061039c6104ca366004612315565b610baf565b3480156104db57600080fd5b5061039c6104ea366004612368565b610bde565b3480156104fb57600080fd5b506014546102d390610100900460ff1681565b34801561051a57600080fd5b50610321610c1b565b61039c610531366004612315565b610ca9565b34801561054257600080fd5b506014546102d39060ff1681565b34801561055c57600080fd5b50610321610e9a565b34801561057157600080fd5b5061034e610580366004612315565b610ea7565b34801561059157600080fd5b506102fe600c5481565b3480156105a757600080fd5b506102fe60125481565b3480156105bd57600080fd5b506102fe6105cc3660046121a0565b610eb9565b3480156105dd57600080fd5b5061039c610f08565b3480156105f257600080fd5b5061039c610601366004612368565b610f3e565b34801561061257600080fd5b506008546001600160a01b031661034e565b34801561063057600080fd5b506102fe60105481565b34801561064657600080fd5b50610321610f7b565b34801561065b57600080fd5b5061039c61066a3660046122a6565b610f8a565b34801561067b57600080fd5b50610321611020565b34801561069057600080fd5b5061039c61069f366004612315565b61102d565b3480156106b057600080fd5b5061039c6106bf36600461222a565b61105c565b3480156106d057600080fd5b506102fe60115481565b61039c6106e83660046123d4565b6110ad565b3480156106f957600080fd5b5061039c6107083660046122fa565b611311565b34801561071957600080fd5b50610321610728366004612315565b611357565b34801561073957600080fd5b5061039c610748366004612315565b6114c6565b61039c61075b3660046123d4565b6114f5565b34801561076c57600080fd5b506102fe600f5481565b34801561078257600080fd5b5061039c610791366004612315565b61166f565b3480156107a257600080fd5b5061039c6107b13660046122fa565b61169e565b3480156107c257600080fd5b506102d36107d13660046121bb565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561080b57600080fd5b5061039c61081a366004612315565b6116e2565b34801561082b57600080fd5b5061039c61083a3660046123b1565b611711565b34801561084b57600080fd5b5061039c61085a3660046121a0565b61177f565b34801561086b57600080fd5b506014546102d39062010000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b14806108b057506001600160e01b03198216635b5e139f60e01b145b806108cb57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546108e09061278b565b80601f016020809104026020016040519081016040528092919081815260200182805461090c9061278b565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b5050505050905090565b600061096e82611817565b61098b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109b282610ea7565b9050806001600160a01b0316836001600160a01b031614156109e75760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a075750610a0581336107d1565b155b15610a25576040516367d9dca160e11b815260040160405180910390fd5b610a30838383611842565b505050565b6008546001600160a01b03163314610a685760405162461bcd60e51b8152600401610a5f90612632565b60405180910390fd5b8051610a7b90600a906020840190612083565b5050565b6008546001600160a01b03163314610aa95760405162461bcd60e51b8152600401610a5f90612632565b6014805460ff1916911515919091179055565b610a3083838361189e565b6008546001600160a01b03163314610af15760405162461bcd60e51b8152600401610a5f90612632565b600c55565b6008546001600160a01b03163314610b205760405162461bcd60e51b8152600401610a5f90612632565b6000610b346008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b7e576040519150601f19603f3d011682016040523d82523d6000602084013e610b83565b606091505b5050905080610b9157600080fd5b50565b610a308383836040518060200160405280600081525061105c565b6008546001600160a01b03163314610bd95760405162461bcd60e51b8152600401610a5f90612632565b601655565b6008546001600160a01b03163314610c085760405162461bcd60e51b8152600401610a5f90612632565b8051610a7b90600b906020840190612083565b600a8054610c289061278b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c549061278b565b8015610ca15780601f10610c7657610100808354040283529160200191610ca1565b820191906000526020600020905b815481529060010190602001808311610c8457829003601f168201915b505050505081565b80323314610cc95760405162461bcd60e51b8152600401610a5f906125fb565b600081118015610cdb57506010548111155b610cf75760405162461bcd60e51b8152600401610a5f906125cd565b600f5481610d086001546000540390565b610d1291906126fd565b1115610d305760405162461bcd60e51b8152600401610a5f9061269e565b60145460ff1615610d535760405162461bcd60e51b8152600401610a5f90612667565b60145462010000900460ff1615610dac5760405162461bcd60e51b815260206004820152601b60248201527f4e6f742076616c6964207573657220666f72207072652073616c6500000000006044820152606401610a5f565b81600c54610dba9190612729565b341015610dff5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610a5f565b60115433600090815260156020526040902054610e1d9084906126fd565b1115610e6b5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610a5f565b3360009081526015602052604081208054849290610e8a9084906126fd565b90915550610a7b90503383611a8e565b60098054610c289061278b565b6000610eb282611aa8565b5192915050565b60006001600160a01b038216610ee2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610f325760405162461bcd60e51b8152600401610a5f90612632565b610f3c6000611bc4565b565b6008546001600160a01b03163314610f685760405162461bcd60e51b8152600401610a5f90612632565b8051610a7b906009906020840190612083565b6060600380546108e09061278b565b6001600160a01b038216331415610fb45760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b8054610c289061278b565b6008546001600160a01b031633146110575760405162461bcd60e51b8152600401610a5f90612632565b601055565b61106784848461189e565b6001600160a01b0383163b15158015611089575061108784848484611c16565b155b156110a7576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b813233146110cd5760405162461bcd60e51b8152600401610a5f906125fb565b6000811180156110df57506010548111155b6110fb5760405162461bcd60e51b8152600401610a5f906125cd565b600f548161110c6001546000540390565b61111691906126fd565b11156111345760405162461bcd60e51b8152600401610a5f9061269e565b60145460ff16156111575760405162461bcd60e51b8152600401610a5f90612667565b60145462010000900460ff166111a15760405162461bcd60e51b815260206004820152600f60248201526e4e6f7420696e207072652073616c6560881b6044820152606401610a5f565b6017546040516bffffffffffffffffffffffff193360601b1660208201526111e49184916034015b60405160208183030381529060405280519060200120611d0e565b6112245760405162461bcd60e51b815260206004820152601160248201527041646472657373206973206e6f74206f6760781b6044820152606401610a5f565b82600e546112329190612729565b3410156112765760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610a5f565b601254336000908152601560205260409020546112949085906126fd565b11156112e25760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610a5f565b33600090815260156020526040812080548592906113019084906126fd565b90915550610a3090503384611a8e565b6008546001600160a01b0316331461133b5760405162461bcd60e51b8152600401610a5f90612632565b60148054911515620100000262ff000019909216919091179055565b606061136282611817565b6113c65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a5f565b601454610100900460ff1661146757600b80546113e29061278b565b80601f016020809104026020016040519081016040528092919081815260200182805461140e9061278b565b801561145b5780601f106114305761010080835404028352916020019161145b565b820191906000526020600020905b81548152906001019060200180831161143e57829003601f168201915b50505050509050919050565b6000611471611d24565b9050600081511161149157604051806020016040528060008152506114bf565b8061149b84611d33565b600a6040516020016114af939291906124b9565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146114f05760405162461bcd60e51b8152600401610a5f90612632565b600d55565b813233146115155760405162461bcd60e51b8152600401610a5f906125fb565b60008111801561152757506010548111155b6115435760405162461bcd60e51b8152600401610a5f906125cd565b600f54816115546001546000540390565b61155e91906126fd565b111561157c5760405162461bcd60e51b8152600401610a5f9061269e565b60145460ff161561159f5760405162461bcd60e51b8152600401610a5f90612667565b60145462010000900460ff166115e95760405162461bcd60e51b815260206004820152600f60248201526e4e6f7420696e207072652073616c6560881b6044820152606401610a5f565b6016546040516bffffffffffffffffffffffff193360601b1660208201526116159184916034016111c9565b6116615760405162461bcd60e51b815260206004820152601a60248201527f41646472657373206973206e6f742077686974656c69737465640000000000006044820152606401610a5f565b82600d546112329190612729565b6008546001600160a01b031633146116995760405162461bcd60e51b8152600401610a5f90612632565b601755565b6008546001600160a01b031633146116c85760405162461bcd60e51b8152600401610a5f90612632565b601480549115156101000261ff0019909216919091179055565b6008546001600160a01b0316331461170c5760405162461bcd60e51b8152600401610a5f90612632565b600e55565b81601354816117236001546000540390565b61172d91906126fd565b111561174b5760405162461bcd60e51b8152600401610a5f9061269e565b6008546001600160a01b031633146117755760405162461bcd60e51b8152600401610a5f90612632565b610a308284611a8e565b6008546001600160a01b031633146117a95760405162461bcd60e51b8152600401610a5f90612632565b6001600160a01b03811661180e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a5f565b610b9181611bc4565b60008054821080156108cb575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006118a982611aa8565b9050836001600160a01b031681600001516001600160a01b0316146118e05760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806118fe57506118fe85336107d1565b8061191957503361190e84610963565b6001600160a01b0316145b90508061193957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661196057604051633a954ecd60e21b815260040160405180910390fd5b61196c60008487611842565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611a42576000548214611a42578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a7b828260405180602001604052806000815250611e31565b604080516060810182526000808252602082018190529181019190915281600054811015611bab57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611ba95780516001600160a01b031615611b3f579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611ba4579392505050565b611b3f565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611c4b90339089908890889060040161257d565b602060405180830381600087803b158015611c6557600080fd5b505af1925050508015611c95575060408051601f3d908101601f19168201909252611c929181019061234b565b60015b611cf0573d808015611cc3576040519150601f19603f3d011682016040523d82523d6000602084013e611cc8565b606091505b508051611ce8576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b600082611d1b8584611e3e565b14949350505050565b6060600980546108e09061278b565b606081611d575750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d815780611d6b816127c6565b9150611d7a9050600a83612715565b9150611d5b565b60008167ffffffffffffffff811115611d9c57611d9c612837565b6040519080825280601f01601f191660200182016040528015611dc6576020820181803683370190505b5090505b8415611d0657611ddb600183612748565b9150611de8600a866127e1565b611df39060306126fd565b60f81b818381518110611e0857611e08612821565b60200101906001600160f81b031916908160001a905350611e2a600a86612715565b9450611dca565b610a308383836001611eb2565b600081815b8451811015611eaa576000858281518110611e6057611e60612821565b60200260200101519050808311611e865760008381526020829052604090209250611e97565b600081815260208490526040902092505b5080611ea2816127c6565b915050611e43565b509392505050565b6000546001600160a01b038516611edb57604051622e076360e81b815260040160405180910390fd5b83611ef95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611fab57506001600160a01b0387163b15155b15612034575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ffc6000888480600101955088611c16565b612019576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611fb157826000541461202f57600080fd5b61207a565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612035575b50600055611a87565b82805461208f9061278b565b90600052602060002090601f0160209004810192826120b157600085556120f7565b82601f106120ca57805160ff19168380011785556120f7565b828001600101855582156120f7579182015b828111156120f75782518255916020019190600101906120dc565b50612103929150612107565b5090565b5b808211156121035760008155600101612108565b600067ffffffffffffffff83111561213657612136612837565b612149601f8401601f19166020016126cc565b905082815283838301111561215d57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461218b57600080fd5b919050565b8035801515811461218b57600080fd5b6000602082840312156121b257600080fd5b6114bf82612174565b600080604083850312156121ce57600080fd5b6121d783612174565b91506121e560208401612174565b90509250929050565b60008060006060848603121561220357600080fd5b61220c84612174565b925061221a60208501612174565b9150604084013590509250925092565b6000806000806080858703121561224057600080fd5b61224985612174565b935061225760208601612174565b925060408501359150606085013567ffffffffffffffff81111561227a57600080fd5b8501601f8101871361228b57600080fd5b61229a8782356020840161211c565b91505092959194509250565b600080604083850312156122b957600080fd5b6122c283612174565b91506121e560208401612190565b600080604083850312156122e357600080fd5b6122ec83612174565b946020939093013593505050565b60006020828403121561230c57600080fd5b6114bf82612190565b60006020828403121561232757600080fd5b5035919050565b60006020828403121561234057600080fd5b81356114bf8161284d565b60006020828403121561235d57600080fd5b81516114bf8161284d565b60006020828403121561237a57600080fd5b813567ffffffffffffffff81111561239157600080fd5b8201601f810184136123a257600080fd5b611d068482356020840161211c565b600080604083850312156123c457600080fd5b823591506121e560208401612174565b600080604083850312156123e757600080fd5b8235915060208084013567ffffffffffffffff8082111561240757600080fd5b818601915086601f83011261241b57600080fd5b81358181111561242d5761242d612837565b8060051b915061243e8483016126cc565b8181528481019084860184860187018b101561245957600080fd5b600095505b8386101561247c57803583526001959095019491860191860161245e565b508096505050505050509250929050565b600081518084526124a581602086016020860161275f565b601f01601f19169290920160200192915050565b6000845160206124cc8285838a0161275f565b8551918401916124df8184848a0161275f565b8554920191600090600181811c90808316806124fc57607f831692505b85831081141561251a57634e487b7160e01b85526022600452602485fd5b80801561252e576001811461253f5761256c565b60ff1985168852838801955061256c565b60008b81526020902060005b858110156125645781548a82015290840190880161254b565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125b09083018461248d565b9695505050505050565b6020815260006114bf602083018461248d565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b604051601f8201601f1916810167ffffffffffffffff811182821017156126f5576126f5612837565b604052919050565b60008219821115612710576127106127f5565b500190565b6000826127245761272461280b565b500490565b6000816000190483118215151615612743576127436127f5565b500290565b60008282101561275a5761275a6127f5565b500390565b60005b8381101561277a578181015183820152602001612762565b838111156110a75750506000910152565b600181811c9082168061279f57607f821691505b602082108114156127c057634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127da576127da6127f5565b5060010190565b6000826127f0576127f061280b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b9157600080fdfea264697066735822122024afd848f4da395be19a56c6751f55d3b6700c9032ae75b0f346512cd42efa1a64736f6c63430008070033
Deployed Bytecode Sourcemap
49696:9742:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26864:305;;;;;;;;;;-1:-1:-1;26864:305:0;;;;;:::i;:::-;;:::i;:::-;;;8653:14:1;;8646:22;8628:41;;8616:2;8601:18;26864:305:0;;;;;;;;49942:34;;;;;;;;;;;;;;;;;;;14096:25:1;;;14084:2;14069:18;49942:34:0;13950:177:1;29977:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31480:204::-;;;;;;;;;;-1:-1:-1;31480:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7951:32:1;;;7933:51;;7921:2;7906:18;31480:204:0;7787:203:1;49983:34:0;;;;;;;;;;;;;;;;31043:371;;;;;;;;;;-1:-1:-1;31043:371:0;;;;;:::i;:::-;;:::i;:::-;;57525:106;;;;;;;;;;-1:-1:-1;57525:106:0;;;;;:::i;:::-;;:::i;57720:83::-;;;;;;;;;;-1:-1:-1;57720:83:0;;;;;:::i;:::-;;:::i;26113:303::-;;;;;;;;;;-1:-1:-1;26367:12:0;;26157:7;26351:13;:28;26113:303;;50347:55;;;;;;;;;;-1:-1:-1;50347:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;32345:170;;;;;;;;;;-1:-1:-1;32345:170:0;;;;;:::i;:::-;;:::i;56004:92::-;;;;;;;;;;-1:-1:-1;56004:92:0;;;;;:::i;:::-;;:::i;58519:147::-;;;;;;;;;;;;;:::i;32586:185::-;;;;;;;;;;-1:-1:-1;32586:185:0;;;;;:::i;:::-;;:::i;50201:37::-;;;;;;;;;;;;;;;;58135:84;;;;;;;;;;-1:-1:-1;58135:84:0;;;;;:::i;:::-;;:::i;56996:161::-;;;;;;;;;;-1:-1:-1;56996:161:0;;;;;:::i;:::-;;:::i;50279:28::-;;;;;;;;;;-1:-1:-1;50279:28:0;;;;;;;;;;;49817:33;;;;;;;;;;;;;:::i;51769:602::-;;;;;;:::i;:::-;;:::i;50247:25::-;;;;;;;;;;-1:-1:-1;50247:25:0;;;;;;;;49782:28;;;;;;;;;;;;;:::i;29785:125::-;;;;;;;;;;-1:-1:-1;29785:125:0;;;;;:::i;:::-;;:::i;49897:38::-;;;;;;;;;;;;;;;;50150:44;;;;;;;;;;;;;;;;27233:206;;;;;;;;;;-1:-1:-1;27233:206:0;;;;;:::i;:::-;;:::i;46335:103::-;;;;;;;;;;;;;:::i;57290:106::-;;;;;;;;;;-1:-1:-1;57290:106:0;;;;;:::i;:::-;;:::i;45684:87::-;;;;;;;;;;-1:-1:-1;45757:6:0;;-1:-1:-1;;;;;45757:6:0;45684:87;;50062:37;;;;;;;;;;;;;;;;30146:104;;;;;;;;;;;;;:::i;31756:287::-;;;;;;;;;;-1:-1:-1;31756:287:0;;;;;:::i;:::-;;:::i;49857:31::-;;;;;;;;;;;;;:::i;56664:159::-;;;;;;;;;;-1:-1:-1;56664:159:0;;;;;:::i;:::-;;:::i;32842:369::-;;;;;;;;;;-1:-1:-1;32842:369:0;;;;;:::i;:::-;;:::i;50106:37::-;;;;;;;;;;;;;;;;52605:823;;;;;;:::i;:::-;;:::i;57884:85::-;;;;;;;;;;-1:-1:-1;57884:85:0;;;;;:::i;:::-;;:::i;55004:727::-;;;;;;;;;;-1:-1:-1;55004:727:0;;;;;:::i;:::-;;:::i;56185:84::-;;;;;;;;;;-1:-1:-1;56185:84:0;;;;;:::i;:::-;;:::i;53676:834::-;;;;;;:::i;:::-;;:::i;50024:31::-;;;;;;;;;;;;;;;;58367:84;;;;;;;;;;-1:-1:-1;58367:84:0;;;;;:::i;:::-;;:::i;55828:87::-;;;;;;;;;;-1:-1:-1;55828:87:0;;;;;:::i;:::-;;:::i;32114:164::-;;;;;;;;;;-1:-1:-1;32114:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32235:25:0;;;32211:4;32235:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32114:164;56358:84;;;;;;;;;;-1:-1:-1;56358:84:0;;;;;:::i;:::-;;:::i;54694:200::-;;;;;;;;;;-1:-1:-1;54694:200:0;;;;;:::i;:::-;;:::i;46593:201::-;;;;;;;;;;-1:-1:-1;46593:201:0;;;;;:::i;:::-;;:::i;50314:26::-;;;;;;;;;;-1:-1:-1;50314:26:0;;;;;;;;;;;26864:305;26966:4;-1:-1:-1;;;;;;27003:40:0;;-1:-1:-1;;;27003:40:0;;:105;;-1:-1:-1;;;;;;;27060:48:0;;-1:-1:-1;;;27060:48:0;27003:105;:158;;;-1:-1:-1;;;;;;;;;;13582:40:0;;;27125:36;26983:178;26864:305;-1:-1:-1;;26864:305:0:o;29977:100::-;30031:13;30064:5;30057:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29977:100;:::o;31480:204::-;31548:7;31573:16;31581:7;31573;:16::i;:::-;31568:64;;31598:34;;-1:-1:-1;;;31598:34:0;;;;;;;;;;;31568:64;-1:-1:-1;31652:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31652:24:0;;31480:204::o;31043:371::-;31116:13;31132:24;31148:7;31132:15;:24::i;:::-;31116:40;;31177:5;-1:-1:-1;;;;;31171:11:0;:2;-1:-1:-1;;;;;31171:11:0;;31167:48;;;31191:24;;-1:-1:-1;;;31191:24:0;;;;;;;;;;;31167:48;22460:10;-1:-1:-1;;;;;31232:21:0;;;;;;:63;;-1:-1:-1;31258:37:0;31275:5;22460:10;32114:164;:::i;31258:37::-;31257:38;31232:63;31228:138;;;31319:35;;-1:-1:-1;;;31319:35:0;;;;;;;;;;;31228:138;31378:28;31387:2;31391:7;31400:5;31378:8;:28::i;:::-;31105:309;31043:371;;:::o;57525:106::-;45757:6;;-1:-1:-1;;;;;45757:6:0;22460:10;45904:23;45896:68;;;;-1:-1:-1;;;45896:68:0;;;;;;;:::i;:::-;;;;;;;;;57601:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;57525:106:::0;:::o;57720:83::-;45757:6;;-1:-1:-1;;;;;45757:6:0;22460:10;45904:23;45896:68;;;;-1:-1:-1;;;45896:68:0;;;;;;;:::i;:::-;57780:6:::1;:15:::0;;-1:-1:-1;;57780:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;57720:83::o;32345:170::-;32479:28;32489:4;32495:2;32499:7;32479:9;:28::i;56004:92::-;45757:6;;-1:-1:-1;;;;;45757:6:0;22460:10;45904:23;45896:68;;;;-1:-1:-1;;;45896:68:0;;;;;;;:::i;:::-;56070:10:::1;:18:::0;56004:92::o;58519:147::-;45757:6;;-1:-1:-1;;;;;45757:6:0;22460:10;45904:23;45896:68;;;;-1:-1:-1;;;45896:68:0;;;;;;;:::i;:::-;58568:7:::1;58589;45757:6:::0;;-1:-1:-1;;;;;45757:6:0;;45684:87;58589:7:::1;-1:-1:-1::0;;;;;58581:21:0::1;58610;58581:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58567:69;;;58655:2;58647:11;;;::::0;::::1;;58556:110;58519:147::o:0;32586:185::-;32724:39;32741:4;32747:2;32751:7;32724:39;;;;;;;;;;;;:16;:39::i;58135:84::-;45757:6;;-1:-1:-1;;;;;45757:6:0;22460:10;45904:23;45896:68;;;;-1:-1:-1;;;45896:68:0;;;;;;;:::i;:::-;58197:6:::1;:14:::0;58135:84::o;56996:161::-;45757:6;;-1:-1:-1;;;;;45757:6:0;22460:10;45904:23;45896:68;;;;-1:-1:-1;;;45896:68:0;;;;;;;:::i;:::-;57111:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;49817:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51769:602::-;51873:11;50844:9;50857:10;50844:23;50836:66;;;;-1:-1:-1;;;50836:66:0;;;;;;;:::i;:::-;50949:1;50935:11;:15;:52;;;;;50969:18;;50954:11;:33;;50935:52;50913:122;;;;-1:-1:-1;;;50913:122:0;;;;;;;:::i;:::-;51099:9;;51084:11;51068:13;26367:12;;26157:7;26351:13;:28;;26113:303;51068:13;:27;;;;:::i;:::-;:40;;51046:110;;;;-1:-1:-1;;;51046:110:0;;;;;;;:::i;:::-;51911:6:::1;::::0;::::1;;51910:7;51902:43;;;;-1:-1:-1::0;;;51902:43:0::1;;;;;;;:::i;:::-;51965:7;::::0;;;::::1;;;51964:8;51956:48;;;::::0;-1:-1:-1;;;51956:48:0;;10574:2:1;51956:48:0::1;::::0;::::1;10556:21:1::0;10613:2;10593:18;;;10586:30;10652:29;10632:18;;;10625:57;10699:18;;51956:48:0::1;10372:351:1::0;51956:48:0::1;52049:11;52036:10;;:24;;;;:::i;:::-;52023:9;:37;;52015:69;;;::::0;-1:-1:-1;;;52015:69:0;;13804:2:1;52015:69:0::1;::::0;::::1;13786:21:1::0;13843:2;13823:18;;;13816:30;-1:-1:-1;;;13862:18:1;;;13855:49;13921:18;;52015:69:0::1;13602:343:1::0;52015:69:0::1;52184:18;::::0;52138:10:::1;52117:32;::::0;;;:20:::1;:32;::::0;;;;;:46:::1;::::0;52152:11;;52117:46:::1;:::i;:::-;:85;;52095:163;;;::::0;-1:-1:-1;;;52095:163:0;;9862:2:1;52095:163:0::1;::::0;::::1;9844:21:1::0;9901:2;9881:18;;;9874:30;9940;9920:18;;;9913:58;9988:18;;52095:163:0::1;9660:352:1::0;52095:163:0::1;52292:10;52271:32;::::0;;;:20:::1;:32;::::0;;;;:47;;52307:11;;52271:32;:47:::1;::::0;52307:11;;52271:47:::1;:::i;:::-;::::0;;;-1:-1:-1;52329:34:0::1;::::0;-1:-1:-1;52339:10:0::1;52351:11:::0;52329:9:::1;:34::i;49782:28::-:0;;;;;;;:::i;29785:125::-;29849:7;29876:21;29889:7;29876:12;:21::i;:::-;:26;;29785:125;-1:-1:-1;;29785:125:0:o;27233:206::-;27297:7;-1:-1:-1;;;;;27321:19:0;;27317:60;;27349:28;;-1:-1:-1;;;27349:28:0;;;;;;;;;;;27317:60;-1:-1:-1;;;;;;27403:19:0;;;;;:12;:19;;;;;:27;;;;27233:206::o;46335:103::-;45757:6;;-1:-1:-1;;;;;45757:6:0;22460:10;45904:23;45896:68;;;;-1:-1:-1;;;45896:68:0;;;;;;;:::i;:::-;46400:30:::1;46427:1;46400:18;:30::i;:::-;46335:103::o:0;57290:106::-;45757:6;;-1:-1:-1;;;;;45757:6:0;22460:10;45904:23;45896:68;;;;-1:-1:-1;;;45896:68:0;;;;;;;:::i;:::-;57366:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;30146:104::-:0;30202:13;30235:7;30228:14;;;;;:::i;31756:287::-;-1:-1:-1;;;;;31855:24:0;;22460:10;31855:24;31851:54;;;31888:17;;-1:-1:-1;;;31888:17:0;;;;;;;;;;;31851:54;22460:10;31918:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31918:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31918:53:0;;;;;;;;;;31987:48;;8628:41:1;;;31918:42:0;;22460:10;31987:48;;8601:18:1;31987:48:0;;;;;;;31756:287;;:::o;49857:31::-;;;;;;;:::i;56664:159::-;45757:6;;-1:-1:-1;;;;;45757:6:0;22460:10;45904:23;45896:68;;;;-1:-1:-1;;;45896:68:0;;;;;;;:::i;:::-;56775:18:::1;:40:::0;56664:159::o;32842:369::-;33009:28;33019:4;33025:2;33029:7;33009:9;:28::i;:::-;-1:-1:-1;;;;;33052:13:0;;3685:19;:23;;33052:76;;;;;33072:56;33103:4;33109:2;33113:7;33122:5;33072:30;:56::i;:::-;33071:57;33052:76;33048:156;;;33152:40;;-1:-1:-1;;;33152:40:0;;;;;;;;;;;33048:156;32842:369;;;;:::o;52605:823::-;52725:11;50844:9;50857:10;50844:23;50836:66;;;;-1:-1:-1;;;50836:66:0;;;;;;;:::i;:::-;50949:1;50935:11;:15;:52;;;;;50969:18;;50954:11;:33;;50935:52;50913:122;;;;-1:-1:-1;;;50913:122:0;;;;;;;:::i;:::-;51099:9;;51084:11;51068:13;26367:12;;26157:7;26351:13;:28;;26113:303;51068:13;:27;;;;:::i;:::-;:40;;51046:110;;;;-1:-1:-1;;;51046:110:0;;;;;;;:::i;:::-;52763:6:::1;::::0;::::1;;52762:7;52754:43;;;;-1:-1:-1::0;;;52754:43:0::1;;;;;;;:::i;:::-;52816:7;::::0;;;::::1;;;52808:35;;;::::0;-1:-1:-1;;;52808:35:0;;13460:2:1;52808:35:0::1;::::0;::::1;13442:21:1::0;13499:2;13479:18;;;13472:30;-1:-1:-1;;;13518:18:1;;;13511:45;13573:18;;52808:35:0::1;13258:339:1::0;52808:35:0::1;52937:6;::::0;52972:28:::1;::::0;-1:-1:-1;;52989:10:0::1;5960:2:1::0;5956:15;5952:53;52972:28:0::1;::::0;::::1;5940:66:1::0;52876:140:0::1;::::0;52913:5;;6022:12:1;;52972:28:0::1;;;;;;;;;;;;;52962:39;;;;;;52876:18;:140::i;:::-;52854:207;;;::::0;-1:-1:-1;;;52854:207:0;;11289:2:1;52854:207:0::1;::::0;::::1;11271:21:1::0;11328:2;11308:18;;;11301:30;-1:-1:-1;;;11347:18:1;;;11340:47;11404:18;;52854:207:0::1;11087:341:1::0;52854:207:0::1;53102:11;53093:6;;:20;;;;:::i;:::-;53080:9;:33;;53072:64;;;::::0;-1:-1:-1;;;53072:64:0;;13113:2:1;53072:64:0::1;::::0;::::1;13095:21:1::0;13152:2;13132:18;;;13125:30;-1:-1:-1;;;13171:18:1;;;13164:48;13229:18;;53072:64:0::1;12911:342:1::0;53072:64:0::1;53236:25;::::0;53190:10:::1;53169:32;::::0;;;:20:::1;:32;::::0;;;;;:46:::1;::::0;53204:11;;53169:46:::1;:::i;:::-;:92;;53147:170;;;::::0;-1:-1:-1;;;53147:170:0;;9862:2:1;53147:170:0::1;::::0;::::1;9844:21:1::0;9901:2;9881:18;;;9874:30;9940;9920:18;;;9913:58;9988:18;;53147:170:0::1;9660:352:1::0;53147:170:0::1;53349:10;53328:32;::::0;;;:20:::1;:32;::::0;;;;:47;;53364:11;;53328:32;:47:::1;::::0;53364:11;;53328:47:::1;:::i;:::-;::::0;;;-1:-1:-1;53386:34:0::1;::::0;-1:-1:-1;53396:10:0::1;53408:11:::0;53386:9:::1;:34::i;57884:85::-:0;45757:6;;-1:-1:-1;;;;;45757:6:0;22460:10;45904:23;45896:68;;;;-1:-1:-1;;;45896:68:0;;;;;;;:::i;:::-;57945:7:::1;:16:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;57945:16:0;;::::1;::::0;;;::::1;::::0;;57884:85::o;55004:727::-;55123:13;55176:17;55184:8;55176:7;:17::i;:::-;55154:114;;;;-1:-1:-1;;;55154:114:0;;12348:2:1;55154:114:0;;;12330:21:1;12387:2;12367:18;;;12360:30;12426:34;12406:18;;;12399:62;-1:-1:-1;;;12477:18:1;;;12470:45;12532:19;;55154:114:0;12146:411:1;55154:114:0;55285:8;;;;;;;55281:74;;55326:17;55319:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55004:727;;;:::o;55281:74::-;55367:28;55398:10;:8;:10::i;:::-;55367:41;;55470:1;55445:14;55439:28;:32;:284;;;;;;;;;;;;;;;;;55563:14;55604:19;:8;:17;:19::i;:::-;55650:9;55520:162;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55439:284;55419:304;55004:727;-1:-1:-1;;;55004:727:0:o;56185:84::-;45757:6;;-1:-1:-1;;;;;45757:6:0;22460:10;45904:23;45896:68;;;;-1:-1:-1;;;45896:68:0;;;;;;;:::i;:::-;56247:6:::1;:14:::0;56185:84::o;53676:834::-;53796:11;50844:9;50857:10;50844:23;50836:66;;;;-1:-1:-1;;;50836:66:0;;;;;;;:::i;:::-;50949:1;50935:11;:15;:52;;;;;50969:18;;50954:11;:33;;50935:52;50913:122;;;;-1:-1:-1;;;50913:122:0;;;;;;;:::i;:::-;51099:9;;51084:11;51068:13;26367:12;;26157:7;26351:13;:28;;26113:303;51068:13;:27;;;;:::i;:::-;:40;;51046:110;;;;-1:-1:-1;;;51046:110:0;;;;;;;:::i;:::-;53834:6:::1;::::0;::::1;;53833:7;53825:43;;;;-1:-1:-1::0;;;53825:43:0::1;;;;;;;:::i;:::-;53887:7;::::0;;;::::1;;;53879:35;;;::::0;-1:-1:-1;;;53879:35:0;;13460:2:1;53879:35:0::1;::::0;::::1;13442:21:1::0;13499:2;13479:18;;;13472:30;-1:-1:-1;;;13518:18:1;;;13511:45;13573:18;;53879:35:0::1;13258:339:1::0;53879:35:0::1;54008:6;::::0;54043:28:::1;::::0;-1:-1:-1;;54060:10:0::1;5960:2:1::0;5956:15;5952:53;54043:28:0::1;::::0;::::1;5940:66:1::0;53947:140:0::1;::::0;53984:5;;6022:12:1;;54043:28:0::1;5811:229:1::0;53947:140:0::1;53925:216;;;::::0;-1:-1:-1;;;53925:216:0;;10219:2:1;53925:216:0::1;::::0;::::1;10201:21:1::0;10258:2;10238:18;;;10231:30;10297:28;10277:18;;;10270:56;10343:18;;53925:216:0::1;10017:350:1::0;53925:216:0::1;54182:11;54173:6;;:20;;;;:::i;58367:84::-:0;45757:6;;-1:-1:-1;;;;;45757:6:0;22460:10;45904:23;45896:68;;;;-1:-1:-1;;;45896:68:0;;;;;;;:::i;:::-;58429:6:::1;:14:::0;58367:84::o;55828:87::-;45757:6;;-1:-1:-1;;;;;45757:6:0;22460:10;45904:23;45896:68;;;;-1:-1:-1;;;45896:68:0;;;;;;;:::i;:::-;55890:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;55890:17:0;;::::1;::::0;;;::::1;::::0;;55828:87::o;56358:84::-;45757:6;;-1:-1:-1;;;;;45757:6:0;22460:10;45904:23;45896:68;;;;-1:-1:-1;;;45896:68:0;;;;;;;:::i;:::-;56420:6:::1;:14:::0;56358:84::o;54694:200::-;54805:11;51422:16;;51407:11;51391:13;26367:12;;26157:7;26351:13;:28;;26113:303;51391:13;:27;;;;:::i;:::-;:47;;51369:117;;;;-1:-1:-1;;;51369:117:0;;;;;;;:::i;:::-;45757:6;;-1:-1:-1;;;;;45757:6:0;22460:10;45904:23:::1;45896:68;;;;-1:-1:-1::0;;;45896:68:0::1;;;;;;;:::i;:::-;54853:33:::2;54863:9;54874:11;54853:9;:33::i;46593:201::-:0;45757:6;;-1:-1:-1;;;;;45757:6:0;22460:10;45904:23;45896:68;;;;-1:-1:-1;;;45896:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46682:22:0;::::1;46674:73;;;::::0;-1:-1:-1;;;46674:73:0;;9106:2:1;46674:73:0::1;::::0;::::1;9088:21:1::0;9145:2;9125:18;;;9118:30;9184:34;9164:18;;;9157:62;-1:-1:-1;;;9235:18:1;;;9228:36;9281:19;;46674:73:0::1;8904:402:1::0;46674:73:0::1;46758:28;46777:8;46758:18;:28::i;33466:187::-:0;33523:4;33587:13;;33577:7;:23;33547:98;;;;-1:-1:-1;;33618:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33618:27:0;;;;33617:28;;33466:187::o;41636:196::-;41751:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41751:29:0;-1:-1:-1;;;;;41751:29:0;;;;;;;;;41796:28;;41751:24;;41796:28;;;;;;;41636:196;;;:::o;36579:2130::-;36694:35;36732:21;36745:7;36732:12;:21::i;:::-;36694:59;;36792:4;-1:-1:-1;;;;;36770:26:0;:13;:18;;;-1:-1:-1;;;;;36770:26:0;;36766:67;;36805:28;;-1:-1:-1;;;36805:28:0;;;;;;;;;;;36766:67;36846:22;22460:10;-1:-1:-1;;;;;36872:20:0;;;;:73;;-1:-1:-1;36909:36:0;36926:4;22460:10;32114:164;:::i;36909:36::-;36872:126;;;-1:-1:-1;22460:10:0;36962:20;36974:7;36962:11;:20::i;:::-;-1:-1:-1;;;;;36962:36:0;;36872:126;36846:153;;37017:17;37012:66;;37043:35;;-1:-1:-1;;;37043:35:0;;;;;;;;;;;37012:66;-1:-1:-1;;;;;37093:16:0;;37089:52;;37118:23;;-1:-1:-1;;;37118:23:0;;;;;;;;;;;37089:52;37262:35;37279:1;37283:7;37292:4;37262:8;:35::i;:::-;-1:-1:-1;;;;;37593:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37593:31:0;;;;;;;-1:-1:-1;;37593:31:0;;;;;;;37639:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37639:29:0;;;;;;;;;;;37719:20;;;:11;:20;;;;;;37754:18;;-1:-1:-1;;;;;;37787:49:0;;;;-1:-1:-1;;;37820:15:0;37787:49;;;;;;;;;;38110:11;;38170:24;;;;;38213:13;;37719:20;;38170:24;;38213:13;38209:384;;38423:13;;38408:11;:28;38404:174;;38461:20;;38530:28;;;;38504:54;;-1:-1:-1;;;38504:54:0;-1:-1:-1;;;;;;38504:54:0;;;-1:-1:-1;;;;;38461:20:0;;38504:54;;;;38404:174;37568:1036;;;38640:7;38636:2;-1:-1:-1;;;;;38621:27:0;38630:4;-1:-1:-1;;;;;38621:27:0;;;;;;;;;;;38659:42;36683:2026;;36579:2130;;;:::o;33661:104::-;33730:27;33740:2;33744:8;33730:27;;;;;;;;;;;;:9;:27::i;28614:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28725:7:0;28808:13;;28801:4;:20;28770:886;;;28842:31;28876:17;;;:11;:17;;;;;;;;;28842:51;;;;;;;;;-1:-1:-1;;;;;28842:51:0;;;;-1:-1:-1;;;28842:51:0;;;;;;;;;;;-1:-1:-1;;;28842:51:0;;;;;;;;;;;;;;28912:729;;28962:14;;-1:-1:-1;;;;;28962:28:0;;28958:101;;29026:9;28614:1109;-1:-1:-1;;;28614:1109:0:o;28958:101::-;-1:-1:-1;;;29401:6:0;29446:17;;;;:11;:17;;;;;;;;;29434:29;;;;;;;;;-1:-1:-1;;;;;29434:29:0;;;;;-1:-1:-1;;;29434:29:0;;;;;;;;;;;-1:-1:-1;;;29434:29:0;;;;;;;;;;;;;29494:28;29490:109;;29562:9;28614:1109;-1:-1:-1;;;28614:1109:0:o;29490:109::-;29361:261;;;28823:833;28770:886;29684:31;;-1:-1:-1;;;29684:31:0;;;;;;;;;;;46954:191;47047:6;;;-1:-1:-1;;;;;47064:17:0;;;-1:-1:-1;;;;;;47064:17:0;;;;;;;47097:40;;47047:6;;;47064:17;47047:6;;47097:40;;47028:16;;47097:40;47017:128;46954:191;:::o;42324:667::-;42508:72;;-1:-1:-1;;;42508:72:0;;42487:4;;-1:-1:-1;;;;;42508:36:0;;;;;:72;;22460:10;;42559:4;;42565:7;;42574:5;;42508:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42508:72:0;;;;;;;;-1:-1:-1;;42508:72:0;;;;;;;;;;;;:::i;:::-;;;42504:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42742:13:0;;42738:235;;42788:40;;-1:-1:-1;;;42788:40:0;;;;;;;;;;;42738:235;42931:6;42925:13;42916:6;42912:2;42908:15;42901:38;42504:480;-1:-1:-1;;;;;;42627:55:0;-1:-1:-1;;;42627:55:0;;-1:-1:-1;42504:480:0;42324:667;;;;;;:::o;20235:190::-;20360:4;20413;20384:25;20397:5;20404:4;20384:12;:25::i;:::-;:33;;20235:190;-1:-1:-1;;;;20235:190:0:o;58770:110::-;58830:13;58863:9;58856:16;;;;;:::i;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;34128:163;34251:32;34257:2;34261:8;34271:5;34278:4;34251:5;:32::i;20787:675::-;20870:7;20913:4;20870:7;20928:497;20952:5;:12;20948:1;:16;20928:497;;;20986:20;21009:5;21015:1;21009:8;;;;;;;;:::i;:::-;;;;;;;20986:31;;21052:12;21036;:28;21032:382;;21538:13;21588:15;;;21624:4;21617:15;;;21671:4;21655:21;;21164:57;;21032:382;;;21538:13;21588:15;;;21624:4;21617:15;;;21671:4;21655:21;;21341:57;;21032:382;-1:-1:-1;20966:3:0;;;;:::i;:::-;;;;20928:497;;;-1:-1:-1;21442:12:0;20787:675;-1:-1:-1;;;20787:675:0:o;34550:1775::-;34689:20;34712:13;-1:-1:-1;;;;;34740:16:0;;34736:48;;34765:19;;-1:-1:-1;;;34765:19:0;;;;;;;;;;;34736:48;34799:13;34795:44;;34821:18;;-1:-1:-1;;;34821:18:0;;;;;;;;;;;34795:44;-1:-1:-1;;;;;35190:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35249:49:0;;35190:44;;;;;;;;35249:49;;;;-1:-1:-1;;35190:44:0;;;;;;35249:49;;;;;;;;;;;;;;;;35315:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35365:66:0;;;;-1:-1:-1;;;35415:15:0;35365:66;;;;;;;;;;35315:25;35512:23;;;35556:4;:23;;;;-1:-1:-1;;;;;;35564:13:0;;3685:19;:23;;35564:15;35552:641;;;35600:314;35631:38;;35656:12;;-1:-1:-1;;;;;35631:38:0;;;35648:1;;35631:38;;35648:1;;35631:38;35697:69;35736:1;35740:2;35744:14;;;;;;35760:5;35697:30;:69::i;:::-;35692:174;;35802:40;;-1:-1:-1;;;35802:40:0;;;;;;;;;;;35692:174;35909:3;35893:12;:19;;35600:314;;35995:12;35978:13;;:29;35974:43;;36009:8;;;35974:43;35552:641;;;36058:120;36089:40;;36114:14;;;;;-1:-1:-1;;;;;36089:40:0;;;36106:1;;36089:40;;36106:1;;36089:40;36173:3;36157:12;:19;;36058:120;;35552:641;-1:-1:-1;36207:13:0;:28;36257:60;32842:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:180::-;2802:6;2855:2;2843:9;2834:7;2830:23;2826:32;2823:52;;;2871:1;2868;2861:12;2823:52;2894:26;2910:9;2894:26;:::i;2931:180::-;2990:6;3043:2;3031:9;3022:7;3018:23;3014:32;3011:52;;;3059:1;3056;3049:12;3011:52;-1:-1:-1;3082:23:1;;2931:180;-1:-1:-1;2931:180:1:o;3116:245::-;3174:6;3227:2;3215:9;3206:7;3202:23;3198:32;3195:52;;;3243:1;3240;3233:12;3195:52;3282:9;3269:23;3301:30;3325:5;3301:30;:::i;3366:249::-;3435:6;3488:2;3476:9;3467:7;3463:23;3459:32;3456:52;;;3504:1;3501;3494:12;3456:52;3536:9;3530:16;3555:30;3579:5;3555:30;:::i;3620:450::-;3689:6;3742:2;3730:9;3721:7;3717:23;3713:32;3710:52;;;3758:1;3755;3748:12;3710:52;3798:9;3785:23;3831:18;3823:6;3820:30;3817:50;;;3863:1;3860;3853:12;3817:50;3886:22;;3939:4;3931:13;;3927:27;-1:-1:-1;3917:55:1;;3968:1;3965;3958:12;3917:55;3991:73;4056:7;4051:2;4038:16;4033:2;4029;4025:11;3991:73;:::i;4260:254::-;4328:6;4336;4389:2;4377:9;4368:7;4364:23;4360:32;4357:52;;;4405:1;4402;4395:12;4357:52;4441:9;4428:23;4418:33;;4470:38;4504:2;4493:9;4489:18;4470:38;:::i;4519:1025::-;4612:6;4620;4673:2;4661:9;4652:7;4648:23;4644:32;4641:52;;;4689:1;4686;4679:12;4641:52;4725:9;4712:23;4702:33;;4754:2;4807;4796:9;4792:18;4779:32;4830:18;4871:2;4863:6;4860:14;4857:34;;;4887:1;4884;4877:12;4857:34;4925:6;4914:9;4910:22;4900:32;;4970:7;4963:4;4959:2;4955:13;4951:27;4941:55;;4992:1;4989;4982:12;4941:55;5028:2;5015:16;5050:2;5046;5043:10;5040:36;;;5056:18;;:::i;:::-;5102:2;5099:1;5095:10;5085:20;;5125:28;5149:2;5145;5141:11;5125:28;:::i;:::-;5187:15;;;5218:12;;;;5250:11;;;5280;;;5276:20;;5273:33;-1:-1:-1;5270:53:1;;;5319:1;5316;5309:12;5270:53;5341:1;5332:10;;5351:163;5365:2;5362:1;5359:9;5351:163;;;5422:17;;5410:30;;5383:1;5376:9;;;;;5460:12;;;;5492;;5351:163;;;5355:3;5533:5;5523:15;;;;;;;;4519:1025;;;;;:::o;5549:257::-;5590:3;5628:5;5622:12;5655:6;5650:3;5643:19;5671:63;5727:6;5720:4;5715:3;5711:14;5704:4;5697:5;5693:16;5671:63;:::i;:::-;5788:2;5767:15;-1:-1:-1;;5763:29:1;5754:39;;;;5795:4;5750:50;;5549:257;-1:-1:-1;;5549:257:1:o;6045:1527::-;6269:3;6307:6;6301:13;6333:4;6346:51;6390:6;6385:3;6380:2;6372:6;6368:15;6346:51;:::i;:::-;6460:13;;6419:16;;;;6482:55;6460:13;6419:16;6504:15;;;6482:55;:::i;:::-;6626:13;;6559:20;;;6599:1;;6686;6708:18;;;;6761;;;;6788:93;;6866:4;6856:8;6852:19;6840:31;;6788:93;6929:2;6919:8;6916:16;6896:18;6893:40;6890:167;;;-1:-1:-1;;;6956:33:1;;7012:4;7009:1;7002:15;7042:4;6963:3;7030:17;6890:167;7073:18;7100:110;;;;7224:1;7219:328;;;;7066:481;;7100:110;-1:-1:-1;;7135:24:1;;7121:39;;7180:20;;;;-1:-1:-1;7100:110:1;;7219:328;14485:1;14478:14;;;14522:4;14509:18;;7314:1;7328:169;7342:8;7339:1;7336:15;7328:169;;;7424:14;;7409:13;;;7402:37;7467:16;;;;7359:10;;7328:169;;;7332:3;;7528:8;7521:5;7517:20;7510:27;;7066:481;-1:-1:-1;7563:3:1;;6045:1527;-1:-1:-1;;;;;;;;;;;6045:1527:1:o;7995:488::-;-1:-1:-1;;;;;8264:15:1;;;8246:34;;8316:15;;8311:2;8296:18;;8289:43;8363:2;8348:18;;8341:34;;;8411:3;8406:2;8391:18;;8384:31;;;8189:4;;8432:45;;8457:19;;8449:6;8432:45;:::i;:::-;8424:53;7995:488;-1:-1:-1;;;;;;7995:488:1:o;8680:219::-;8829:2;8818:9;8811:21;8792:4;8849:44;8889:2;8878:9;8874:18;8866:6;8849:44;:::i;9311:344::-;9513:2;9495:21;;;9552:2;9532:18;;;9525:30;-1:-1:-1;;;9586:2:1;9571:18;;9564:50;9646:2;9631:18;;9311:344::o;10728:354::-;10930:2;10912:21;;;10969:2;10949:18;;;10942:30;11008:32;11003:2;10988:18;;10981:60;11073:2;11058:18;;10728:354::o;11433:356::-;11635:2;11617:21;;;11654:18;;;11647:30;11713:34;11708:2;11693:18;;11686:62;11780:2;11765:18;;11433:356::o;11794:347::-;11996:2;11978:21;;;12035:2;12015:18;;;12008:30;12074:25;12069:2;12054:18;;12047:53;12132:2;12117:18;;11794:347::o;12562:344::-;12764:2;12746:21;;;12803:2;12783:18;;;12776:30;-1:-1:-1;;;12837:2:1;12822:18;;12815:50;12897:2;12882:18;;12562:344::o;14132:275::-;14203:2;14197:9;14268:2;14249:13;;-1:-1:-1;;14245:27:1;14233:40;;14303:18;14288:34;;14324:22;;;14285:62;14282:88;;;14350:18;;:::i;:::-;14386:2;14379:22;14132:275;;-1:-1:-1;14132:275:1:o;14538:128::-;14578:3;14609:1;14605:6;14602:1;14599:13;14596:39;;;14615:18;;:::i;:::-;-1:-1:-1;14651:9:1;;14538:128::o;14671:120::-;14711:1;14737;14727:35;;14742:18;;:::i;:::-;-1:-1:-1;14776:9:1;;14671:120::o;14796:168::-;14836:7;14902:1;14898;14894:6;14890:14;14887:1;14884:21;14879:1;14872:9;14865:17;14861:45;14858:71;;;14909:18;;:::i;:::-;-1:-1:-1;14949:9:1;;14796:168::o;14969:125::-;15009:4;15037:1;15034;15031:8;15028:34;;;15042:18;;:::i;:::-;-1:-1:-1;15079:9:1;;14969:125::o;15099:258::-;15171:1;15181:113;15195:6;15192:1;15189:13;15181:113;;;15271:11;;;15265:18;15252:11;;;15245:39;15217:2;15210:10;15181:113;;;15312:6;15309:1;15306:13;15303:48;;;-1:-1:-1;;15347:1:1;15329:16;;15322:27;15099:258::o;15362:380::-;15441:1;15437:12;;;;15484;;;15505:61;;15559:4;15551:6;15547:17;15537:27;;15505:61;15612:2;15604:6;15601:14;15581:18;15578:38;15575:161;;;15658:10;15653:3;15649:20;15646:1;15639:31;15693:4;15690:1;15683:15;15721:4;15718:1;15711:15;15575:161;;15362:380;;;:::o;15747:135::-;15786:3;-1:-1:-1;;15807:17:1;;15804:43;;;15827:18;;:::i;:::-;-1:-1:-1;15874:1:1;15863:13;;15747:135::o;15887:112::-;15919:1;15945;15935:35;;15950:18;;:::i;:::-;-1:-1:-1;15984:9:1;;15887:112::o;16004:127::-;16065:10;16060:3;16056:20;16053:1;16046:31;16096:4;16093:1;16086:15;16120:4;16117:1;16110:15;16136:127;16197:10;16192:3;16188:20;16185:1;16178:31;16228:4;16225:1;16218:15;16252:4;16249:1;16242:15;16268:127;16329:10;16324:3;16320:20;16317:1;16310:31;16360:4;16357:1;16350:15;16384:4;16381:1;16374:15;16400:127;16461:10;16456:3;16452:20;16449:1;16442:31;16492:4;16489:1;16482:15;16516:4;16513:1;16506:15;16532:131;-1:-1:-1;;;;;;16606:32:1;;16596:43;;16586:71;;16653:1;16650;16643:12
Swarm Source
ipfs://24afd848f4da395be19a56c6751f55d3b6700c9032ae75b0f346512cd42efa1a
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.